chore(accounting): Remove old History Tests

ref: #783 #735 #759
This commit is contained in:
2025-06-04 11:29:27 +09:30
parent d3f367f4b9
commit 072cda66bf

View File

@ -1,38 +0,0 @@
from django.test import TestCase
from accounting.models.asset_base_history import AssetBase, AssetBaseHistory
from core.tests.abstract.test_functional_history import HistoryEntriesCommon
class History(
HistoryEntriesCommon,
TestCase,
):
model = AssetBase
history_model = AssetBaseHistory
@classmethod
def setUpTestData(self):
super().setUpTestData()
self.field_name = 'asset_number'
self.obj = self.model.objects.create(
organization = self.organization,
asset_number = self.field_value_original,
)
self.obj_delete = self.model.objects.create(
organization = self.organization,
asset_number = self.field_value_delete,
)
self.call_the_banners()