3
0
mirror of https://github.com/snipe/snipe-it.git synced 2026-02-06 07:55:41 +00:00
Files
snipe-it/tests/Feature/StatusLabels/Ui/ShowStatusLabelTest.php
2025-02-19 05:03:56 +00:00

18 lines
386 B
PHP

<?php
namespace Tests\Feature\StatusLabels\Ui;
use App\Models\Statuslabel;
use App\Models\User;
use Tests\TestCase;
class ShowStatusLabelTest extends TestCase
{
public function testPageRenders()
{
$this->actingAs(User::factory()->superuser()->create())
->get(route('statuslabels.show', Statuslabel::factory()->create()))
->assertOk();
}
}