From 88d6a734548c13ab7830b1e8831c551e72e9563f Mon Sep 17 00:00:00 2001 From: Jon Date: Fri, 13 Sep 2024 13:40:26 +0930 Subject: [PATCH] test(core): ticket comment category tenancy model checks ref: #283 #284 --- .../test_ticket_comment_category.py | 27 +++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 app/core/tests/unit/ticket_comment_category/test_ticket_comment_category.py 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