Adding the files you need for the tests you've committed helps them pass, idiot :)
[catagits/Catalyst-Runtime.git] / t / lib / Catalyst / Script / CompileTest.pm
CommitLineData
f264b24a 1package Catalyst::Script::CompileTest;
2use Moose;
3use namespace::autoclean;
4
5use Test::More;
6
7with 'Catalyst::ScriptRole';
8
9sub run { __PACKAGE__ }
10
11after new_with_options => sub {
12 my ($self, %args) = @_;
13 is_deeply \%args, { application_name => 'ScriptTestApp' }, 'App name correct';
14};
15
161;