Exemplo n.º 1
0
 public function testOffsetScope()
 {
     //sqlite cannot do offset without limit
     $a = Title::limit(100)->get();
     $b = Title::limit(100)->offset(1)->get();
     $this->assertEquals($a->count() - 1, $b->count());
 }