mirror of
https://github.com/bringout/oca-ocb-pos.git
synced 2026-04-25 23:02:06 +02:00
19.0 vanilla
This commit is contained in:
parent
6e54c1af6c
commit
3ca647e428
1087 changed files with 132065 additions and 108499 deletions
|
|
@ -0,0 +1,3 @@
|
|||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from . import test_frontend
|
||||
|
|
@ -0,0 +1,16 @@
|
|||
from odoo.tests import tagged
|
||||
from odoo.addons.pos_hr.tests.test_frontend import TestPosHrHttpCommon
|
||||
from odoo.addons.pos_restaurant.tests.test_frontend import TestFrontendCommon
|
||||
|
||||
|
||||
@tagged("post_install", "-at_install")
|
||||
class TestUi(TestPosHrHttpCommon, TestFrontendCommon):
|
||||
def test_post_login_default_screen_tables(self):
|
||||
self.main_pos_config.default_screen = "tables"
|
||||
self.main_pos_config.with_user(self.pos_admin).open_ui()
|
||||
self.start_pos_tour("test_post_login_default_screen_is_tables", login="pos_admin")
|
||||
|
||||
def test_post_login_default_screen_register(self):
|
||||
self.main_pos_config.default_screen = "register"
|
||||
self.main_pos_config.with_user(self.pos_admin).open_ui()
|
||||
self.start_pos_tour("test_post_login_default_screen_is_register", login="pos_admin")
|
||||
Loading…
Add table
Add a link
Reference in a new issue