mirror of
https://github.com/OCA/pms.git
synced 2025-01-29 00:17:45 +02:00
9 lines
259 B
Python
9 lines
259 B
Python
from odoo.tests import common
|
|
|
|
|
|
class TestIrSequence(common.SavepointCase):
|
|
def test_sequence_property(self):
|
|
pms_property = self.env["pms.property"].search([])[0]
|
|
value = pms_property.sequence_id.next_by_id()
|
|
print("test", value)
|