summaryrefslogtreecommitdiffstats
path: root/t/data
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2011-06-22 12:02:03 -0500
committerJesse Luehrs <doy@tozt.net>2011-06-22 12:02:03 -0500
commit3669b3d498f2f6224b8dc8cdc8cfcca1c0165611 (patch)
treebc877d68dde1228eecd2978f6992d95ade4d4c71 /t/data
parent51cc7663854af4760274c378c339e16a8eff65ab (diff)
downloadplack-middleware-class-refresh-3669b3d498f2f6224b8dc8cdc8cfcca1c0165611.tar.gz
plack-middleware-class-refresh-3669b3d498f2f6224b8dc8cdc8cfcca1c0165611.zip
initial implementation
Diffstat (limited to 't/data')
-rw-r--r--t/data/basic/Baz/Quux.pm7
-rw-r--r--t/data/basic/Foo.pm7
-rw-r--r--t/data/basic/Foo/Bar.pm7
3 files changed, 21 insertions, 0 deletions
diff --git a/t/data/basic/Baz/Quux.pm b/t/data/basic/Baz/Quux.pm
new file mode 100644
index 0000000..14a0581
--- /dev/null
+++ b/t/data/basic/Baz/Quux.pm
@@ -0,0 +1,7 @@
+package Baz::Quux;
+use strict;
+use warnings;
+
+sub call { __PACKAGE__ }
+
+1;
diff --git a/t/data/basic/Foo.pm b/t/data/basic/Foo.pm
new file mode 100644
index 0000000..b817f30
--- /dev/null
+++ b/t/data/basic/Foo.pm
@@ -0,0 +1,7 @@
+package Foo;
+use strict;
+use warnings;
+
+sub call { __PACKAGE__ }
+
+1;
diff --git a/t/data/basic/Foo/Bar.pm b/t/data/basic/Foo/Bar.pm
new file mode 100644
index 0000000..1fab089
--- /dev/null
+++ b/t/data/basic/Foo/Bar.pm
@@ -0,0 +1,7 @@
+package Foo::Bar;
+use strict;
+use warnings;
+
+sub call { __PACKAGE__ }
+
+1;