Matt Eggers

Results 3 issues of Matt Eggers

I make a call to retrieve a model from an api. The call fails validation and returns a 422 (Unprocessable Entity). The body of the response is an array of...

I have Rspec unit tests that are failing that shouldn't. In one of my models, I receive JSON from an api which may or may not return a set of...

I have a very simple model: ``` class InternalUser include Her::Model parse_root_in_json true, format: :active_model_serializers end ``` It's api call returns _very_ simple json: ``` [{"user_name":"user_a"},{"user_name":"user_b"},{"user_name":"user_c"}] ``` The controller should...