mirror of
https://github.com/xonsh/xonsh.git
synced 2025-03-04 08:24:40 +01:00
20 lines
663 B
Python
20 lines
663 B
Python
![]() |
import re
|
||
|
|
||
|
import pytest
|
||
|
|
||
|
from xonsh.procs.specs import cmds_to_specs
|
||
|
from xonsh.tracer import tracermain
|
||
|
|
||
|
|
||
|
def test_tracer_help(capsys, xsh_with_aliases):
|
||
|
"""verify can invoke it, and usage knows about all the options"""
|
||
|
spec = cmds_to_specs([("trace", "-h")], captured="stdout")[0]
|
||
|
with pytest.raises(SystemExit):
|
||
|
tracermain(["-h"], spec=spec)
|
||
|
capout = capsys.readouterr().out
|
||
|
pat = re.compile(r"^usage:\s*trace[^\n]*{([\w,-]+)}", re.MULTILINE)
|
||
|
m = pat.match(capout)
|
||
|
assert m[1]
|
||
|
verbs = set(v.strip().lower() for v in m[1].split(","))
|
||
|
assert verbs == {"rm", "start", "add", "on", "off", "del", "color", "stop", "ls"}
|