flectra/addons/survey/tests/test_survey_ui.py

18 lines
846 B
Python
Raw Normal View History

2018-01-16 11:34:37 +01:00
import flectra.tests
# Part of Odoo, Flectra. See LICENSE file for full copyright and licensing details.
2018-01-16 11:34:37 +01:00
class TestUi(flectra.tests.HttpCase):
post_install = True
at_install = False
def test_01_admin_survey_tour(self):
2018-01-16 11:34:37 +01:00
self.phantom_js("/", "flectra.__DEBUG__.services['web_tour.tour'].run('test_survey')", "flectra.__DEBUG__.services['web_tour.tour'].tours.test_survey.ready", login="admin")
def test_02_demo_survey_tour(self):
2018-01-16 11:34:37 +01:00
self.phantom_js("/", "flectra.__DEBUG__.services['web_tour.tour'].run('test_survey')", "flectra.__DEBUG__.services['web_tour.tour'].tours.test_survey.ready", login="demo")
def test_03_public_survey_tour(self):
2018-01-16 11:34:37 +01:00
self.phantom_js("/", "flectra.__DEBUG__.services['web_tour.tour'].run('test_survey')", "flectra.__DEBUG__.services['web_tour.tour'].tours.test_survey.ready")