Exemplo n.º 1
0
	def test_help_specific(self):
		lines = system.help(rest='help')
		result = ''.join(lines)
		assert 'help' in result
		assert result == '!help: Help (this command)'
Exemplo n.º 2
0
	def test_help(self):
		help = system.help(rest='')
		result = ''.join(help)
		assert 'help' in result
Exemplo n.º 3
0
	def test_help_specific(self):
		lines = system.help(rest='help')
		result = ''.join(lines)
		assert 'help' in result
		assert result == '!help: Help (this command)'
Exemplo n.º 4
0
	def test_help_specific(self):
		help = system.help(c, e, '#test', 'testrunner', 'help')
		result = ''.join(help)
		assert 'help' in result
Exemplo n.º 5
0
	def test_help(self):
		help = system.help(rest='')
		result = ''.join(help)
		assert 'help' in result