mirror of
https://github.com/snipe/snipe-it.git
synced 2026-04-05 15:28:30 +00:00
18 lines
362 B
PHP
18 lines
362 B
PHP
<?php
|
|
|
|
namespace Tests\Feature\Groups\Ui;
|
|
|
|
use App\Models\Group;
|
|
use App\Models\User;
|
|
use Tests\TestCase;
|
|
|
|
class ShowGroupTest extends TestCase
|
|
{
|
|
public function test_page_renders()
|
|
{
|
|
$this->actingAs(User::factory()->superuser()->create())
|
|
->get(route('groups.show', Group::factory()->create()->id))
|
|
->assertOk();
|
|
}
|
|
}
|