[Catalyst-commits] r6772 - trunk/Catalyst-View-Mason/t

rafl at dev.catalyst.perl.org rafl at dev.catalyst.perl.org
Tue Aug 28 16:59:57 GMT 2007


Author: rafl
Date: 2007-08-28 16:59:56 +0100 (Tue, 28 Aug 2007)
New Revision: 6772

Added:
   trunk/Catalyst-View-Mason/t/kwalitee.t
   trunk/Catalyst-View-Mason/t/notabs.t
   trunk/Catalyst-View-Mason/t/strict.t
Log:
Add tests for kwality, tabs and strict.


Added: trunk/Catalyst-View-Mason/t/kwalitee.t
===================================================================
--- trunk/Catalyst-View-Mason/t/kwalitee.t	                        (rev 0)
+++ trunk/Catalyst-View-Mason/t/kwalitee.t	2007-08-28 15:59:56 UTC (rev 6772)
@@ -0,0 +1,9 @@
+#!perl
+
+use strict;
+use warnings;
+use Test::More;
+
+eval "use Test::Kwalitee";
+
+plan skip_all => 'Test::Kwalitee not installed; skipping' if $@;

Added: trunk/Catalyst-View-Mason/t/notabs.t
===================================================================
--- trunk/Catalyst-View-Mason/t/notabs.t	                        (rev 0)
+++ trunk/Catalyst-View-Mason/t/notabs.t	2007-08-28 15:59:56 UTC (rev 6772)
@@ -0,0 +1,10 @@
+#!perl
+
+use strict;
+use warnings;
+use Test::More;
+
+eval "use Test::NoTabs";
+
+plan skip_all => 'Test::NoTabs not installed; skipping' if $@;
+all_perl_files_ok('lib');

Added: trunk/Catalyst-View-Mason/t/strict.t
===================================================================
--- trunk/Catalyst-View-Mason/t/strict.t	                        (rev 0)
+++ trunk/Catalyst-View-Mason/t/strict.t	2007-08-28 15:59:56 UTC (rev 6772)
@@ -0,0 +1,10 @@
+#!perl
+
+use strict;
+use warnings;
+use Test::More;
+
+eval "use Test::Strict";
+
+plan skip_all => 'Test::Strict not installed; skipping' if $@;
+all_perl_files_ok('lib');




More information about the Catalyst-commits mailing list