def test_event_fetch_request_is_called_with_an_event_id(self): with mock_response(): cased.policy_key = "cs_test_001" assert Event.fetch("1234") cased.http.HTTPClient.make_request.assert_called_with( "get", "https://api.cased.com/events/1234", "cs_test_001", None )
def test_event_can_fetch(self): with mock_response(): cased.policy_key = "cs_test_001" assert Event.fetch("1234").status_code == 200