21 lines
413 B
PHP
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();
|
|
}
|
|
}
|