use strict;
use warnings;
-use Test::More tests => 20;
+use Test::More;
use Test::Exception;
-
{
package Foo;
use Mouse;
ok( $attr->is_lazy, "it's lazy" );
+ note 'skip Moose specific features';
+ last;
is( $attr->get_raw_value($foo), undef, "raw value" );
is( $attr->get_value($foo), 10, "lazy value" );
is($foo->get_lazy_foo(), 100, '... got the correct value');
}
-
-
+done_testing;