diff options
Diffstat (limited to 't')
-rwxr-xr-x | t/00-compile.t | 8 | ||||
-rwxr-xr-x | t/10-pod-coverage.t | 8 |
2 files changed, 16 insertions, 0 deletions
diff --git a/t/00-compile.t b/t/00-compile.t new file mode 100755 index 0000000..31e3f3e --- /dev/null +++ b/t/00-compile.t @@ -0,0 +1,8 @@ +#!/usr/bin/env perl +use strict; +use warnings; +use 5.010; +use Test::More; +use Test::Compile; + +all_pl_files_ok('bin/icli'); diff --git a/t/10-pod-coverage.t b/t/10-pod-coverage.t new file mode 100755 index 0000000..1b2bbc0 --- /dev/null +++ b/t/10-pod-coverage.t @@ -0,0 +1,8 @@ +#!/usr/bin/env perl +use strict; +use warnings; +use 5.010; +use Test::More; +use Test::Pod; + +all_pod_files_ok('bin/icli'); |