6 ':', ($ENV{PERL5LIB} ? $ENV{PERL5LIB} : ()), qw(lib t/lib)
15 my $proxy = ORTestTransfer->new::on('-', value => \$strA);
16 is_deeply $proxy->value, \$strA, 'correct value after construction';
17 }, undef, 'no errors during construction';
20 my $proxy = ORTestTransfer->new::on('-');
21 $proxy->value(\$strB);
22 is_deeply $proxy->value, \$strB, 'correct value after construction';
23 }, undef, 'no errors during attribute set';