Add validation test
This commit is contained in:
parent
9c6718b459
commit
010f66f4c9
1 changed files with 9 additions and 1 deletions
|
@ -29,7 +29,15 @@ class CreateAccessoriesTest extends TestCase
|
|||
|
||||
public function testValidDataRequiredToCreateAccessory()
|
||||
{
|
||||
$this->markTestIncomplete();
|
||||
$this->actingAs(User::factory()->createAccessories()->create())
|
||||
->post(route('accessories.store'), [
|
||||
//
|
||||
])
|
||||
->assertSessionHasErrors([
|
||||
'name',
|
||||
'qty',
|
||||
'category_id',
|
||||
]);
|
||||
}
|
||||
|
||||
public function testCanCreateAccessory()
|
||||
|
|
Loading…
Add table
Reference in a new issue