コード例 #1
0
ファイル: test_app.py プロジェクト: ouijan/rabbit
	def test_it_finds_the_correct_child_group(self):
		app = App()
		command = Command()
		result = app.addCommand(command)
		self.assertTrue(result)
コード例 #2
0
ファイル: test_app.py プロジェクト: ouijan/rabbit
	def test_it_validates_command_object_falsy(self):
		app = App()
		command = object
		result = app.addCommand(command)
		self.assertFalse(result)