예제 #1
0
 /** @test */
 public function should_prepend_the_collection()
 {
     $this->collection->prepend('Abe');
     $this->assertEquals(6, $this->collection->count());
     $this->assertEquals('Abe', $this->collection->get(0));
 }