1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142
|
use strict;
use warnings;
use Test::More 0.88;
use Test::Needs {
'Moose' => 0.56,
};
my $buzz; BEGIN { $buzz = sub {}; }
my $welp; BEGIN { $welp = sub {}; }
BEGIN {
package Some::Class;
use Carp qw(cluck);
use File::Basename qw(fileparse);
use Moose;
use namespace::autoclean;
sub bar { }
BEGIN { *guff = sub {} }
BEGIN { *welp = $welp }
BEGIN { __PACKAGE__->meta->add_method(baz => sub { }); }
BEGIN { __PACKAGE__->meta->add_method(buzz => $buzz); }
use constant CAT => 'kitten';
BEGIN { our $DOG = 'puppy' }
use constant DOG => 'puppy';
}
ok defined &Some::Class::meta,
'Some::Class::meta created by Moose';
ok defined &Some::Class::bar,
'Some::Class::bar created normally';
ok defined &Some::Class::guff,
'Some::Class::guff added via glob assignment';
ok !defined &Some::Class::welp,
'Some::Class::welp foreign added via glob assignment was cleaned';
ok defined &Some::Class::baz,
'Some::Class::baz added via meta->add_method';
ok defined &Some::Class::buzz,
'Some::Class::buzz foreign added via meta->add_method';
ok !defined &Some::Class::cluck,
'Some::Class::cluck imported sub was cleaned';
ok !defined &Some::Class::fileparse,
'Some::Class::fileparse imported sub was cleaned';
ok defined &Some::Class::CAT,
'Some::Class::CAT constant';
ok defined &Some::Class::DOG,
'Some::Class::DOG constant with other glob entry';
BEGIN {
package Some::Role;
use Carp qw(cluck);
use File::Basename qw(fileparse);
use Moose::Role;
use namespace::autoclean;
sub bar { }
BEGIN { *guff = sub {} }
BEGIN { *welp = $welp }
BEGIN { __PACKAGE__->meta->add_method(baz => sub { }); }
BEGIN { __PACKAGE__->meta->add_method(buzz => $buzz); }
use constant CAT => 'kitten';
BEGIN { our $DOG = 'puppy' }
use constant DOG => 'puppy';
}
ok defined &Some::Role::meta,
'Some::Role::meta created by Moose::Role';
ok defined &Some::Role::bar,
'Some::Role::bar created normally';
ok defined &Some::Role::guff,
'Some::Role::guff added via glob assignment';
ok !defined &Some::Role::welp,
'Some::Role::welp foreign added via glob assignment was cleaned';
ok defined &Some::Role::baz,
'Some::Role::baz added via meta->add_method';
ok defined &Some::Role::buzz,
'Some::Role::buzz foreign added via meta->add_method';
ok !defined &Some::Role::cluck,
'Some::Role::cluck imported sub was cleaned';
ok !defined &Some::Role::fileparse,
'Some::Role::fileparse imported sub was cleaned';
ok defined &Some::Role::CAT,
'Some::Role::CAT constant';
ok defined &Some::Role::DOG,
'Some::Role::DOG constant with other glob entry';
BEGIN {
package Consuming::Class;
use Moose;
use namespace::autoclean;
with 'Some::Role';
}
ok defined &Consuming::Class::meta,
'Consuming::Class::meta created by Moose';
ok defined &Consuming::Class::bar,
'Consuming::Class::bar created normally';
ok defined &Consuming::Class::guff,
'Consuming::Class::guff added via glob assignment';
ok !defined &Consuming::Class::welp,
'Consuming::Class::welp foreign added via glob assignment was cleaned';
ok defined &Consuming::Class::baz,
'Consuming::Class::baz added via meta->add_method';
ok defined &Consuming::Class::buzz,
'Consuming::Class::buzz foreign added via meta->add_method';
ok !defined &Consuming::Class::cluck,
'Consuming::Class::cluck imported sub was cleaned';
ok !defined &Consuming::Class::fileparse,
'Consuming::Class::fileparse imported sub was cleaned';
ok defined &Consuming::Class::CAT,
'Consuming::Class::CAT constant';
ok defined &Consuming::Class::DOG,
'Consuming::Class::DOG constant with other glob entry';
BEGIN {
package Consuming::Class::InBegin;
use Moose;
use namespace::autoclean;
BEGIN { with 'Some::Role' };
}
ok defined &Consuming::Class::InBegin::meta,
'Consuming::Class::InBegin::meta created by Moose';
ok defined &Consuming::Class::InBegin::bar,
'Consuming::Class::InBegin::bar created normally';
ok defined &Consuming::Class::InBegin::guff,
'Consuming::Class::InBegin::guff added via glob assignment';
ok !defined &Consuming::Class::InBegin::welp,
'Consuming::Class::InBegin::welp foreign added via glob assignment was cleaned';
ok defined &Consuming::Class::InBegin::baz,
'Consuming::Class::InBegin::baz added via meta->add_method';
ok defined &Consuming::Class::InBegin::buzz,
'Consuming::Class::InBegin::buzz foreign added via meta->add_method';
ok !defined &Consuming::Class::InBegin::cluck,
'Consuming::Class::InBegin::cluck imported sub was cleaned';
ok !defined &Consuming::Class::InBegin::fileparse,
'Consuming::Class::InBegin::fileparse imported sub was cleaned';
ok defined &Consuming::Class::InBegin::CAT,
'Consuming::Class::InBegin::CAT constant';
ok defined &Consuming::Class::InBegin::DOG,
'Consuming::Class::InBegin::DOG constant with other glob entry';
done_testing;
|