1
2from PyObjCTools.TestSupport import *
3from CoreLocation import *
4
5class TestCLLocationManager (TestCase):
6    @min_os_level('10.6')
7    def testMethods(self):
8        self.assertResultIsBOOL(CLLocationManager.locationServicesEnabled)
9
10
11if __name__ == "__main__":
12    main()
13