From 71ad5971334dc3f1ae00b788fd45b5b080ba35ca Mon Sep 17 00:00:00 2001 From: Marc Durepos Date: Thu, 22 Jun 2023 15:36:19 -0400 Subject: [PATCH] bemade_fsm: Added test skeleton for upcoming features. --- tests/test_fsm_contact_setting.py | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 tests/test_fsm_contact_setting.py diff --git a/tests/test_fsm_contact_setting.py b/tests/test_fsm_contact_setting.py new file mode 100644 index 0000000..a8874c2 --- /dev/null +++ b/tests/test_fsm_contact_setting.py @@ -0,0 +1,30 @@ +from odoo.tests import TransactionCase, HttpCase, tagged +from odoo import Command +from test_bemade_fsm_common import FSMManagerUserTransactionCase + +class SaleOrderFSMContactsCase(FSMManagerUserTransactionCase): + + def test_default_site_contacts(self): + # Make sure the SO pulls the defaults from the partner correctly + pass + + def test_default_billing_contacts(self): + # Make sure the SO pulls the defaults from the partner correctly + pass + + def test_default_workorder_contacts(self): + # Make sure the SO pulls the defaults from the partner correctly + pass + + def test_change_site_contacts(self): + # Make sure the SO contacts can be updated without feeding back to the partner + pass + + def test_change_workorder_contacts(self): + # Make sure the SO contacts can be updated without feeding back to the partner + pass + + def test_change_billing_contacts(self): + # Make sure the SO contacts can be updated without feedin back to the partner + pass +