mirror of
https://github.com/pret/pokemon-reverse-engineering-tools.git
synced 2026-09-14 13:15:14 -05:00
make the TestPostParsing test case work again
It needs to be a subclass of unittest.TestCase in order to get any of the testing methods. Otherwise all of the tests fail when nosetests finds those tests.
This commit is contained in:
@@ -321,7 +321,7 @@ class TestMultiByteParam(unittest.TestCase):
|
||||
}]
|
||||
self.assertEqual(self.cls.to_asm(), "poop")
|
||||
|
||||
class TestPostParsing: #(unittest.TestCase):
|
||||
class TestPostParsing(unittest.TestCase):
|
||||
"""tests that must be run after parsing all maps"""
|
||||
def test_signpost_counts(self):
|
||||
self.assertEqual(len(map_names[1][1]["signposts"]), 0)
|
||||
|
||||
Reference in New Issue
Block a user