f8e13417f2
date: 2026-08-15T14:20:10 master commit: d48cfa730bf21593b684efeaf3fd8940695e1dea
14 lines
396 B
Python
14 lines
396 B
Python
import subprocess
|
|
from pathlib import Path
|
|
|
|
|
|
JOTPLUGGLER_DIR = Path(__file__).parent
|
|
|
|
|
|
from openpilot.common.test import OpenpilotTestCase
|
|
class TestJotpluggler(OpenpilotTestCase):
|
|
def test_help(self):
|
|
result = subprocess.run(["./jotpluggler", "-h"], cwd=JOTPLUGGLER_DIR, capture_output=True, text=True)
|
|
assert result.returncode == 0, result.stderr
|
|
assert "Usage:" in result.stderr
|