Refactor inclusion of system.i to one place
[Math-GSL.git] / t / BSpline.t
bloba120b20fa73b95b9e0f06c5cb82c1694b2fb0be1
1 package Math::GSL::Poly::Test;
2 use Math::GSL::Test qw/:all/;
3 use base q{Test::Class};
4 use Test::More tests => 1;
5 use Math::GSL qw/:all/;
6 use Math::GSL::BSpline qw/:all/;
7 use Math::GSL::Errno qw/:all/;
8 use Data::Dumper;
9 use strict;
12 sub make_fixture : Test(setup) {
14 sub teardown : Test(teardown) {
17 sub ALLOC : Tests {
18  my $B = gsl_bspline_alloc(2,5);
19  isa_ok($B, 'Math::GSL::BSpline');
22 Test::Class->runtests;