(pack_response_valid)
| 43 | |
| 44 | @pytest.fixture |
| 45 | def pack_response_invalid_class(pack_response_valid): |
| 46 | invalid_class_response = PackResponse(**pack_response_valid.__dict__) |
| 47 | invalid_class_response.class_name = "InvalidClass" |
| 48 | return invalid_class_response |
| 49 | |
| 50 | |
| 51 | @patch("autopack.get_pack.get_pack_details") |
nothing calls this directly
no test coverage detected