Files
asciinema/tests/error_command_test.py

14 lines
314 B
Python
Raw Normal View History

2013-09-30 22:45:58 +02:00
from nose.tools import assert_raises
2013-10-05 12:43:53 +02:00
from asciinema.commands.error import ErrorCommand
2013-09-30 22:45:58 +02:00
from test_helper import assert_printed, Test
class TestErrorCommand(Test):
def test_execute(self):
command = ErrorCommand('foo')
assert_raises(SystemExit, command.execute)
assert_printed('foo')