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 143
|
use strict;
use warnings;
use Test::More 0.88;
# see moo-with-moose.t
use constant WITH_MOOSE => !!$INC{'Moose.pm'};
use Test::Needs 'Moo', 'Moo::Role';
plan skip_all => 'this combination of Moo/Sub::Util is unstable'
if Moo->VERSION >= 2 and not eval { Moo->VERSION('2.000002') }
and $INC{"Sub/Util.pm"} and not defined &Sub::Util::set_subname;
my $buzz; BEGIN { $buzz = sub {}; }
my $welp; BEGIN { $welp = sub {}; }
BEGIN {
package Some::Class;
use Carp qw(cluck);
use File::Basename qw(fileparse);
use Moo;
use namespace::autoclean;
sub bar { }
BEGIN { *guff = sub {} }
BEGIN { *welp = $welp }
use constant CAT => 'kitten';
BEGIN { our $DOG = 'puppy' }
use constant DOG => 'puppy';
}
ok defined &Some::Class::bar,
'Some::Class::bar created normally';
ok defined &Some::Class::guff,
'Some::Class::guff added via glob assignment';
{
local $TODO = 'not working if Moose loaded'
if WITH_MOOSE;
ok !defined &Some::Class::welp,
'Some::Class::welp foreign added via glob assignment was cleaned';
}
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 Moo::Role;
use namespace::autoclean;
sub bar { }
BEGIN { *guff = sub {} }
BEGIN { *welp = $welp }
use constant CAT => 'kitten';
BEGIN { our $DOG = 'puppy' }
use constant DOG => 'puppy';
}
{
local $TODO = "Moo::Role's meta not seen as method";
ok defined &Some::Role::meta,
'Some::Role::meta created by Moo::Role';
}
ok defined &Some::Role::bar,
'Some::Role::bar created normally';
ok defined &Some::Role::guff,
'Some::Role::guff added via glob assignment';
{
local $TODO = 'not working if Moose loaded';
ok !defined &Some::Role::welp,
'Some::Role::welp foreign added via glob assignment was cleaned';
}
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 Moo;
use namespace::autoclean;
with 'Some::Role';
}
ok defined &Consuming::Class::bar,
'Consuming::Class::bar created normally';
ok defined &Consuming::Class::guff,
'Consuming::Class::guff added via glob assignment';
{
local $TODO = 'not working if Moose loaded'
if WITH_MOOSE;
ok !defined &Consuming::Class::welp,
'Consuming::Class::welp foreign added via glob assignment was cleaned';
}
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 Moo;
use namespace::autoclean;
BEGIN { with 'Some::Role' };
}
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';
{
local $TODO = 'not working if Moose loaded'
if WITH_MOOSE;
ok !defined &Consuming::Class::InBegin::welp,
'Consuming::Class::InBegin::welp foreign added via glob assignment was cleaned';
}
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';
if (!WITH_MOOSE) {
is $INC{'Class/MOP/Class.pm'}, undef, 'Class::MOP not loaded';
}
done_testing;
|