{{$NEXT}}
- fixed reference to writable git repository
- pod coverage tests added
+ - warnings tests bypassed during installation
0.18 2012-10-13 16:57:07 PDT-0700 (Karen Etheridge)
- added missing prerequisite declaration
use strict;
use warnings;
-use Test::More tests => 16;
+use Test::More;
use Test::Fatal;
-use Test::NoWarnings 1.04 ':early';
+use if $ENV{AUTHOR_TESTING}, 'Test::Warnings';
{
package MyClass;
undef,
'set untyped class attribute',
);
+
+done_testing;
}
use Test::Fatal;
-use Test::NoWarnings 1.04 ':early';
-plan tests => 4;
+use if $ENV{AUTHOR_TESTING}, 'Test::Warnings';
ok( (my $instance = MyClass->new), 'instance' );
}, undef, 'method called with coerced and uncoerced parameters' )
or todo_skip 'is() test never ran', 1;
}
+
+done_testing;
use strict;
use warnings;
-use Test::More tests => 16;
+use Test::More;
use Test::Fatal;
-use Test::NoWarnings 1.04 ':early';
+use if $ENV{AUTHOR_TESTING}, 'Test::Warnings';
{
package MyRole;
$instance->untyped_class_attr(10);
is $instance->untyped_class_attr, 10;
}, undef, 'set untyped class attribute' );
+
+done_testing;
};
plan tests => 12;
-use Test::NoWarnings 1.04 ':early';
+use if $ENV{AUTHOR_TESTING}, 'Test::Warnings';
eval <<'EOF';
package Role;