(requests_mock)
| 11 | |
| 12 | |
| 13 | def test_default_mapper(requests_mock): |
| 14 | requests_mock.get(api.url + '/health', json=mock_data) |
| 15 | assert api.health() == convert_json_to_object(mock_data) |
| 16 | |
| 17 | |
| 18 | def test_object_mapper(requests_mock): |
nothing calls this directly
no test coverage detected