summaryrefslogtreecommitdiffstats
path: root/t/51-infer-loading.t
diff options
context:
space:
mode:
Diffstat (limited to 't/51-infer-loading.t')
-rw-r--r--t/51-infer-loading.t31
1 files changed, 31 insertions, 0 deletions
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;