refactor: Use IntegrationTestCase in multiple files

Signed-off-by: David <dgx.arnold@gmail.com>
This commit is contained in:
David
2024-10-08 01:32:35 +02:00
parent cd112795d3
commit d1fa1af271
22 changed files with 55 additions and 41 deletions

View File

@@ -1,10 +1,10 @@
# Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and Contributors
# See license.txt
import json
import unittest
import frappe
from frappe.tests import IntegrationTestCase
from frappe.utils.response import json_handler
from erpnext.erpnext_integrations.doctype.plaid_settings.plaid_settings import (
@@ -16,7 +16,7 @@ from erpnext.erpnext_integrations.doctype.plaid_settings.plaid_settings import (
)
class TestPlaidSettings(unittest.TestCase):
class TestPlaidSettings(IntegrationTestCase):
def setUp(self):
pass

View File

@@ -1,8 +1,9 @@
# Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and Contributors
# See license.txt
import unittest
from frappe.tests import IntegrationTestCase
class TestQuickBooksMigrator(unittest.TestCase):
class TestQuickBooksMigrator(IntegrationTestCase):
pass

View File

@@ -1,8 +1,9 @@
# Copyright (c) 2019, Frappe Technologies Pvt. Ltd. and Contributors
# See license.txt
import unittest
from frappe.tests import IntegrationTestCase
class TestTallyMigration(unittest.TestCase):
class TestTallyMigration(IntegrationTestCase):
pass