Files
asciinema/tests/help_command_test.py

16 lines
342 B
Python
Raw Normal View History

2013-10-05 12:43:53 +02:00
from asciinema.commands.help import HelpCommand
2013-09-30 22:45:58 +02:00
from test_helper import assert_printed, Test
class TestHelpCommand(Test):
def test_execute(self):
command = HelpCommand()
command.execute()
assert_printed('asciinema')
assert_printed('usage')
assert_printed('rec')
assert_printed('auth')