15 lines
527 B
Python
15 lines
527 B
Python
# Copyright 2021 Camptocamp SA
|
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
|
|
|
|
from odoo.modules.registry import Registry
|
|
from odoo.tests.common import TransactionCase
|
|
|
|
|
|
class Common(TransactionCase):
|
|
def setUp(self):
|
|
super(Common, self).setUp()
|
|
# this reloads our registry, and we don't want to run tests twice
|
|
# we also need the original registry for further tests, so save a
|
|
# reference to it
|
|
self.original_registry = Registry.registries[self.env.cr.dbname]
|