diff --git a/erpnext/support/doctype/customer_issue/test_customer_issue.py b/erpnext/support/doctype/customer_issue/test_customer_issue.py new file mode 100644 index 00000000000..88f54e2defb --- /dev/null +++ b/erpnext/support/doctype/customer_issue/test_customer_issue.py @@ -0,0 +1,10 @@ +# Copyright (c) 2013, Web Notes Technologies Pvt. Ltd. and Contributors and Contributors +# See license.txt + +import frappe +import unittest + +test_records = frappe.get_test_records('Customer Issue') + +class TestCustomerIssue(unittest.TestCase): + pass diff --git a/erpnext/support/doctype/customer_issue/test_records.json b/erpnext/support/doctype/customer_issue/test_records.json new file mode 100644 index 00000000000..cb3a3a1cee6 --- /dev/null +++ b/erpnext/support/doctype/customer_issue/test_records.json @@ -0,0 +1,6 @@ +[ + { + "doctype": "Customer Issue", + "name": "_Test Customer Issue 1" + } +]