mirror of
https://gitlab.com/hibou-io/hibou-odoo/suite.git
synced 2025-01-20 12:37:31 +02:00
14 lines
332 B
Python
14 lines
332 B
Python
from odoo.tests import common
|
|
|
|
|
|
class TestHelpdesk(common.TransactionCase):
|
|
|
|
# We need to test Stage, Ticket, Server, and Filter Classes
|
|
# We created a couple fields per model and a couple methods
|
|
# for our functionality implementation
|
|
|
|
def setUp(self):
|
|
pass
|
|
|
|
def test_helpdesk_filter(self):
|
|
pass |