Merge branch 'master' into bleed
[Math-GSL.git] / t / Function.t
blobf5e489ff4fae24869893d623ef315824b46211f4
1 use Test::More tests => 2;
2 use Math::GSL::Function qw/gsl_max gsl_min/;
3 use strict;
5 ok( gsl_max(3,4)==4, 'gsl_max' );
6 ok( gsl_min(4,3)==3, 'gsl_min' );