#!/usr/bin/perl
# This is automatically generated by author/import-moose-test.pl.
# DO NOT EDIT THIS FILE. ANY CHANGES WILL BE LOST!!!
use lib "t/lib";
use MooseCompat;
use strict;
use warnings;
use Test::More;
use Test::Exception;
{
package Baz;
use Mouse;
use Mouse::Util::TypeConstraints;
coerce 'Baz' => from 'HashRef' => via { Baz->new($_) };
has 'hello' => (
is => 'ro',
isa => 'Str',
);
package Bar;
use Mouse;
use Mouse::Util::TypeConstraints;
coerce 'Bar' => from 'HashRef' => via { Bar->new($_) };
has 'baz' => (
is => 'ro',
isa => 'Baz',
coerce => 1
);
package Foo;
use Mouse;
has 'bar' => (
is => 'ro',
isa => 'Bar',
coerce => 1,
);
}
my $foo = Foo->new(bar => { baz => { hello => 'World' } });
isa_ok($foo, 'Foo');
isa_ok($foo->bar, 'Bar');
isa_ok($foo->bar->baz, 'Baz');
is($foo->bar->baz->hello, 'World', '... this all worked fine');
done_testing;