Browse Source
Merge pull request #16168 from ChillarAnand/boiler
fix: Inherit from FrappeTestCase in template
version-14
mergify[bot]
3 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
3 additions and
2 deletions
-
frappe/core/doctype/doctype/boilerplate/test_controller._py
|
|
@@ -2,7 +2,8 @@ |
|
|
|
# See license.txt |
|
|
|
|
|
|
|
# import frappe |
|
|
|
import unittest |
|
|
|
from frappe.tests.utils import FrappeTestCase |
|
|
|
|
|
|
|
class Test{classname}(unittest.TestCase): |
|
|
|
|
|
|
|
class Test{classname}(FrappeTestCase): |
|
|
|
pass |