diff --git a/tests/test_cli.py b/tests/test_cli.py new file mode 100644 index 0000000..dc65ff8 --- /dev/null +++ b/tests/test_cli.py @@ -0,0 +1,7 @@ +import shlex +import subprocess + + +def test_cli(): + command = "ds18b20-datalogger" + subprocess.check_call(shlex.split(command)) # noqa: S603, S605