create(); $this->actingAsForApi(User::factory()->create()) ->deleteJson(route('api.categories.destroy', $category)) ->assertForbidden(); } public function testCanDeleteCategory() { $category = Category::factory()->create(); $this->actingAsForApi(User::factory()->deleteCategories()->create()) ->deleteJson(route('api.categories.destroy', $category)) ->assertStatusMessageIs('success'); $this->assertSoftDeleted($category); } public function testCannotDeleteCategoryThatStillHasAssociatedItems() { $asset = Asset::factory()->create(); $category = $asset->model->category; $this->actingAsForApi(User::factory()->deleteCategories()->create()) ->deleteJson(route('api.categories.destroy', $category)) ->assertStatusMessageIs('error'); $this->assertNotSoftDeleted($category); } }