The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
#!/usr/bin/env perl
use strict;
use warnings;
use Test::More tests => 3;
use Test::Fatal;
use Test::Moose;

{
    package Foo;
    use Moose;
    use MooseX::Aliases;

    ::like( ::exception { alias foo => 'bar' }, qr/^Cannot find method bar to alias/,
        "aliasing a non-existent method gives an appropriate error");

    has foo => (
        is    => 'ro',
        isa   => 'Int',
        alias => [qw(bar baz quux)],
    )
}

with_immutable {
    like( exception { Foo->new(bar => 1, baz => 2) },
              qr/^Conflicting init_args: \(bar, baz\)/,
              "conflicting init_args give an appropriate error");
} 'Foo';