Adding some tests for gsl_complex_vector function and one fail, in link with the...
[Math-GSL.git] / lib / Math / GSL / BSpline / Test.pm
blobe87657dbc3ec6da86bd9d8a1d4c81f9ed94883a6
1 package Math::GSL::Poly::Test;
2 use base q{Test::Class};
3 use Test::More;
4 use Math::GSL qw/:all/;
5 use Math::GSL::BSpline qw/:all/;
6 use Math::GSL::Errno qw/:all/;
7 use Data::Dumper;
8 use strict;
11 sub make_fixture : Test(setup) {
13 sub teardown : Test(teardown) {
16 sub ALLOC : Tests {
17 my $B = gsl_bspline_alloc(2,5);
18 isa_ok($B, 'Math::GSL::BSpline');
20 42;