(requests_mock)
| 16 | |
| 17 | |
| 18 | def test_object_mapper(requests_mock): |
| 19 | requests_mock.get(api.url + '/health', json=mock_data) |
| 20 | assert api.health(return_type="object") == convert_json_to_object(mock_data) |
| 21 | |
| 22 | |
| 23 | def test_json_mapper(requests_mock): |
nothing calls this directly
no test coverage detected