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
|
use strict;
use warnings;
use Test::More;
{
package Foo;
use Moo::Role;
# if we autoclean here there's nothing left and then load_class tries
# to require Foo during Moose application and everything breaks.
}
{
package Bar;
use Moo::Role;
use namespace::autoclean;
has attr => (
is => 'ro'
);
sub thing {}
}
{
package Baz;
use Moose;
no Moose;
::ok(!__PACKAGE__->can('has'), 'No has function after no Moose;');
Moose::with('Baz', 'Bar');
}
::is(Baz->can('thing'), Bar->can('thing'), 'Role copies method correctly');
::ok(Baz->can('attr'), 'Attr accessor correct');
::ok(!Bar->can('has'), 'Moo::Role sugar removed by autoclean');
::ok(!Bar->can('with'), 'Role::Tiny sugar removed by autoclean');
::ok(!Baz->can('has'), 'Sugar not copied');
{
package Bax;
use Moose;
with qw/
Foo
Bar
/;
}
ok 1;
done_testing;
|