mirror of
https://github.com/bringout/oca-technical.git
synced 2026-04-22 23:52:00 +02:00
8 lines
255 B
Python
8 lines
255 B
Python
from .common import CommonCase
|
|
|
|
|
|
class TestBrandMixin(CommonCase):
|
|
def test_brand_creation(self):
|
|
"""Test creation of a brand."""
|
|
brand = self.brand_model.create({"partner_id": self.partner.id})
|
|
self.assertTrue(brand.exists())
|