File: ver2func.t

package info (click to toggle)
libmath-gsl-perl 0.45-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 192,156 kB
  • sloc: ansic: 895,524; perl: 24,682; makefile: 12
file content (16 lines) | stat: -rw-r--r-- 389 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
use Test::More;
use Config;
use File::Spec::Functions;
use lib 'inc';
use Ver2Func;
use strict;
use warnings;

my $gsl_version = "1.16.1";
my $arch        = $Config{archname};
diag( "Testing Math::GSL with GSL $gsl_version on $arch, Perl ($^X) $]" );

my @subsystems = Ver2Func->new( $gsl_version )->subsystems;
cmp_ok(@subsystems,'==', 51, 'GSL version 1.16.1 supported');

done_testing;