(self)
| 139 | ds.__getitem__("invalid") |
| 140 | |
| 141 | def test_ds_input_pathlib(self): |
| 142 | test_shp = Path(get_ds_file("test_point", "shp")) |
| 143 | ds = DataSource(test_shp) |
| 144 | self.assertEqual(len(ds), 1) |
| 145 | |
| 146 | def test02_invalid_shp(self): |
| 147 | "Testing invalid SHP files for the Data Source." |
nothing calls this directly
no test coverage detected