fix: boilerplate test case (#28514)
This commit is contained in:
parent
d9a1bd5d3d
commit
4f6e2fbe93
1 changed files with 2 additions and 2 deletions
|
|
@ -12,7 +12,7 @@ EXTRA_TEST_RECORD_DEPENDENCIES = [] # eg. ["User"]
|
|||
IGNORE_TEST_RECORD_DEPENDENCIES = [] # eg. ["User"]
|
||||
|
||||
|
||||
class Test{classname}(UnitTestCase):
|
||||
class UnitTest{classname}(UnitTestCase):
|
||||
"""
|
||||
Unit tests for {classname}.
|
||||
Use this class for testing individual functions and methods.
|
||||
|
|
@ -21,7 +21,7 @@ class Test{classname}(UnitTestCase):
|
|||
pass
|
||||
|
||||
|
||||
class Test{classname}(IntegrationTestCase):
|
||||
class IntegrationTest{classname}(IntegrationTestCase):
|
||||
"""
|
||||
Integration tests for {classname}.
|
||||
Use this class for testing interactions between multiple components.
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue