Searched refs:anotherNewMethod (Results 1 - 3 of 3) sorted by relevance

/macosx-10.10.1/pyobjc-45/2.5/pyobjc/pyobjc-core/PyObjCTest/
H A Dtest_methodedits.py110 def anotherNewMethod(self): function in function:TestFromObjCSuperToObjCClass.testAddedMethodType
115 self.assert_(not MEClass.pyobjc_classMethods.instancesRespondToSelector_("anotherNewMethod"))
117 objc.classAddMethods(MEClass, [anotherNewClassMethod, anotherNewMethod])
119 self.assert_(MEClass.pyobjc_classMethods.instancesRespondToSelector_("anotherNewMethod"))
122 self.assertEquals(MEClass.anotherNewMethod.__doc__, "INST DOC STRING")
/macosx-10.10.1/pyobjc-45/2.6/pyobjc/pyobjc-core/PyObjCTest/
H A Dtest_methodedits.py112 def anotherNewMethod(self): function in function:TestFromObjCSuperToObjCClass.testAddedMethodType
117 self.assertTrue(not MEClass.pyobjc_classMethods.instancesRespondToSelector_("anotherNewMethod"))
119 objc.classAddMethods(MEClass, [anotherNewClassMethod, anotherNewMethod])
121 self.assertTrue(MEClass.pyobjc_classMethods.instancesRespondToSelector_("anotherNewMethod"))
124 self.assertEquals(MEClass.anotherNewMethod.__doc__, "INST DOC STRING")
/macosx-10.10.1/pyobjc-45/pyobjc/pyobjc-core-2.5.1/PyObjCTest/
H A Dtest_methodedits.py162 def anotherNewMethod(self): function in function:TestFromObjCSuperToObjCClass.testAddedMethodType
167 self.assertTrue(not MEClass.pyobjc_classMethods.instancesRespondToSelector_("anotherNewMethod"))
169 objc.classAddMethods(MEClass, [anotherNewClassMethod, anotherNewMethod])
171 self.assertTrue(MEClass.pyobjc_classMethods.instancesRespondToSelector_("anotherNewMethod"))
174 self.assertEqual(MEClass.anotherNewMethod.__doc__, "INST DOC STRING")

Completed in 119 milliseconds