Skip to content

Commit

Permalink
add EU:F77 dump test
Browse files Browse the repository at this point in the history
  • Loading branch information
mohawk2 committed Aug 18, 2024
1 parent 1591abb commit 5752056
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 0 deletions.
1 change: 1 addition & 0 deletions MANIFEST
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,7 @@ pgfun.c
PGPLOT.xs
README
t/00-report-prereqs.t
t/eu-f77-dump.t
t/lut.t
t/pdl-graphics.t
t/t1.t
Expand Down
14 changes: 14 additions & 0 deletions t/eu-f77-dump.t
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
use strict;
use warnings;
use Test::More;
use ExtUtils::F77;

pass "ok";

my $mod = 'ExtUtils::F77';

is $mod->testcompiler, 1, 'testcompiler method returns 1';
is $mod->runtimeok, 1, 'runtime libs found';
diag "Method: $_, ", explain $mod->$_ for qw(runtime trail_ compiler cflags);

done_testing;

0 comments on commit 5752056

Please # to comment.