test(core): ticket comment category tenancy model checks

ref: #283 #284
This commit is contained in:
2024-09-13 13:40:26 +09:30
parent 01c57b37ad
commit 88d6a73454

View File

@ -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