(pack_response_valid)
| 36 | |
| 37 | @pytest.fixture |
| 38 | def pack_response_invalid_path(pack_response_valid): |
| 39 | invalid_path_response = PackResponse(**pack_response_valid.__dict__) |
| 40 | invalid_path_response.package_path = "some.bad.path" |
| 41 | return invalid_path_response |
| 42 | |
| 43 | |
| 44 | @pytest.fixture |
nothing calls this directly
no test coverage detected