예제 #1
0
 /**
  * @test
  */
 public function itShouldAccumulateInConditions()
 {
     $column = 'user_id';
     $result = $this->where->in($column, array(1, 2, 3))->getIns();
     $expected = array($column => array(1, 2, 3));
     $this->assertEquals($expected, $result);
 }