def test_help_specific(self): lines = system.help(rest='help') result = ''.join(lines) assert 'help' in result assert result == '!help: Help (this command)'
def test_help(self): help = system.help(rest='') result = ''.join(help) assert 'help' in result
def test_help_specific(self): help = system.help(c, e, '#test', 'testrunner', 'help') result = ''.join(help) assert 'help' in result