测试
public function test_input_missing_a_title_is_rejected() {
$response = $this->post('posts', ['body' => 'This is the body of my post']);
$response->assertRedirect();
$response->assertSessionHasErrors();
}public function test_valid_input_should_create_a_post_in_the_database() {
$this->post('posts', ['title' => 'Post Title', 'body' => 'This is the body']);
$this->assertDatabaseHas('posts', ['title' => 'Post Title']);
}Last updated