seed(); $item = Item::factory() ->create([ 'title' => 'Item A', ]); $response = $this->post('/items/'.$item->id, ['_method' => 'DELETE']); $response->assertStatus(302); } public function test_redirects_to_item_list_page_when_deleting_an_item() { $this->seed(); $item = Item::factory() ->create([ 'title' => 'Item A', ]); $response = $this->post('/items/'.$item->id, ['_method' => 'DELETE']); $response->assertStatus(302); $response->assertSee('Redirecting to http://localhost/items'); } }