clean up skips in test
[catagits/Catalyst-Devel.git] / share / Makefile.PL.tt
index 383fc97..3b8b109 100644 (file)
@@ -1,7 +1,11 @@
 [% startperl %]
 # IMPORTANT: if you delete this file your app will not work as
 # expected.  You have been warned.
-use inc::Module::Install;
+use lib '.';
+use inc::Module::Install 1.02;
+use Module::Install::Catalyst; # Complain loudly if you don't have
+                               # Catalyst::Devel installed or haven't said
+                               # 'make dist' to create a standalone tarball.
 
 name '[% dir %]';
 all_from '[% path %]';
@@ -14,6 +18,7 @@ requires 'Moose';
 requires 'namespace::autoclean';
 requires 'Config::General'; # This should reflect the config file format you've chosen
                  # See Catalyst::Plugin::ConfigLoader for supported formats
+test_requires 'Test::More' => '0.88';
 catalyst;
 
 install_script glob('script/*.pl');