aboutsummaryrefslogtreecommitdiff
path: root/lib/python/qmk/tests/test_cli_commands.py
diff options
context:
space:
mode:
Diffstat (limited to 'lib/python/qmk/tests/test_cli_commands.py')
-rw-r--r--lib/python/qmk/tests/test_cli_commands.py7
1 files changed, 7 insertions, 0 deletions
diff --git a/lib/python/qmk/tests/test_cli_commands.py b/lib/python/qmk/tests/test_cli_commands.py
index 99ec59608..08e80f2c9 100644
--- a/lib/python/qmk/tests/test_cli_commands.py
+++ b/lib/python/qmk/tests/test_cli_commands.py
@@ -190,3 +190,10 @@ def test_clean():
190 result = check_subcommand('clean', '-a') 190 result = check_subcommand('clean', '-a')
191 check_returncode(result) 191 check_returncode(result)
192 assert result.stdout.count('done') == 2 192 assert result.stdout.count('done') == 2
193
194
195def test_generate_rgb_breathe_table():
196 result = check_subcommand("generate-rgb-breathe-table", "-c", "1.2", "-m", "127")
197 check_returncode(result)
198 assert 'Breathing center: 1.2' in result.stdout
199 assert 'Breathing max: 127' in result.stdout