use strict;
use warnings;
-use Test::More tests => 3;
+use lib 't/lib';
+
+use Test::More;
use Test::Exception;
+use MetaTest;
+
+skip_all_meta 3;
{
use strict;
use warnings;
-use Test::More tests => 2;
+use lib 't/lib';
+
+use Test::More;
use Test::Exception;
-;
+use MetaTest;
+
+skip_all_meta 2;
lives_ok {
package MooseX::Attribute::Test;
use strict;
use warnings;
-use Test::More tests => 4;
+use lib 't/lib';
+
+use Test::More;
use Test::Exception;
+use MetaTest;
+
+skip_all_meta 4;
+
=pod
use strict;
use warnings;
-use Test::More tests => 16;
+use lib 't/lib';
+
+use Test::More;
use Test::Exception;
+use MetaTest;
+
+skip_all_meta 16;
+
=pod
use strict;
use warnings;
-use Test::More tests => 7;
+use lib 't/lib';
+
+use Test::More;
use Test::Exception;
+use MetaTest;
+
+skip_all_meta 7;
+
BEGIN {
use strict;
use warnings;
-use Test::More tests => 4;
+use lib 't/lib';
+
+use Test::More;
+
+use MetaTest;
+
+skip_all_meta 4;
use Moose ();
use strict;
use warnings;
+use lib 't/lib';
+
use Test::More;
use Test::Exception;
+
+use MetaTest;
+
BEGIN {
eval "use Test::Output;";
plan skip_all => "Test::Output is required for this test" if $@;
- plan tests => 47;
+ skip_all_meta 47;
}
use lib 't/lib', 'lib';
-use Test::More tests => 32;
+use Test::More;
use Test::Exception;
+use MetaTest;
+
+skip_all_meta 32;
+
{
package My::SimpleTrait;
use strict;
use warnings;
-use Test::More tests => 8;
+use lib 't/lib';
+
+use Test::More;
use Test::Exception;
+use MetaTest;
+
+skip_all_meta 8;
+
# Some packages out in the wild cooperate with Moose by using goto
# &Moose::import. we want to make sure it still works.
use lib 't/lib', 'lib';
-use Test::More tests => 89;
+use Test::More;
use Test::Exception;
use Moose::Util::MetaRole;
+use MetaTest;
+
+skip_all_meta 89;
+
{
package My::Meta::Class;
use strict;
use warnings;
-use Test::More tests => 8;
+use lib 't/lib';
+
+use Test::More;
use Moose::Util::MetaRole;
+use MetaTest;
+
+skip_all_meta 8;
+
BEGIN
{
package My::Meta::Class;
use strict;
use warnings;
-use Test::More tests => 4;
+use lib 't/lib';
+
+use Test::More;
use Test::Exception;
+use MetaTest;
+
+skip_all_meta 4;
+
{
package NoOpTrait;
use Moose::Role;
use strict;
use warnings;
-use Test::More tests => 24;
+use lib 't/lib';
+
+use Test::More;
use Test::Exception;
+use MetaTest;
+
+skip_all_meta 24;
+
{
package Foo;
use strict;
use warnings;
-use Test::More tests => 15;
+use lib 't/lib';
+
+use Test::More;
use Test::Exception;
+use MetaTest;
+
+skip_all_meta 15;
+
{
package HasFoo;
use Moose::Role;
#!/usr/bin/env perl
use strict;
use warnings;
-use Test::More tests => 5;
+
+use lib 't/lib';
+
+use Test::More;
+use Test::Exception;
+
+use MetaTest;
+
+skip_all_meta 5;
{
package My::Trait;
-use lib "t/lib";
+use lib 't/lib';
package MyExporter::User;
use MyExporter;
-use Test::More (tests => 4);
+use Test::More;
use Test::Exception;
+use MetaTest;
+
+skip_all_meta 4;
+
lives_and {
with_prototype {
my $caller = caller(0);
#!/usr/bin/env perl
use strict;
use warnings;
-use Test::More tests => 2;
+
+use lib 't/lib';
+
+use Test::More;
+
+use MetaTest;
+
+skip_all_meta 2;
do {
package My::Meta::Class;