Example #1
0
 public function testWhereNotNull()
 {
     $alpha = User::whereNotNull('alias')->get();
     $crocodile = new \Illuminate\Database\Eloquent\Collection(array($this->ab, $this->cd, $this->ef, $this->gh, $this->ij));
     $this->assertEquals($alpha, $crocodile);
 }