Document and test what handle_unicode_exception is supposed to return
[catagits/Catalyst-Runtime.git] / t / lib / Catalyst / Script / Bar.pm
CommitLineData
c9105896 1package Catalyst::Script::Bar;
2use Moose;
3use namespace::autoclean;
4
5with 'Catalyst::ScriptRole';
6
7sub run { __PACKAGE__ }
8
91;