Example #1
0
 /** @test */
 public function it_can_return_the_first_item_from_the_collection()
 {
     $collection = new Collection(['foo' => 'Foo', 'bar' => 'Bar']);
     $this->assertEquals('Foo', $collection->first());
 }