Skip to content

Instantly share code, notes, and snippets.

@jsdecena
Created October 30, 2018 11:55
Show Gist options
  • Select an option

  • Save jsdecena/934d327bbe772e6711829352988b5daa to your computer and use it in GitHub Desktop.

Select an option

Save jsdecena/934d327bbe772e6711829352988b5daa to your computer and use it in GitHub Desktop.
public function testUpdateBook() {
$book = factory(Book::class)->create();
$data = [
'author' => 'John Doe'
];
$this->put(route('book.update', $book->id), $data)
->assertStatus(200)
->assertJson($data);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment