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