diff options
Diffstat (limited to 't')
-rwxr-xr-x | t/00-compile-pm.t (renamed from t/00-compile.t) | 2 | ||||
-rwxr-xr-x | t/01-compile-pl.t | 8 |
2 files changed, 9 insertions, 1 deletions
diff --git a/t/00-compile.t b/t/00-compile-pm.t index 10c1984..2476ab2 100755 --- a/t/00-compile.t +++ b/t/00-compile-pm.t @@ -5,4 +5,4 @@ use 5.010; use Test::More; use Test::Compile; -all_pl_files_ok('bin/efa'); +all_pm_files_ok(); diff --git a/t/01-compile-pl.t b/t/01-compile-pl.t new file mode 100755 index 0000000..f130ac4 --- /dev/null +++ b/t/01-compile-pl.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(); |