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