コード例 #1
0
ファイル: commandTests.py プロジェクト: wyn/collab
 def test_hasNotCommand(self):
     iq = self.iq
     self.assertFalse(command.hasCommand(iq))
コード例 #2
0
ファイル: commandTests.py プロジェクト: wyn/collab
    def test_hasCommand(self):
        iq = self.iq
        cmd = Command(node='test', action='execute')
        iq.addChild(cmd.toElement())

        self.assertTrue(command.hasCommand(iq))