snipe_it/tests/Feature/ReportTemplates/DeleteReportTemplateTest.php
2024-01-17 13:19:54 -08:00

21 lines
413 B
PHP

<?php
namespace Feature\ReportTemplates;
use Tests\Support\InteractsWithSettings;
use Tests\TestCase;
class DeleteReportTemplateTest extends TestCase
{
use InteractsWithSettings;
public function testDeletingReportTemplateRequiresCorrectPermission()
{
$this->markTestIncomplete();
}
public function testCanDeleteAReportTemplate()
{
$this->markTestIncomplete();
}
}