blob: 8b0d217da54b2a6a23acbada7818bb4454405377 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
from cliff.command import Command
class TestCommand(Command):
"""Description of command.
"""
def run(self, parsed_args):
return
def test_get_description():
cmd = TestCommand(None, None)
desc = cmd.get_description()
assert desc == "Description of command.\n "
def test_get_parser():
cmd = TestCommand(None, None)
parser = cmd.get_parser('NAME')
assert parser.prog == 'NAME'
|