c570f656bf
Signed-off-by: snipe <snipe@snipe.net>
18 lines
390 B
PHP
18 lines
390 B
PHP
<?php
|
|
|
|
namespace Tests\Feature\Maintenances\Ui;
|
|
|
|
use App\Models\Maintenance;
|
|
use App\Models\User;
|
|
use Tests\TestCase;
|
|
|
|
class ShowMaintenanceTest extends TestCase
|
|
{
|
|
public function testPageRenders()
|
|
{
|
|
$this->actingAs(User::factory()->superuser()->create())
|
|
->get(route('maintenances.show', Maintenance::factory()->create()->id))
|
|
->assertOk();
|
|
}
|
|
}
|