Rearrange test files
[gitmo/Mouse.git] / xt / external / lib / Foo.pm
diff --git a/xt/external/lib/Foo.pm b/xt/external/lib/Foo.pm
deleted file mode 100644 (file)
index 0b721df..0000000
+++ /dev/null
@@ -1,42 +0,0 @@
-package Foo;
-use Mouse;
-
-has foo => (
-    is => 'ro',
-    isa => 'Str',
-);
-
-has bar => (
-    is => 'ro',
-    isa => 'Str',
-);
-
-sub baz { }
-sub qux { }
-
-
-no Mouse;
-__PACKAGE__->meta->make_immutable;
-__END__
-
-=head1 NAME
-
-Foo - bar
-
-=head1 ATTRIBUTES
-
-=over 4
-
-=item foo
-
-=back
-
-=head1 METHODS
-
-=over 4
-
-=item baz
-
-=back
-
-=cut