diff options
Diffstat (limited to 't')
-rwxr-xr-x | t/01-compile-pl.t | 7 | ||||
-rwxr-xr-x | t/10-pod.t | 7 |
2 files changed, 14 insertions, 0 deletions
diff --git a/t/01-compile-pl.t b/t/01-compile-pl.t new file mode 100755 index 0000000..92bff6e --- /dev/null +++ b/t/01-compile-pl.t @@ -0,0 +1,7 @@ +#!/usr/bin/env perl +use strict; +use warnings; +use 5.010; +use Test::Compile; + +all_pl_files_ok(); diff --git a/t/10-pod.t b/t/10-pod.t new file mode 100755 index 0000000..a488dfa --- /dev/null +++ b/t/10-pod.t @@ -0,0 +1,7 @@ +#!/usr/bin/env perl +use strict; +use warnings; +use 5.010; +use Test::Pod; + +all_pod_files_ok(); |