Answer the question
In order to leave comments, you need to log in
Testing in Laravel?
I'm trying to get acquainted with tests in Laravel 8. I'm writing a simple test
public function testStore()
{
$data = [
'name' => 'https://test.ru'
];
$response = $this->post(route('urls.store'), $data);
$response->assertSessionHasNoErrors();
$response->assertRedirect();
$this->assertDatabaseHas('urls', $data);
}
$response = $this->get(route('urls.index'));
$response->assertOk();
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question