mirror of
https://github.com/frappe/erpnext.git
synced 2026-02-13 01:34:10 +00:00
Merge pull request #43548 from blaggacao/test-refactoring/batch-1728345166
Refactor: Use IntegrationTestCase in multiple files
This commit is contained in:
@@ -1,9 +1,10 @@
|
||||
# Copyright (c) 2018, Frappe and Contributors
|
||||
# See license.txt
|
||||
|
||||
import unittest
|
||||
|
||||
from frappe.tests import IntegrationTestCase
|
||||
|
||||
class TestQualityAction(unittest.TestCase):
|
||||
|
||||
class TestQualityAction(IntegrationTestCase):
|
||||
# quality action has no code
|
||||
pass
|
||||
|
||||
@@ -1,12 +1,12 @@
|
||||
# Copyright (c) 2019, Frappe Technologies Pvt. Ltd. and Contributors
|
||||
# See license.txt
|
||||
|
||||
import unittest
|
||||
|
||||
import frappe
|
||||
from frappe.tests import IntegrationTestCase
|
||||
|
||||
|
||||
class TestQualityFeedback(unittest.TestCase):
|
||||
class TestQualityFeedback(IntegrationTestCase):
|
||||
def test_quality_feedback(self):
|
||||
template = frappe.get_doc(
|
||||
dict(
|
||||
|
||||
@@ -1,8 +1,9 @@
|
||||
# Copyright (c) 2019, Frappe Technologies Pvt. Ltd. and Contributors
|
||||
# See license.txt
|
||||
|
||||
import unittest
|
||||
|
||||
from frappe.tests import IntegrationTestCase
|
||||
|
||||
class TestQualityFeedbackTemplate(unittest.TestCase):
|
||||
|
||||
class TestQualityFeedbackTemplate(IntegrationTestCase):
|
||||
pass
|
||||
|
||||
@@ -1,12 +1,12 @@
|
||||
# Copyright (c) 2018, Frappe and Contributors
|
||||
# See license.txt
|
||||
|
||||
import unittest
|
||||
|
||||
import frappe
|
||||
from frappe.tests import IntegrationTestCase
|
||||
|
||||
|
||||
class TestQualityGoal(unittest.TestCase):
|
||||
class TestQualityGoal(IntegrationTestCase):
|
||||
def test_quality_goal(self):
|
||||
# no code, just a basic sanity check
|
||||
goal = get_quality_goal()
|
||||
|
||||
@@ -1,9 +1,10 @@
|
||||
# Copyright (c) 2018, Frappe and Contributors
|
||||
# See license.txt
|
||||
|
||||
import unittest
|
||||
|
||||
from frappe.tests import IntegrationTestCase
|
||||
|
||||
class TestQualityMeeting(unittest.TestCase):
|
||||
|
||||
class TestQualityMeeting(IntegrationTestCase):
|
||||
# nothing to test
|
||||
pass
|
||||
|
||||
@@ -1,9 +1,10 @@
|
||||
# Copyright (c) 2019, Frappe Technologies Pvt. Ltd. and Contributors
|
||||
# See license.txt
|
||||
|
||||
# import frappe
|
||||
import unittest
|
||||
|
||||
from frappe.tests import IntegrationTestCase
|
||||
|
||||
class TestQualityMeetingAgenda(unittest.TestCase):
|
||||
|
||||
class TestQualityMeetingAgenda(IntegrationTestCase):
|
||||
pass
|
||||
|
||||
@@ -1,15 +1,15 @@
|
||||
# Copyright (c) 2018, Frappe and Contributors
|
||||
# See license.txt
|
||||
|
||||
import unittest
|
||||
|
||||
import frappe
|
||||
from frappe.tests import IntegrationTestCase
|
||||
|
||||
from ..quality_goal.test_quality_goal import get_quality_goal
|
||||
from .quality_review import review
|
||||
|
||||
|
||||
class TestQualityReview(unittest.TestCase):
|
||||
class TestQualityReview(IntegrationTestCase):
|
||||
def test_review_creation(self):
|
||||
quality_goal = get_quality_goal()
|
||||
review()
|
||||
|
||||
@@ -1,9 +1,10 @@
|
||||
# Copyright (c) 2019, Frappe Technologies Pvt. Ltd. and Contributors
|
||||
# See license.txt
|
||||
|
||||
# import frappe
|
||||
import unittest
|
||||
|
||||
from frappe.tests import IntegrationTestCase
|
||||
|
||||
class TestImportSupplierInvoice(unittest.TestCase):
|
||||
|
||||
class TestImportSupplierInvoice(IntegrationTestCase):
|
||||
pass
|
||||
|
||||
@@ -1,9 +1,10 @@
|
||||
# Copyright (c) 2020, Frappe Technologies Pvt. Ltd. and Contributors
|
||||
# See license.txt
|
||||
|
||||
# import frappe
|
||||
import unittest
|
||||
|
||||
from frappe.tests import IntegrationTestCase
|
||||
|
||||
class TestLowerDeductionCertificate(unittest.TestCase):
|
||||
|
||||
class TestLowerDeductionCertificate(IntegrationTestCase):
|
||||
pass
|
||||
|
||||
@@ -1,9 +1,10 @@
|
||||
# Copyright (c) 2021, Frappe Technologies Pvt. Ltd. and Contributors
|
||||
# See license.txt
|
||||
|
||||
# import frappe
|
||||
import unittest
|
||||
|
||||
from frappe.tests import IntegrationTestCase
|
||||
|
||||
class TestSouthAfricaVATSettings(unittest.TestCase):
|
||||
|
||||
class TestSouthAfricaVATSettings(IntegrationTestCase):
|
||||
pass
|
||||
|
||||
@@ -1,9 +1,10 @@
|
||||
# Copyright (c) 2020, Frappe Technologies Pvt. Ltd. and Contributors
|
||||
# See license.txt
|
||||
|
||||
# import frappe
|
||||
import unittest
|
||||
|
||||
from frappe.tests import IntegrationTestCase
|
||||
|
||||
class TestUAEVATSettings(unittest.TestCase):
|
||||
|
||||
class TestUAEVATSettings(IntegrationTestCase):
|
||||
pass
|
||||
|
||||
@@ -1,14 +1,14 @@
|
||||
# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors
|
||||
# License: GNU General Public License v3. See license.txt
|
||||
|
||||
import unittest
|
||||
|
||||
import frappe
|
||||
from frappe.tests import IntegrationTestCase
|
||||
|
||||
from erpnext.regional.report.irs_1099.irs_1099 import execute as execute_1099_report
|
||||
|
||||
|
||||
class TestUnitedStates(unittest.TestCase):
|
||||
class TestUnitedStates(IntegrationTestCase):
|
||||
def test_irs_1099_custom_field(self):
|
||||
if not frappe.db.exists("Supplier", "_US 1099 Test Supplier"):
|
||||
doc = frappe.new_doc("Supplier")
|
||||
|
||||
@@ -1,10 +1,11 @@
|
||||
# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors
|
||||
# See license.txt
|
||||
|
||||
import unittest
|
||||
|
||||
from frappe.tests import IntegrationTestCase
|
||||
|
||||
# test_records = frappe.get_test_records('Installation Note')
|
||||
|
||||
|
||||
class TestInstallationNote(unittest.TestCase):
|
||||
class TestInstallationNote(IntegrationTestCase):
|
||||
pass
|
||||
|
||||
@@ -1,8 +1,9 @@
|
||||
# Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and Contributors
|
||||
# See license.txt
|
||||
|
||||
import unittest
|
||||
|
||||
from frappe.tests import IntegrationTestCase
|
||||
|
||||
class TestSalesPartnerType(unittest.TestCase):
|
||||
|
||||
class TestSalesPartnerType(IntegrationTestCase):
|
||||
pass
|
||||
|
||||
@@ -1,12 +1,12 @@
|
||||
# Copyright (c) 2019, Frappe Technologies Pvt. Ltd. and Contributors
|
||||
# See license.txt
|
||||
|
||||
import unittest
|
||||
|
||||
import frappe
|
||||
from frappe.tests import IntegrationTestCase
|
||||
|
||||
|
||||
class TestSellingSettings(unittest.TestCase):
|
||||
class TestSellingSettings(IntegrationTestCase):
|
||||
def test_defaults_populated(self):
|
||||
# Setup default values are not populated on migrate, this test checks
|
||||
# if setup was completed correctly
|
||||
|
||||
@@ -1,10 +1,11 @@
|
||||
# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors
|
||||
# See license.txt
|
||||
|
||||
import unittest
|
||||
|
||||
from frappe.tests import IntegrationTestCase
|
||||
|
||||
# test_records = frappe.get_test_records('Authorization Rule')
|
||||
|
||||
|
||||
class TestAuthorizationRule(unittest.TestCase):
|
||||
class TestAuthorizationRule(IntegrationTestCase):
|
||||
pass
|
||||
|
||||
@@ -1,11 +1,11 @@
|
||||
# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors
|
||||
# License: GNU General Public License v3. See license.txt
|
||||
|
||||
import json
|
||||
import unittest
|
||||
|
||||
import frappe
|
||||
from frappe import _
|
||||
from frappe.tests import IntegrationTestCase
|
||||
from frappe.utils import random_string
|
||||
|
||||
from erpnext.accounts.doctype.account.chart_of_accounts.chart_of_accounts import (
|
||||
@@ -18,7 +18,7 @@ test_dependencies = ["Fiscal Year"]
|
||||
test_records = frappe.get_test_records("Company")
|
||||
|
||||
|
||||
class TestCompany(unittest.TestCase):
|
||||
class TestCompany(IntegrationTestCase):
|
||||
def test_coa_based_on_existing_company(self):
|
||||
company = frappe.new_doc("Company")
|
||||
company.company_name = "COA from Existing Company"
|
||||
|
||||
@@ -1,10 +1,10 @@
|
||||
# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors
|
||||
# License: GNU General Public License v3. See license.txt
|
||||
|
||||
import unittest
|
||||
from unittest import mock
|
||||
|
||||
import frappe
|
||||
from frappe.tests import IntegrationTestCase
|
||||
from frappe.utils import cint, flt
|
||||
|
||||
from erpnext.setup.utils import get_exchange_rate
|
||||
@@ -80,7 +80,7 @@ def patched_requests_get(*args, **kwargs):
|
||||
|
||||
|
||||
@mock.patch("requests.get", side_effect=patched_requests_get)
|
||||
class TestCurrencyExchange(unittest.TestCase):
|
||||
class TestCurrencyExchange(IntegrationTestCase):
|
||||
def clear_cache(self):
|
||||
cache = frappe.cache()
|
||||
for date in test_exchange_values.keys():
|
||||
|
||||
@@ -1,14 +1,14 @@
|
||||
# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors
|
||||
# License: GNU General Public License v3. See license.txt
|
||||
|
||||
import unittest
|
||||
|
||||
import frappe
|
||||
from frappe.tests import IntegrationTestCase
|
||||
|
||||
test_ignore = ["Leave Block List"]
|
||||
|
||||
|
||||
class TestDepartment(unittest.TestCase):
|
||||
class TestDepartment(IntegrationTestCase):
|
||||
def test_remove_department_data(self):
|
||||
doc = create_department("Test Department")
|
||||
frappe.delete_doc("Department", doc.name)
|
||||
|
||||
@@ -1,8 +1,9 @@
|
||||
# Copyright (c) 2017, Frappe Technologies Pvt. Ltd. and Contributors
|
||||
# See license.txt
|
||||
|
||||
import unittest
|
||||
|
||||
from frappe.tests import IntegrationTestCase
|
||||
|
||||
class TestDriver(unittest.TestCase):
|
||||
|
||||
class TestDriver(IntegrationTestCase):
|
||||
pass
|
||||
|
||||
@@ -1,10 +1,11 @@
|
||||
# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors
|
||||
# See license.txt
|
||||
|
||||
import unittest
|
||||
|
||||
from frappe.tests import IntegrationTestCase
|
||||
|
||||
# test_records = frappe.get_test_records('Email Digest')
|
||||
|
||||
|
||||
class TestEmailDigest(unittest.TestCase):
|
||||
class TestEmailDigest(IntegrationTestCase):
|
||||
pass
|
||||
|
||||
Reference in New Issue
Block a user