test(core): Unit API Fields Render for TicketCommentSolution model
ref: #744 #728
This commit is contained in:
0
app/core/tests/unit/ticket_comment_base/__init__.py
Normal file
0
app/core/tests/unit/ticket_comment_base/__init__.py
Normal 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
|
Reference in New Issue
Block a user