1
2from PyObjCTools.TestSupport import *
3from AppKit import *
4
5class TestNSMovie (TestCase):
6
7    @onlyOn32Bit
8    def testMethods(self):
9        self.failUnlessArgIsBOOL(NSMovie.initWithURL_byReference_, 1)
10        self.failUnlessResultIsBOOL(NSMovie.canInitWithPasteboard_)
11
12if __name__ == "__main__":
13    main()
14