Initial support for the Matrix subsystem.
[Math-GSL.git] / lib / Math / GSL / Matrix / Test.pm
blob9e84eb6dadff680cd9268d5df0d59f3b1e1e3a0a
1 package Math::GSL::Matrix::Test;
2 use base q{Test::Class};
3 use Test::More;
4 use Math::GSL::Matrix qw/:all/;
5 use Math::GSL qw/is_similar/;
6 use strict;
8 sub make_fixture : Test(setup) {
11 sub teardown : Test(teardown) {
14 sub GSL_MATRIX_ALLOC : Test {
15 my $matrix = gsl_matrix_alloc(5,5);
16 isa_ok($matrix, 'Math::GSL::Matrix');