add test for unique sram offsets for shops

doubles as a way to print them out for debugging
This commit is contained in:
Fabian Dill 2021-01-22 20:53:48 +01:00
parent a2eb666ae9
commit 1385fb1894
2 changed files with 13 additions and 0 deletions

13
test/shops/TestSram.py Normal file
View File

@ -0,0 +1,13 @@
from Shops import shop_table
from test.TestBase import TestBase
class TestSram(TestBase):
def testUniqueOffset(self):
sram_ids = set()
for shop_name, shopdata in shop_table.items():
for x in range(3):
new = shopdata.sram_offset + x
with self.subTest(shop_name, slot=x + 1, offset=new):
self.assertNotIn(new, sram_ids)
sram_ids.add(new)

0
test/shops/__init__.py Normal file
View File