diff options
| -rw-r--r-- | lib/python/qmk/tests/test_cli_commands.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/lib/python/qmk/tests/test_cli_commands.py b/lib/python/qmk/tests/test_cli_commands.py index f1a92d9a3..7dc51d247 100644 --- a/lib/python/qmk/tests/test_cli_commands.py +++ b/lib/python/qmk/tests/test_cli_commands.py | |||
| @@ -54,3 +54,8 @@ def test_list_keyboards(): | |||
| 54 | # check to see if a known keyboard is returned | 54 | # check to see if a known keyboard is returned |
| 55 | # this will fail if handwired/onekey/pytest is removed | 55 | # this will fail if handwired/onekey/pytest is removed |
| 56 | assert 'handwired/onekey/pytest' in result.stdout | 56 | assert 'handwired/onekey/pytest' in result.stdout |
| 57 | |||
| 58 | def test_list_keymaps(): | ||
| 59 | result = check_subcommand("list_keymaps", "-kb", "planck/ez") | ||
| 60 | assert result.returncode == 0 | ||
| 61 | assert "planck/ez:default" and "planck/ez:drashna" in result.stdout | ||
