1from Quartz import *
2from PyObjCTools.TestSupport import *
3
4
5class TestCAReplicatorLayer (TestCase):
6    @min_os_level('10.6')
7    def testMethods10_6(self):
8        self.assertResultIsBOOL(CAReplicatorLayer.preservesDepth)
9        self.assertArgIsBOOL(CAReplicatorLayer.setPreservesDepth_, 0)
10
11if __name__ == "__main__":
12    main()
13