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