snipe-it/tests/Feature/Depreciations/Ui/UpdateDepreciationTest.php
2024-12-16 17:45:10 -08:00

18 lines
397 B
PHP

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