Files
snipe-it/tests/Feature/Depreciations/Api/DeleteDepreciationsTest.php
2026-03-16 17:40:57 -07:00

45 lines
1.5 KiB
PHP

<?php
namespace Tests\Feature\Depreciations\Api;
use App\Models\Depreciation;
use App\Models\User;
use Tests\Concerns\TestsPermissionsRequirement;
use Tests\TestCase;
class DeleteDepreciationsTest extends TestCase implements TestsPermissionsRequirement
{
public function test_requires_permission()
{
$depreciation = Depreciation::factory()->create();
$this->actingAsForApi(User::factory()->create())
->deleteJson(route('api.depreciations.destroy', $depreciation))
->assertForbidden();
$this->assertDatabaseHas('depreciations', ['id' => $depreciation->id]);
}
public function test_cannot_delete_depreciation_that_has_associated_models()
{
$depreciation = Depreciation::factory()->hasModels()->create();
$this->actingAsForApi(User::factory()->deleteDepreciations()->create())
->deleteJson(route('api.depreciations.destroy', $depreciation))
->assertStatusMessageIs('error');
$this->assertDatabaseHas('depreciations', ['id' => $depreciation->id]);
}
public function test_can_delete_depreciation()
{
$depreciation = Depreciation::factory()->create();
$this->actingAsForApi(User::factory()->deleteDepreciations()->create())
->deleteJson(route('api.depreciations.destroy', $depreciation))
->assertStatusMessageIs('success');
$this->assertDatabaseMissing('depreciations', ['id' => $depreciation->id]);
}
}