コード例 #1
0
ファイル: regions_spec_test.py プロジェクト: yhtsnda/nupic
    def testInvalidCommandSpec(self):
        with self.assertRaises(Exception):
            _x = CommandSpec()

        with self.assertRaises(Exception):
            _x = CommandSpec(description=None)

        with self.assertRaises(Exception):
            _x = CommandSpec(description=3)
コード例 #2
0
ファイル: regions_spec_test.py プロジェクト: yhtsnda/nupic
    def testValidSpec(self):
        try:
            x = Spec(description="123", singleNodeOnly=True)
            x.invariant()

            x = Spec(description="123", singleNodeOnly=True)
            x.commands = dict(command1=CommandSpec("A command"),
                              command2=CommandSpec("Another command"))
            x.invariant()
        except:
            self.fail("Got unexpected exception")
コード例 #3
0
ファイル: regions_spec_test.py プロジェクト: mewbak/nupic
 def testValidCommandSpec(self):
   try:
     x = CommandSpec("")
     x.invariant()
     x = CommandSpec(description="")
     x.invariant()
     x = CommandSpec(description="this is a command")
     x.invariant()
   except:
     self.fail("Got unexpected exception")
コード例 #4
0
ファイル: regions_spec_test.py プロジェクト: yhtsnda/nupic
 def testValidCommandSpec(self):
     try:
         x = CommandSpec("")
         x.invariant()
         x = CommandSpec(description="")
         x.invariant()
         x = CommandSpec(description="this is a command")
         x.invariant()
     except:
         self.fail("Got unexpected exception")