mirror of
https://github.com/ArchipelagoMW/Archipelago.git
synced 2026-05-27 13:59:56 -07:00
Tests: now autoload tests from /worlds/*/test (#1318)
Co-authored-by: black-sliver <59490463+black-sliver@users.noreply.github.com>
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
from worlds.alttp.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)
|
||||
Reference in New Issue
Block a user