diff options
Diffstat (limited to 't')
-rwxr-xr-x | t/00-compile.t | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/t/00-compile.t b/t/00-compile.t index 31e3f3e..e430701 100755 --- a/t/00-compile.t +++ b/t/00-compile.t @@ -5,4 +5,6 @@ use 5.010; use Test::More; use Test::Compile; -all_pl_files_ok('bin/icli'); +my $test = Test::Compile->new(); +$test->all_files_ok('bin/icli'); +$test->done_testing(); |