Adding documentation and a testing skeleton to Combination
[Math-GSL.git] / lib / Math / GSL / Block / Test.pm
blobc3f2cc6818de41577030372d37d529e1faa34873
1 package Math::GSL::Block::Test;
2 use base q{Test::Class};
3 use Test::More;
4 use Math::GSL::Block qw/:all/;
5 use Math::GSL qw/is_similar/;
6 use strict;
8 sub make_fixture : Test(setup) {
9 my $self = shift;
12 sub teardown : Test(teardown) {
15 sub GSL_BLOCK_ALLOC : Test {
16 my $self = shift;
17 my $block = gsl_block_alloc(5);
18 isa_ok( $block , 'Math::GSL::Block' );