Преглед на файлове

Add test for list_keymaps

Erovia преди 5 години
родител
ревизия
f8002828ca
променени са 1 файла, в които са добавени 5 реда и са изтрити 0 реда
  1. 5 0
      lib/python/qmk/tests/test_cli_commands.py

+ 5 - 0
lib/python/qmk/tests/test_cli_commands.py

@@ -54,3 +54,8 @@ def test_list_keyboards():
     # check to see if a known keyboard is returned
     # this will fail if handwired/onekey/pytest is removed
     assert 'handwired/onekey/pytest' in result.stdout
+
+def test_list_keymaps():
+    result = check_subcommand("list_keymaps", "-kb", "planck/ez")
+    assert result.returncode == 0
+    assert "planck/ez:default" and "planck/ez:drashna" in result.stdout