Scaffold tests

This commit is contained in:
Marcus Moore 2025-02-18 16:16:00 -08:00
parent 1995e1399e
commit 3d69721af0
No known key found for this signature in database

View 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();
}
}