mirror of
https://github.com/snipe/snipe-it.git
synced 2025-03-05 20:52:15 -08:00
Scaffold tests
This commit is contained in:
parent
1995e1399e
commit
3d69721af0
23
tests/Feature/Notes/CreateNotesTest.php
Normal file
23
tests/Feature/Notes/CreateNotesTest.php
Normal file
|
@ -0,0 +1,23 @@
|
|||
<?php
|
||||
|
||||
namespace Tests\Feature\Notes;
|
||||
|
||||
use Tests\TestCase;
|
||||
|
||||
class CreateNotesTest extends TestCase
|
||||
{
|
||||
public function testRequiresPermission()
|
||||
{
|
||||
$this->markTestIncomplete();
|
||||
}
|
||||
|
||||
public function testValidation()
|
||||
{
|
||||
$this->markTestIncomplete();
|
||||
}
|
||||
|
||||
public function testCanCreateNote()
|
||||
{
|
||||
$this->markTestIncomplete();
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue