summaryrefslogtreecommitdiffstats
path: root/t/lib/MyUTF8App/Controller/Root.pm
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2013-10-29 11:52:16 -0400
committerJesse Luehrs <doy@tozt.net>2013-10-29 11:52:16 -0400
commitab2267eb083a301e120d6912e64b40eebf82666c (patch)
tree39647034a696246115888465f2017e847fb1a5bc /t/lib/MyUTF8App/Controller/Root.pm
parent97305c7459993e61192b64628b601635a85dd9fc (diff)
downloadcatalyst-view-spreadsheet-template-ab2267eb083a301e120d6912e64b40eebf82666c.tar.gz
catalyst-view-spreadsheet-template-ab2267eb083a301e120d6912e64b40eebf82666c.zip
decode template files as utf8
Diffstat (limited to 't/lib/MyUTF8App/Controller/Root.pm')
-rw-r--r--t/lib/MyUTF8App/Controller/Root.pm15
1 files changed, 15 insertions, 0 deletions
diff --git a/t/lib/MyUTF8App/Controller/Root.pm b/t/lib/MyUTF8App/Controller/Root.pm
new file mode 100644
index 0000000..c848f06
--- /dev/null
+++ b/t/lib/MyUTF8App/Controller/Root.pm
@@ -0,0 +1,15 @@
+package MyUTF8App::Controller::Root;
+use Moose;
+use namespace::autoclean;
+
+BEGIN { extends 'Catalyst::Controller' }
+
+__PACKAGE__->config(namespace => '');
+
+sub index :Path :Args(0) {}
+
+sub end : ActionClass('RenderView') {}
+
+__PACKAGE__->meta->make_immutable;
+
+1;