test(core): Unit API Fields Render for TicketCommentSolution model

ref: #744 #728
This commit is contained in:
2025-05-09 20:41:26 +09:30
parent eb2282efac
commit 4f8be43527
2 changed files with 31 additions and 0 deletions

View File

@ -0,0 +1,31 @@
from core.tests.unit.ticket_comment_base.test_unit_ticket_comment_base_api_fields import (
TicketCommentBaseAPIInheritedCases
)
class TicketCommentSolutionAPITestCases(
TicketCommentBaseAPIInheritedCases,
):
parameterized_test_data = {}
kwargs_create_item: dict = {}
class TicketCommentSolutionAPIInheritedCases(
TicketCommentSolutionAPITestCases,
):
kwargs_create_item: dict = {None}
model = None
class TicketCommentSolutionAPIPyTest(
TicketCommentSolutionAPITestCases,
):
pass