/**
  * @test
  */
 function it_can_apply_and_remove_scopes_and_uses_any_set_scopes_on_queries()
 {
     // add a scope that will limit the result to 1 record
     // the Supplier model has a test-scope especially for this
     $this->repository->addScope('moreTesting', [self::UNIQUE_FIELD, '1337']);
     $this->assertEquals(1, $this->repository->count(), "Wrong result count after setting scope");
     $this->assertCount(1, $this->repository->all());
     // remove scope by name and check count
     $this->repository->removeScope('moreTesting');
     $this->assertEquals(2, $this->repository->count(), "Wrong result count after removing scope by name");
     // set single result scope again, see if it still works
     $this->repository->addScope('moreTesting', [self::UNIQUE_FIELD, '1337']);
     $this->assertEquals(1, $this->repository->count());
     // clear all scopes and check total again
     $this->repository->clearScopes();
     $this->assertEquals(2, $this->repository->count(), "Wrong result count after clearing all scopes");
 }
 /**
  * Override
  *
  * @param array $columns
  * @return mixed
  */
 public function all($columns = ['*'])
 {
     return $this->postProcess(parent::all($columns));
 }