Add tests for delete location endpoint
This commit is contained in:
@@ -311,6 +311,11 @@ class UserFactory extends Factory
|
||||
return $this->appendPermission(['categories.delete' => '1']);
|
||||
}
|
||||
|
||||
public function deleteLocations()
|
||||
{
|
||||
return $this->appendPermission(['locations.delete' => '1']);
|
||||
}
|
||||
|
||||
public function canEditOwnLocation()
|
||||
{
|
||||
return $this->appendPermission(['self.edit_location' => '1']);
|
||||
|
||||
@@ -9,7 +9,6 @@ use Tests\TestCase;
|
||||
|
||||
class DeleteLocationsTest extends TestCase
|
||||
{
|
||||
|
||||
public function testErrorReturnedViaApiIfLocationDoesNotExist()
|
||||
{
|
||||
$this->actingAsForApi(User::factory()->superuser()->create())
|
||||
@@ -90,4 +89,15 @@ class DeleteLocationsTest extends TestCase
|
||||
->json();
|
||||
}
|
||||
|
||||
public function testCanDeleteLocation()
|
||||
{
|
||||
$location = Location::factory()->create();
|
||||
|
||||
$this->actingAsForApi(User::factory()->deleteLocations()->create())
|
||||
->deleteJson(route('api.locations.destroy', $location->id))
|
||||
->assertOk()
|
||||
->assertStatusMessageIs('success');
|
||||
|
||||
$this->assertSoftDeleted($location);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user