mirror of
https://github.com/asciinema/asciinema.git
synced 2025-12-17 04:08:04 +01:00
16 lines
332 B
Python
16 lines
332 B
Python
|
|
from 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')
|