/**
  * depends testFindingRecordById
  */
 public function testDeletingRecord()
 {
     $w = new Wiz(['fiz' => 'foo', 'biz' => 'boo']);
     $w->save();
     $this->assertTrue($w->delete());
     $this->assertInstanceOf('Vinelab\\NeoEloquent\\Tests\\Functional\\Wiz', $w);
     $this->assertFalse($w->exists);
 }