diff --git a/app/core/tests/unit/ticket_comment_category/test_ticket_comment_category.py b/app/core/tests/unit/ticket_comment_category/test_ticket_comment_category.py new file mode 100644 index 00000000..5cad5ff9 --- /dev/null +++ b/app/core/tests/unit/ticket_comment_category/test_ticket_comment_category.py @@ -0,0 +1,27 @@ +import pytest +# import unittest +# import requests + +from django.test import TestCase + +from app.tests.abstract.models import TenancyModel + +from core.models.ticket.ticket_comment_category import TicketCommentCategory + + +class TicketCommentCategoryModel( + TestCase, + TenancyModel +): + + model = TicketCommentCategory + + + # def test_attribute_duration_ticket_value(self): + # """Attribute value test + + # This aattribute calculates the ticket duration from + # it's comments. must return total time in seconds + # """ + + # pass \ No newline at end of file