]> git.vpit.fr Git - perl/modules/Variable-Magic.git/blob - t/01-import.t
Importing Variable-Magic-0.04.tar.gz
[perl/modules/Variable-Magic.git] / t / 01-import.t
1 #!perl -T
2
3 use strict;
4 use warnings;
5
6 use Test::More tests => 9;
7
8 require Variable::Magic;
9
10 for (qw/wizard gensig getsig cast getdata dispell SIG_MIN SIG_MAX SIG_NBR/) {
11  eval { Variable::Magic->import($_) };
12  ok(!$@, 'import ' . $_);
13 }