()
| 11 | |
| 12 | @pytest.fixture |
| 13 | def pack_response_valid(): |
| 14 | return PackResponse( |
| 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 | dependencies=[], |
| 21 | description=NoopPack.description, |
| 22 | categories=NoopPack.categories, |
| 23 | run_args=[{"name": "query", "type": "string"}], |
| 24 | ) |
| 25 | |
| 26 | |
| 27 | @pytest.fixture |
nothing calls this directly
no test coverage detected