1
2from PyObjCTools.TestSupport import *
3from Quartz.QuartzCore import *
4
5class TestCABase (TestCase):
6    @min_os_level('10.5')
7    def testFunctions(self):
8        v = CACurrentMediaTime()
9        self.assertIsInstance(v, float)
10
11if __name__ == "__main__":
12    main()
13