3
0
mirror of https://github.com/snipe/snipe-it.git synced 2025-12-01 11:30:10 +00:00

Add validation test

This commit is contained in:
Marcus Moore
2024-09-04 15:48:11 -07:00
parent 9c6718b459
commit 010f66f4c9

View File

@ -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()