added failing test case for RT#47744
[gitmo/Mouse.git] / xt / external / lib / Foo.pm
diff --git a/xt/external/lib/Foo.pm b/xt/external/lib/Foo.pm
new file mode 100644 (file)
index 0000000..3fbedeb
--- /dev/null
@@ -0,0 +1,30 @@
+package Foo;
+use Mouse;
+
+has foo => (
+    is => 'ro',
+    isa => 'Str',
+);
+
+has bar => (
+    is => 'ro',
+    isa => 'Str',
+);
+
+no Mouse;
+__PACKAGE__->meta->make_immutable;
+__END__
+
+=head1 NAME
+
+Foo - bar
+
+=head1 ATTRIBUTES
+
+=over 4
+
+=item foo
+
+=back
+
+=cut