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
diff --git a/t/lib/Catalyst/Script/CompileTest.pm b/t/lib/Catalyst/Script/CompileTest.pm
new file mode 100644 (file)
index 0000000..df81247
--- /dev/null
@@ -0,0 +1,16 @@
+package Catalyst::Script::CompileTest;
+use Moose;
+use namespace::autoclean;
+
+use Test::More;
+
+with 'Catalyst::ScriptRole';
+
+sub run { __PACKAGE__ }
+
+after new_with_options => sub {
+    my ($self, %args) = @_;
+    is_deeply \%args, { application_name => 'ScriptTestApp' }, 'App name correct';
+};
+
+1;