Add some # of tests and todo-ify FFT test
[Math-GSL.git] / t / VectorComplex.t
blob4c5aeb5e69bca56218657b539ab5d52cc61efbc1
1 package Math::GSL::VectorComplex::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::VectorComplex qw/:all/;
7 use Math::GSL::Complex       qw/:all/;
8 use Math::GSL::Errno         qw/:all/;
9 use Data::Dumper;
10 use Test::Exception;
11 use strict;
13 BEGIN{ gsl_set_error_handler_off(); }
15 sub make_fixture : Test(setup) {
16     my $self = shift;
19 sub teardown : Test(teardown) {
20     unlink 'vector' if -f 'vectorcomplex';
23 sub GSL_VECTOR_COMPLEX : Tests {
24     local $TODO = 'make it work, fool';
25     ok(0);
27 Test::Class->runtests;