()
| 11 | |
| 12 | @pytest.fixture |
| 13 | def valid_pack_data(): |
| 14 | return { |
| 15 | "pack_id": "autopack/tests/noop", |
| 16 | "repo_url": "git@github.com:AutoPackAI/autopack.git", |
| 17 | "package_path": "tests.data.packs.noop", |
| 18 | "class_name": "NoopPack", |
| 19 | "name": NoopPack.name, |
| 20 | "description": NoopPack.description, |
| 21 | "categories": NoopPack.categories, |
| 22 | "run_args": [{"name": "query", "type": "string"}], |
| 23 | "dependencies": [], |
| 24 | } |
| 25 | |
| 26 | |
| 27 | def test_fetch_remote_pack_data_success(mock_requests_get, valid_pack_data): |
nothing calls this directly
no outgoing calls
no test coverage detected