On Thu Jan 29 14:10:54 2015, ETHER wrote:
Show quoted text> On 2015-01-29 03:43:15, RRWO wrote:
> > Attribute and method aliases created by MooX::Aliases show up
> > remaining imports.
>
> A reproduction case would help. I can add a TODO test to cover this.
package Foo;
use Moo;
use MooX::Aliases;
has bar => (
is => 'ro',
alias => 'baz',
);
use namespace::clean;
package main;
use Test::More;
use Test::CleanNamespaces;
namespaces_clean('Foo');
done_testing;
Show quoted text> However, this should be fixed in MooX::Aliases.