mirror of
https://github.com/openstenoproject/qmk
synced 2024-11-10 18:49:08 +00:00
Add test for list_keymaps
This commit is contained in:
parent
26f53d38d9
commit
f8002828ca
1 changed files with 5 additions and 0 deletions
|
@ -54,3 +54,8 @@ def test_list_keyboards():
|
||||||
# check to see if a known keyboard is returned
|
# check to see if a known keyboard is returned
|
||||||
# this will fail if handwired/onekey/pytest is removed
|
# this will fail if handwired/onekey/pytest is removed
|
||||||
assert 'handwired/onekey/pytest' in result.stdout
|
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
|
||||||
|
|
Loading…
Reference in a new issue