3
0
mirror of https://github.com/snipe/snipe-it.git synced 2026-02-06 12:15:33 +00:00
Files
snipe-it/tests/Feature/StatusLabels/Ui/UpdateStatusLabelTest.php
2024-12-16 17:45:10 -08:00

18 lines
392 B
PHP

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