diff options
author | Bryan Bishop <kanzure@gmail.com> | 2013-08-04 14:00:56 -0500 |
---|---|---|
committer | Bryan Bishop <kanzure@gmail.com> | 2013-08-04 14:00:56 -0500 |
commit | 782f6fee10430464416ba8904fd7c6c7ea302779 (patch) | |
tree | f61d7912395e348f9dbe8736ab29d96ccb434caa /tests/tests.py | |
parent | b401a99d425687801bf8a2f6c53a4baabcb208ab (diff) |
move a TestAsmList test into tests/integrations/
Diffstat (limited to 'tests/tests.py')
-rw-r--r-- | tests/tests.py | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/tests/tests.py b/tests/tests.py index 7b37794..15cf3c3 100644 --- a/tests/tests.py +++ b/tests/tests.py @@ -416,16 +416,6 @@ class TestAsmList(unittest.TestCase): self.assertEqual(labels[0]["label"], "HelloWorld") del asm - # this test takes a lot of time :( - def xtest_scan_for_predefined_labels(self): - # label keys: line_number, bank, label, offset, address - load_asm() - all_labels = scan_for_predefined_labels() - label_names = [x["label"] for x in all_labels] - self.assertIn("GetFarByte", label_names) - self.assertIn("AddNTimes", label_names) - self.assertIn("CheckShininess", label_names) - def test_write_all_labels(self): """dumping json into a file""" filename = "test_labels.json" |