summaryrefslogtreecommitdiffstats
path: root/t/lib
diff options
context:
space:
mode:
Diffstat (limited to 't/lib')
-rw-r--r--t/lib/Inferred/Bar.pm9
-rw-r--r--t/lib/Inferred/Foo.pm13
2 files changed, 22 insertions, 0 deletions
diff --git a/t/lib/Inferred/Bar.pm b/t/lib/Inferred/Bar.pm
new file mode 100644
index 0000000..9536a04
--- /dev/null
+++ b/t/lib/Inferred/Bar.pm
@@ -0,0 +1,9 @@
+package Inferred::Bar;
+use Moose;
+
+
+
+__PACKAGE__->meta->make_immutable;
+no Moose;
+
+1;
diff --git a/t/lib/Inferred/Foo.pm b/t/lib/Inferred/Foo.pm
new file mode 100644
index 0000000..af60637
--- /dev/null
+++ b/t/lib/Inferred/Foo.pm
@@ -0,0 +1,13 @@
+package Inferred::Foo;
+use Moose;
+
+has bar => (
+ is => 'ro',
+ isa => 'Inferred::Bar',
+ required => 1,
+);
+
+__PACKAGE__->meta->make_immutable;
+no Moose;
+
+1;