Finish pod separation and add stub tests for remaining subsystems
[Math-GSL.git] / t / Wavelet2D.t
blobc0366a07e2eb0ac0dac3d137ee4aa1befff28be7
1 package Math::GSL::Wavelet2D::Test;
2 use base q{Test::Class};
3 use Test::More;
4 use Math::GSL           qw/:all/;
5 use Math::GSL::Wavelet2D qw/:all/;
6 use Math::GSL::Test     qw/:all/;
7 use Math::GSL::Errno    qw/:all/;
8 use Data::Dumper;
9 use strict;
11 BEGIN { gsl_set_error_handler_off(); }
13 sub make_fixture : Test(setup) {
16 sub teardown : Test(teardown) {
19 sub GSL_WAVELET2D : Tests {
20     ok(1);
23 Test::Class->runtests;