diff options
author | Evan Giles <egiles@cpan.org> | 2019-07-01 08:25:46 +1200 |
---|---|---|
committer | Evan Giles <evan@catalyst.net.nz> | 2019-07-01 17:09:31 +1200 |
commit | b6692177144c213f5efeb79355569a64407e8f14 (patch) | |
tree | 6f7bf460a074ad866b33894407629fb542e85fba /t | |
parent | 4f3532a532af5c7888f79b4f68f987b7a7de417a (diff) |
Update t/00-compile.t to use OO interface
...because the functional interface is deprecated.
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 0b0ce37..8e594a8 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/hashl'); +my $test = Test::Compile->new(); +$test->all_files_ok('bin/hashl'); +$test->done_testing(); |