/**
  * @return void
  */
 public function testDeleteNonAdminsUnauthorized()
 {
     $this->beginDatabaseTransaction();
     /** @var Model $model */
     $this->assertNotNull($model = Model::first());
     /** @var Response $response */
     $response = $this->callDelete($this->user(), $model->getKey());
     $this->assertEquals(Response::HTTP_FORBIDDEN, $response->getStatusCode());
 }