]> git.vpit.fr Git - perl/modules/Variable-Magic.git/blobdiff - t/01-import.t
Better metasyntactic variable names for t/35-stash.t
[perl/modules/Variable-Magic.git] / t / 01-import.t
index 37dc939d9cfcf4afd7c8321d620715f4c2458a5f..f02df0e122d3c91b0ee46ed36efeb017966c4612 100644 (file)
@@ -1,10 +1,20 @@
 #!perl -T
 
-use Test::More tests => 9;
+use strict;
+use warnings;
+
+use Test::More tests => 21;
 
 require Variable::Magic;
 
-for (qw/wizard gensig getsig cast getdata dispell SIG_MIN SIG_MAX SIG_NBR/) {
+for (qw/wizard gensig getsig cast getdata dispell
+        SIG_MIN SIG_MAX SIG_NBR
+        MGf_COPY MGf_DUP MGf_LOCAL VMG_UVAR
+        VMG_COMPAT_ARRAY_PUSH_NOLEN  VMG_COMPAT_ARRAY_UNSHIFT_NOLEN_VOID
+        VMG_COMPAT_ARRAY_UNDEF_CLEAR VMG_COMPAT_SCALAR_LENGTH_NOLEN
+        VMG_PERL_PATCHLEVEL
+        VMG_THREADSAFE
+        VMG_OP_INFO_NAME VMG_OP_INFO_OBJECT/) {
  eval { Variable::Magic->import($_) };
ok(!$@, 'import ' . $_);
is($@, '', 'import ' . $_);
 }