diff options
Diffstat (limited to 'test')
-rwxr-xr-x | test/00-compile.t | 8 | ||||
-rwxr-xr-x | test/10-pod-coverage.t | 8 | ||||
-rwxr-xr-x | test/main | 4 |
3 files changed, 16 insertions, 4 deletions
diff --git a/test/00-compile.t b/test/00-compile.t new file mode 100755 index 0000000..10c1984 --- /dev/null +++ b/test/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/efa'); diff --git a/test/10-pod-coverage.t b/test/10-pod-coverage.t new file mode 100755 index 0000000..4c1d5f5 --- /dev/null +++ b/test/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/efa'); diff --git a/test/main b/test/main deleted file mode 100755 index 06ab78b..0000000 --- a/test/main +++ /dev/null @@ -1,4 +0,0 @@ -#!/bin/sh -e - -podchecker -warnings -warnings bin/* -perl -c bin/efa |