Skip to content

Commit

Permalink
test(core): ticket category model checks
Browse files Browse the repository at this point in the history
  • Loading branch information
jon-nfc committed Sep 13, 2024
1 parent 7d80857 commit ded6a72
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions app/core/tests/unit/ticket_category/test_ticket_category.py
Original file line number Diff line number Diff line change
@@ -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_category import TicketCategory


class TicketCategoryModel(
TestCase,
TenancyModel
):

model = TicketCategory


# 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

0 comments on commit ded6a72

Please sign in to comment.