mirror of
https://github.com/TheLocehiliosan/yadm
synced 2024-10-27 20:34:27 +00:00
18 lines
429 B
Python
18 lines
429 B
Python
|
"""Test help"""
|
||
|
|
||
|
|
||
|
def test_missing_command(runner, yadm_y):
|
||
|
"""Run without any command"""
|
||
|
run = runner(command=yadm_y())
|
||
|
assert run.failure
|
||
|
assert run.err == ''
|
||
|
assert run.out.startswith('Usage: yadm')
|
||
|
|
||
|
|
||
|
def test_help_command(runner, yadm_y):
|
||
|
"""Run with help command"""
|
||
|
run = runner(command=yadm_y('help'))
|
||
|
assert run.failure
|
||
|
assert run.err == ''
|
||
|
assert run.out.startswith('Usage: yadm')
|