Files
git-repo-manager/e2e_tests/test_basic.py
2021-11-29 00:42:36 +01:00

14 lines
232 B
Python

#!/usr/bin/env python3
from helpers import *
def test_invalid_command():
cmd = grm(["whatever"], is_invalid=True)
assert "USAGE" in cmd.stderr
def test_help():
cmd = grm(["--help"])
assert "USAGE" in cmd.stdout