function it_should_skip_defaults_when_requested()
 {
     $this->get('baz')->shouldReturn(3);
     Transformer::preferNullValues();
     $this->get('baz')->shouldReturn(null);
     $this->all()->shouldEqual(['foo' => -1, 'bar' => 2, 'baz' => null]);
     Transformer::preferNullValues(false);
     $this->get('baz')->shouldReturn(3);
     $this->all()->shouldEqual(['foo' => -1, 'bar' => 2, 'baz' => 3]);
 }