コード例 #1
0
ファイル: test_commands.py プロジェクト: ViKingIX/grailmud
 def test_event_sending_no_cmd_list(self):
     list_commands(self.failobj)
     assert self.failobj.delegate.received == [NoCommandListEvent()]
コード例 #2
0
ファイル: test_commands.py プロジェクト: hosford42/grailmud
 def test_event_sending_no_cmd_list(self):
     list_commands(self.failobj)
     assert self.failobj.delegate.received == [NoCommandListEvent()]
コード例 #3
0
ファイル: test_commands.py プロジェクト: ViKingIX/grailmud
 def test_event_sending_success(self):
     list_commands(self.obj)
     assert self.obj.delegate.received == [CommandListEvent(self.expected)]
コード例 #4
0
ファイル: test_commands.py プロジェクト: hosford42/grailmud
 def test_event_sending_success(self):
     list_commands(self.obj)
     assert self.obj.delegate.received == [CommandListEvent(self.expected)]