From 53617281749f123de4da146e810fd892c1a28dd3 Mon Sep 17 00:00:00 2001 From: Jesse Luehrs Date: Wed, 25 May 2011 19:36:49 -0500 Subject: ensure classes corresponding to class types are loaded otherwise, type inference doesn't work --- t/51-infer-loading.t | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 t/51-infer-loading.t (limited to 't/51-infer-loading.t') diff --git a/t/51-infer-loading.t b/t/51-infer-loading.t new file mode 100644 index 0000000..97e98d3 --- /dev/null +++ b/t/51-infer-loading.t @@ -0,0 +1,31 @@ +#!/usr/bin/env perl +use strict; +use warnings; +use Test::More; +use lib 't/lib'; + +{ + package Foo; + use Moose; + use Bread::Board::Declare; + + has foo => ( + is => 'ro', + isa => 'Inferred::Foo', + infer => 1, + ); + + has bar => ( + is => 'ro', + isa => 'Inferred::Bar', + ); +} + +{ + my $c = Foo->new; + isa_ok($c->foo, 'Inferred::Foo'); + isa_ok($c->foo->bar, 'Inferred::Bar'); + isa_ok($c->bar, 'Inferred::Bar'); +} + +done_testing; -- cgit v1.2.3-54-g00ecf