Move tests out of lib/Math/GSL/*/Test.pm into t/*.t directly
[Math-GSL.git] / t / BSpline.t
blob7df38303c04f3cf872d78259342520e21ff8fe26
1 package Math::GSL::Poly::Test;
2 use Math::GSL::Test qw/:all/;
3 use base q{Test::Class};
4 use Test::More;
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;