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
1 package Catalyst::Script::CompileTest;
2 use Moose;
3 use namespace::autoclean;
4
5 use Test::More;
6
7 with 'Catalyst::ScriptRole';
8
9 sub run { __PACKAGE__ }
10
11 after new_with_options => sub {
12     my ($self, %args) = @_;
13     is_deeply \%args, { application_name => 'ScriptTestApp' }, 'App name correct';
14 };
15
16 1;