8 lines
181 B
Python
8 lines
181 B
Python
from odoo.tests.common import TransactionCase
|
|
|
|
|
|
class TestDummy(TransactionCase):
|
|
def test_dummy(self):
|
|
"""Dummy test to avoid warnings"""
|
|
self.assertTrue(True)
|