diff options
Diffstat (limited to 'tests')
| -rw-r--r-- | tests/integration/tests.py | 9 | ||||
| -rw-r--r-- | tests/tests.py | 7 | 
2 files changed, 11 insertions, 5 deletions
| diff --git a/tests/integration/tests.py b/tests/integration/tests.py index 7dcfbf4..1dffd4e 100644 --- a/tests/integration/tests.py +++ b/tests/integration/tests.py @@ -37,6 +37,11 @@ from pokemontools.labels import (      get_label_from_line,  ) +from pokemontools.helpers import ( +    grouper, +    index, +) +  from pokemontools.crystal import (      rom,      load_rom, @@ -69,9 +74,7 @@ from pokemontools.crystal import (      load_asm,      asm,      is_valid_address, -    index,      how_many_until, -    grouper,      get_pokemon_constant_by_id,      generate_map_constant_labels,      get_map_constant_label_by_id, @@ -321,7 +324,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) diff --git a/tests/tests.py b/tests/tests.py index 3b77d41..c6c1265 100644 --- a/tests/tests.py +++ b/tests/tests.py @@ -37,6 +37,11 @@ from pokemontools.labels import (      get_label_from_line,  ) +from pokemontools.helpers import ( +    grouper, +    index, +) +  from pokemontools.crystal import (      rom,      load_rom, @@ -69,9 +74,7 @@ from pokemontools.crystal import (      load_asm,      asm,      is_valid_address, -    index,      how_many_until, -    grouper,      get_pokemon_constant_by_id,      generate_map_constant_labels,      get_map_constant_label_by_id, | 
