1from Quartz import *
2from PyObjCTools.TestSupport import *
3
4class TestIKSaveOptionsHelper (NSObject):
5    def saveOptions_shouldShowUTType_(self, o, t): return 1
6
7class TestIKSaveOptions (TestCase):
8
9    @min_os_level('10.6')
10    def testProtocol10_6(self):
11        self.assertResultIsBOOL(TestIKSaveOptionsHelper.saveOptions_shouldShowUTType_)
12
13
14if __name__ == "__main__":
15    main()
16