Files
asciinema/tests/help_command_test.py
2016-06-07 21:02:11 +02:00

16 lines
343 B
Python

from asciinema.commands.help import HelpCommand
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')