예제 #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)'
예제 #2
0
	def test_help(self):
		help = system.help(rest='')
		result = ''.join(help)
		assert 'help' in result
예제 #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)'
예제 #4
0
	def test_help_specific(self):
		help = system.help(c, e, '#test', 'testrunner', 'help')
		result = ''.join(help)
		assert 'help' in result
예제 #5
0
	def test_help(self):
		help = system.help(rest='')
		result = ''.join(help)
		assert 'help' in result