snipe-it/tests/Feature/ReportTemplates/DeleteReportTemplateTest.php

22 lines
413 B
PHP
Raw Normal View History

2024-01-17 13:19:54 -08:00
<?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();
}
}