added kwalitee test
Brandon Black [Sat, 4 Mar 2006 16:21:33 +0000 (16:21 +0000)]
MANIFEST
lib/DBIx/Class/Schema/Loader/Writing.pm
t/04kwalitee.t [new file with mode: 0644]

index 763f6f5..4c167c0 100644 (file)
--- a/MANIFEST
+++ b/MANIFEST
@@ -14,6 +14,7 @@ README
 t/01use.t
 t/02pod.t
 t/03podcoverage.t
+t/04kwalitee.t
 t/10sqlite_common.t
 t/11mysql_common.t
 t/12pg_common.t
index 0036db4..7ea1e53 100644 (file)
@@ -1,4 +1,5 @@
 package DBIx::Class::Schema::Loader::Writing;
+use strict;
 
 # Empty. POD only.
 
diff --git a/t/04kwalitee.t b/t/04kwalitee.t
new file mode 100644 (file)
index 0000000..7576615
--- /dev/null
@@ -0,0 +1,5 @@
+use Test::More;
+
+eval { require Test::Kwalitee; Test::Kwalitee->import() };
+
+plan( skip_all => 'Test::Kwalitee not installed; skipping' ) if $@;