summaryrefslogtreecommitdiff
path: root/lib/python/qmk/tests/test_cli_commands.py
diff options
context:
space:
mode:
authorQMK Bot <hello@qmk.fm>2020-12-16 03:25:18 +0000
committerQMK Bot <hello@qmk.fm>2020-12-16 03:25:18 +0000
commit416dea2c54c885a1d58d6924be6b346c8eb87f47 (patch)
tree056e673665a25521cea9086d4b98754082acb2cb /lib/python/qmk/tests/test_cli_commands.py
parent55f681a723434e77f276ab5901ccdba0bf495fab (diff)
parent37fb14f1b5cbcb0e5ff60abc9152073635234ba4 (diff)
Merge remote-tracking branch 'origin/master' into develop
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 99ec596083..08e80f2c95 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():
result = check_subcommand('clean', '-a')
check_returncode(result)
assert result.stdout.count('done') == 2
+
+
+def test_generate_rgb_breathe_table():
+ result = check_subcommand("generate-rgb-breathe-table", "-c", "1.2", "-m", "127")
+ check_returncode(result)
+ assert 'Breathing center: 1.2' in result.stdout
+ assert 'Breathing max: 127' in result.stdout