Testing the boolean properties.
(self)
| 267 | self.assertEqual(expected, srs[attr]) |
| 268 | |
| 269 | def test07_boolean_props(self): |
| 270 | "Testing the boolean properties." |
| 271 | for s in srlist: |
| 272 | srs = SpatialReference(s.wkt) |
| 273 | self.assertEqual(s.projected, srs.projected) |
| 274 | self.assertEqual(s.geographic, srs.geographic) |
| 275 | |
| 276 | def test08_angular_linear(self): |
| 277 | "Testing the linear and angular units routines." |
nothing calls this directly
no test coverage detected