Skip to content

Instantly share code, notes, and snippets.

@flyingluscas
Created September 30, 2017 18:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save flyingluscas/865fa61bc0c79f23bd87cde74d07d076 to your computer and use it in GitHub Desktop.
Save flyingluscas/865fa61bc0c79f23bd87cde74d07d076 to your computer and use it in GitHub Desktop.
public function testPartialJsonResponse()
{
    $response = $this->json('GET', '/api/users/1');

    $response
        ->assertStatus(200)
        ->assertJsonFragment([
            'name' => 'Anakin Skywalker',
        ]);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment