aboutsummaryrefslogtreecommitdiff
path: root/tests/test_parser.py
diff options
context:
space:
mode:
authorAlexis Roda <alexis.roda.villalonga@gmail.com>2019-08-07 02:05:14 +0200
committerAlexis Roda <alexis.roda.villalonga@gmail.com>2019-08-07 02:05:14 +0200
commit7ed68a50b1379a8d8265ff76292ed0620d2a45e5 (patch)
tree5b88466009ea7e6111a0de8117adb13acaad4461 /tests/test_parser.py
parent09260b3ade51201b99b945cb0d9db7cdcf10d82c (diff)
downloadz80count-7ed68a50b1379a8d8265ff76292ed0620d2a45e5.tar.gz
z80count-7ed68a50b1379a8d8265ff76292ed0620d2a45e5.zip
Fix issue 11.
Diffstat (limited to 'tests/test_parser.py')
-rw-r--r--tests/test_parser.py23
1 files changed, 23 insertions, 0 deletions
diff --git a/tests/test_parser.py b/tests/test_parser.py
index 3153415..b6ab468 100644
--- a/tests/test_parser.py
+++ b/tests/test_parser.py
@@ -918,6 +918,10 @@ def test_lookup(instruction, cycles, parser_table):
assert entry["cycles"] == cycles, "Failed: {} expected '{}' != found '{}'".format(instruction, cycles, entry["cycles"])
+##########################################################################
+# _extract_mnemonic #
+##########################################################################
+
@pytest.mark.parametrize("line,operator", (
("foo: LD A, 1 ; load accumulator", "LD"),
("foo: CALL 0xABCD", "CALL"),
@@ -935,3 +939,22 @@ def test_extract_mnemonic(line, operator):
def test_extract_mnemonic_normalizes_operator():
assert Parser._extract_mnemonic("call 0xabcd") == "CALL"
+
+
+##########################################################################
+# _remove_label #
+##########################################################################
+
+@pytest.mark.parametrize("line,expected", (
+ ("foo: ld A, 1 ; load accumulator", "ld A, 1 ; load accumulator"),
+ ("foo: CALL 0xABCD", "CALL 0xABCD"),
+ ("foo: EI", "EI"),
+ ("LD A, 1 ; load accumulator", "LD A, 1 ; load accumulator"),
+ ("call 0xABCE", "call 0xABCE"),
+ ("EI", "EI"),
+ ("foo: ; some label", None),
+ ("foo:", None),
+ ("; some comment", None),
+))
+def test_remove_label(line, expected):
+ assert Parser._remove_label(line) == expected