Skip to content

Instantly share code, notes, and snippets.

@jsdecena
Last active February 11, 2021 19:30
Show Gist options
  • Save jsdecena/49bccc8abd08f0ddd54e325a6c5c246f to your computer and use it in GitHub Desktop.
Save jsdecena/49bccc8abd08f0ddd54e325a6c5c246f to your computer and use it in GitHub Desktop.
Article Api Test File
<?php
namespace Tests\Feature;
class ArticleTest extends TestCase
{
/** @test */
public function it_can_create_an_article()
{
$data = [
'title' => $this->faker->sentence,
'content' => $this->faker->paragraph
];
$this->post(route('articles.store'), $data)
->assertStatus(201)
->assertJson(compact('data'));
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment