diff options
Diffstat (limited to 'addons/crm/tests/test_crm_ui.py')
| -rw-r--r-- | addons/crm/tests/test_crm_ui.py | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/addons/crm/tests/test_crm_ui.py b/addons/crm/tests/test_crm_ui.py new file mode 100644 index 00000000..116163f2 --- /dev/null +++ b/addons/crm/tests/test_crm_ui.py @@ -0,0 +1,24 @@ +# Part of Odoo. See LICENSE file for full copyright and licensing details. + +import odoo.tests + + +@odoo.tests.tagged('post_install','-at_install') +class TestUi(odoo.tests.HttpCase): + + def test_01_crm_tour(self): + self.start_tour("/web", 'crm_tour', login="admin") + + def test_02_crm_tour_rainbowman(self): + # we create a new user to make sure he gets the 'Congrats on your first deal!' + # rainbowman message. + self.env['res.users'].create({ + 'name': 'Temporary CRM User', + 'login': 'temp_crm_user', + 'password': 'temp_crm_user', + 'groups_id': [(6, 0, [ + self.ref('base.group_user'), + self.ref('sales_team.group_sale_salesman') + ])] + }) + self.start_tour("/web", 'crm_rainbowman', login="temp_crm_user") |
