diff options
Diffstat (limited to 'tests/test_commandline_parser.py')
| -rw-r--r-- | tests/test_commandline_parser.py | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/tests/test_commandline_parser.py b/tests/test_commandline_parser.py index d092072..77836ce 100644 --- a/tests/test_commandline_parser.py +++ b/tests/test_commandline_parser.py @@ -51,6 +51,11 @@ def test_commandline_parses_classic_by_alias(qtbot): assert command.parseCompName("original") == "Classic Visualizer" -def test_commandline_parses_conway_by_name(qtbot): +def test_commandline_parses_conway_by_short_name(qtbot): command = Command() assert command.parseCompName("conway") == "Conway's Game of Life" + + +def test_commandline_parses_image_by_name(qtbot): + command = Command() + assert command.parseCompName("image") == "Image" |
