/**
  * @test
  */
 public function shouldReturnCountOfRecords()
 {
     //when
     $count = Account::count(array('name' => "LIKE 'Air%'"));
     //then
     $this->assertEquals(2, $count);
 }