(self)
| 98 | self.assertAlmostEqual(pnt1.y, pnt2.y, 5) |
| 99 | |
| 100 | def test_data_source_str(self): |
| 101 | lm = LayerMapping(City, str(city_shp), city_mapping) |
| 102 | lm.save() |
| 103 | self.assertEqual(City.objects.count(), 3) |
| 104 | |
| 105 | def test_layermap_strict(self): |
| 106 | "Testing the `strict` keyword, and import of a LineString shapefile." |
nothing calls this directly
no test coverage detected