()
| 26 | self.file.close() |
| 27 | |
| 28 | def test_cli_help(): |
| 29 | runner = CliRunner() |
| 30 | result = runner.invoke(main_group, ["pmtiles", "--help"]) |
| 31 | assert result.exit_code == 0 |
| 32 | assert "Export a dataset to PMTiles." in result.output |
| 33 | |
| 34 | |
| 35 | @mock.patch("rio_pmtiles.scripts.cli.rasterio") |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…