projects
/
gitmo/Class-C3-XS.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
(parent:
437de02
)
move pod test to xt
Graham Knop [Tue, 19 Apr 2016 12:14:06 +0000 (08:14 -0400)]
Makefile.PL
patch
|
blob
|
blame
|
history
t/pod.t
[deleted file]
patch
|
blob
|
blame
|
history
xt/pod.t
[new file with mode: 0644]
patch
|
blob
diff --git
a/Makefile.PL
b/Makefile.PL
index
2f1105b
..
98be8df
100644
(file)
--- a/
Makefile.PL
+++ b/
Makefile.PL
@@
-19,6
+19,11
@@
my %META = (
'perl' => 5.006,
},
},
+ develop => {
+ requires => {
+ 'Test::Pod' => 1.14,
+ },
+ },
},
resources => {
repository => {
diff --git
a/t/pod.t
b/t/pod.t
deleted file mode 100644
(file)
index
4ae1af3
..0000000
--- a/
t/pod.t
+++ /dev/null
@@
-1,11
+0,0 @@
-#!/usr/bin/perl
-
-use strict;
-use warnings;
-
-use Test::More;
-
-eval "use Test::Pod 1.14";
-plan skip_all => "Test::Pod 1.14 required for testing POD" if $@;
-
-all_pod_files_ok();
diff --git a/xt/pod.t
b/xt/pod.t
new file mode 100644
(file)
index 0000000..
2eb7dc2
--- /dev/null
+++ b/
xt/pod.t
@@ -0,0
+1,8
@@
+use strict;
+use warnings;
+
+use Test::More;
+
+use Test::Pod 1.14;
+
+all_pod_files_ok();