(fixtures, tmp_path, mock_pypi_stats)
| 133 | |
| 134 | @pytest.mark.e2e |
| 135 | def test_info_command(fixtures, tmp_path, mock_pypi_stats): |
| 136 | from aura import config |
| 137 | stats: Path = tmp_path / "pypi_stats.json" |
| 138 | stats.write_text("\n".join(json.dumps(x) for x in config.iter_pypi_stats())) |
| 139 | os.environ["AURA_PYPI_STATS"] = str(stats) |
| 140 | try: |
| 141 | result = fixtures.get_cli_output(['info']) |
| 142 | finally: |
| 143 | del os.environ["AURA_PYPI_STATS"] |
| 144 | |
| 145 | |
| 146 | def test_ast_parser(fixtures): |
nothing calls this directly
no test coverage detected