public function testDelete()
 {
     $model = m::mock('Illuminate\\Database\\Eloquent\\Model');
     $this->search->shouldReceive('delete')->with($model)->once();
     $this->runner->delete($model);
 }