from PyObjCTools.TestSupport import *
from Automator import *
class TestAMAction (TestCase):
@min_os_level("10.5")
def testMethods10_5(self):
self.assertArgIsOut(AMAction.initWithContentsOfURL_error_, 1)
self.assertArgIsBOOL(AMAction.initWithDefinition_fromArchive_, 1)
def testMethods(self):
self.assertArgIsOut(AMAction.runWithInput_fromAction_error_, 2)
if __name__ == "__main__":
main()
|