projects
/
dbsrgits/DBIx-Class-Schema-Loader.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
(from parent 1:
b71790b
)
added kwalitee test
Brandon Black [Sat, 4 Mar 2006 16:21:33 +0000 (16:21 +0000)]
MANIFEST
patch
|
blob
|
blame
|
history
lib/DBIx/Class/Schema/Loader/Writing.pm
patch
|
blob
|
blame
|
history
t/04kwalitee.t
[new file with mode: 0644]
patch
|
blob
diff --git
a/MANIFEST
b/MANIFEST
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
diff --git
a/lib/DBIx/Class/Schema/Loader/Writing.pm
b/lib/DBIx/Class/Schema/Loader/Writing.pm
index
0036db4
..
7ea1e53
100644
(file)
--- a/
lib/DBIx/Class/Schema/Loader/Writing.pm
+++ b/
lib/DBIx/Class/Schema/Loader/Writing.pm
@@
-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
+++ b/
t/04kwalitee.t
@@ -0,0
+1,5
@@
+use Test::More;
+
+eval { require Test::Kwalitee; Test::Kwalitee->import() };
+
+plan( skip_all => 'Test::Kwalitee not installed; skipping' ) if $@;