diff options
Diffstat (limited to 'lib/python/qmk/tests/test_cli_commands.py')
| -rw-r--r-- | lib/python/qmk/tests/test_cli_commands.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/lib/python/qmk/tests/test_cli_commands.py b/lib/python/qmk/tests/test_cli_commands.py index a93587150c..768929de1d 100644 --- a/lib/python/qmk/tests/test_cli_commands.py +++ b/lib/python/qmk/tests/test_cli_commands.py | |||
| @@ -84,3 +84,9 @@ def test_list_keymaps_no_keyboard_found(): | |||
| 84 | result = check_subcommand('list-keymaps', '-kb', 'asdfghjkl') | 84 | result = check_subcommand('list-keymaps', '-kb', 'asdfghjkl') |
| 85 | assert result.returncode == 0 | 85 | assert result.returncode == 0 |
| 86 | assert 'does not exist' in result.stdout | 86 | assert 'does not exist' in result.stdout |
| 87 | |||
| 88 | |||
| 89 | def test_json2c(): | ||
| 90 | result = check_subcommand('json2c', 'keyboards/handwired/onekey/keymaps/default_json/keymap.json') | ||
| 91 | assert result.returncode == 0 | ||
| 92 | assert result.stdout == '#include QMK_KEYBOARD_H\nconst uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {\t[0] = LAYOUT(KC_A)};\n\n' | ||
