mirror of
https://github.com/snipe/snipe-it.git
synced 2025-02-02 08:21:09 -08:00
22 lines
413 B
PHP
22 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();
|
||
|
}
|
||
|
}
|