Skip to content

Commit

Permalink
Tests: Add basic test case for CLI interface
Browse files Browse the repository at this point in the history
  • Loading branch information
amotl committed Apr 15, 2024
1 parent ca04ec6 commit 3f46771
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions tests/test_cli.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
import shlex
import subprocess


def test_cli():
command = "ds18b20-datalogger"
subprocess.check_call(shlex.split(command)) # noqa: S603, S605

0 comments on commit 3f46771

Please sign in to comment.