mirror of
https://github.com/bringout/oca-ocb-core.git
synced 2026-04-18 19:52:05 +02:00
Initial commit: Core packages
This commit is contained in:
commit
12c29a983b
9512 changed files with 8379910 additions and 0 deletions
23
odoo-bringout-oca-ocb-utm/utm/tests/common.py
Normal file
23
odoo-bringout-oca-ocb-utm/utm/tests/common.py
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from odoo.tests import common
|
||||
from odoo.tests.common import tagged
|
||||
|
||||
|
||||
class TestUTMCommon(common.TransactionCase):
|
||||
|
||||
@classmethod
|
||||
def setUpClass(cls):
|
||||
super(TestUTMCommon, cls).setUpClass()
|
||||
|
||||
cls.utm_campaign = cls.env['utm.campaign'].create({'name': 'Test Campaign'})
|
||||
cls.utm_medium = cls.env['utm.medium'].create({'name': 'Test Medium'})
|
||||
cls.utm_source = cls.env['utm.source'].create({'name': 'Test Source'})
|
||||
|
||||
cls.user_employee = cls.env['res.users'].create({
|
||||
'name': 'User Employee',
|
||||
'login': 'user_employee_utm',
|
||||
'email': 'user_employee_utm@test.com',
|
||||
'groups_id': [(6, 0, [cls.env.ref('base.group_user').id])],
|
||||
})
|
||||
Loading…
Add table
Add a link
Reference in a new issue