Browse Source
Merge pull request #73 from etobella/11.0-fix-base_quick
[FIX] base_optional_quick_create: Add tests as post_install
pull/72/head
Jordi Ballester Alomar
6 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
3 additions and
1 deletions
-
base_optional_quick_create/tests/test_quick_create.py
|
@ -1,10 +1,12 @@ |
|
|
# Copyright 2018 Simone Rubino - Agile Business Group |
|
|
# Copyright 2018 Simone Rubino - Agile Business Group |
|
|
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). |
|
|
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). |
|
|
|
|
|
|
|
|
|
|
|
from odoo.tests import common |
|
|
from odoo.exceptions import UserError |
|
|
from odoo.exceptions import UserError |
|
|
from odoo.tests.common import TransactionCase |
|
|
from odoo.tests.common import TransactionCase |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@common.at_install(False) |
|
|
|
|
|
@common.post_install(True) |
|
|
class TestQuickCreate(TransactionCase): |
|
|
class TestQuickCreate(TransactionCase): |
|
|
|
|
|
|
|
|
def setUp(self, *args, **kwargs): |
|
|
def setUp(self, *args, **kwargs): |
|
|