public function testPullReturnsDefault()
 {
     $c = new Collection([]);
     $value = $c->pull(0, 'foo');
     $this->assertEquals('foo', $value);
 }