Return true from the tests so that I can require them
[catagits/Catalyst-Devel.git] / share / t / 01app.t.tt
index eb4e09a..7a14cbb 100644 (file)
@@ -1,8 +1,11 @@
 [% startperl %]
 use strict;
 use warnings;
-use Test::More tests => 2;
+use Test::More;
 
 BEGIN { use_ok 'Catalyst::Test', '[% name %]' }
 
 ok( request('/')->is_success, 'Request should succeed' );
+
+done_testing();
+1;