Files
deb-python-dcos/tests/test_dcos.py
José Armando García Sancio 106f6a45ce Initial dcos cli commit
2015-01-18 10:13:28 +00:00

18 lines
410 B
Python

import dcos
def test_extend_usage_docopt():
command_summaries = [
('first', 'first summary'),
('second', ' second summary '),
('third', 'third summary\n')
]
expected = """
The dcos commands are:
\tfirst \tfirst summary
\tsecond \tsecond summary
\tthird \tthird summary"""
assert dcos._extend_usage_docopt('', command_summaries) == expected