1
2from PyObjCTools.TestSupport import *
3from Quartz.QuartzComposer import *
4
5class TestQCCompositionPickerPanel (TestCase):
6        @min_os_level('10.5')
7        def testConstants(self):
8            self.assertIsInstance(QCCompositionPickerPanelDidSelectCompositionNotification, unicode)
9
10if __name__ == "__main__":
11    main()
12