mirror of
https://github.com/OCA/pms.git
synced 2025-01-29 00:17:45 +02:00
12 lines
229 B
Python
12 lines
229 B
Python
from freezegun import freeze_time
|
|
|
|
from odoo.tests.common import SavepointCase
|
|
|
|
freeze_time("2000-02-02")
|
|
|
|
|
|
class TestPmsInvoiceSimpleInvoice(SavepointCase):
|
|
@classmethod
|
|
def setUpClass(cls):
|
|
super().setUpClass()
|