test_point_of_sale_ui.py 515 B

1234567891011121314151617
  1. # -*- coding: utf-8 -*-
  2. # Part of Odoo. See LICENSE file for full copyright and licensing details.
  3. from odoo.tests import HttpCase, tagged
  4. from odoo import tools
  5. @tagged('post_install', '-at_install')
  6. class TestUi(HttpCase):
  7. # Avoid "A Chart of Accounts is not yet installed in your current company."
  8. # Everything is set up correctly even without installed CoA
  9. @tools.mute_logger('odoo.http')
  10. def test_01_point_of_sale_tour(self):
  11. self.start_tour("/web", 'point_of_sale_tour', login="admin")