summaryrefslogtreecommitdiffstats
path: root/t/data/01/before/Foo.pm
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2011-04-05 20:57:36 -0500
committerJesse Luehrs <doy@tozt.net>2011-04-05 20:57:36 -0500
commitafab14beccad1c7d6cbbfe8ac4db893c96fab70a (patch)
treef6025f00e740be6c2a13ee03b12d4b10b75e564a /t/data/01/before/Foo.pm
parent3c2f699f502bd4c55847078261eaee032a8e90ce (diff)
downloadclass-refresh-afab14beccad1c7d6cbbfe8ac4db893c96fab70a.tar.gz
class-refresh-afab14beccad1c7d6cbbfe8ac4db893c96fab70a.zip
initial implementation
Diffstat (limited to 't/data/01/before/Foo.pm')
-rw-r--r--t/data/01/before/Foo.pm10
1 files changed, 10 insertions, 0 deletions
diff --git a/t/data/01/before/Foo.pm b/t/data/01/before/Foo.pm
new file mode 100644
index 0000000..a63046a
--- /dev/null
+++ b/t/data/01/before/Foo.pm
@@ -0,0 +1,10 @@
+package Foo;
+use Moose;
+
+has foo => (is => 'ro');
+
+sub meth { }
+
+no Moose;
+
+1;