mirror of
https://gitlab.com/flectra-community/account-closing.git
synced 2024-11-22 21:52:04 +00:00
13 lines
359 B
Python
13 lines
359 B
Python
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
||
|
|
||
|
from flectra.tests.common import SavepointCase
|
||
|
|
||
|
|
||
|
class TestAccountCutoff(SavepointCase):
|
||
|
|
||
|
def test_default_cutoff_account_id(self):
|
||
|
account_id = \
|
||
|
self.env['account.cutoff']._default_cutoff_account_id()
|
||
|
|
||
|
self.assertIsNone(account_id, 'The account must be none')
|