Commit a5b0b1bb authored by Yusei Tahara's avatar Yusei Tahara

Added a new test class which make sure that password tool works with crm.


git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@21476 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent bc1b16b6
......@@ -339,7 +339,20 @@ class TestPasswordTool(ERP5TypeTestCase):
sequence_list.play(self, quiet=quiet)
class TestPasswordToolWithCRM(TestPasswordTool):
"""
Test reset of password
"""
def getBusinessTemplateList(self):
return ('erp5_base', 'erp5_crm',)
def getTitle(self):
return "Password Tool with CRM"
def test_suite():
suite = unittest.TestSuite()
suite.addTest(unittest.makeSuite(TestPasswordTool))
suite.addTest(unittest.makeSuite(TestPasswordToolWithCRM))
return suite
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment