From 5752056086a4cd2d5ad7e226e8379396e8201b4d Mon Sep 17 00:00:00 2001 From: Ed J Date: Sun, 18 Aug 2024 19:53:05 +0100 Subject: [PATCH] add EU:F77 dump test --- MANIFEST | 1 + t/eu-f77-dump.t | 14 ++++++++++++++ 2 files changed, 15 insertions(+) create mode 100644 t/eu-f77-dump.t diff --git a/MANIFEST b/MANIFEST index 7e87d98..2537de3 100644 --- a/MANIFEST +++ b/MANIFEST @@ -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 diff --git a/t/eu-f77-dump.t b/t/eu-f77-dump.t new file mode 100644 index 0000000..e31788d --- /dev/null +++ b/t/eu-f77-dump.t @@ -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;