]> git.vpit.fr Git - perl/modules/Variable-Magic.git/blobdiff - t/02-constants.t
MGf_COPY and MGf_DUP should always be set for the perls we consider
[perl/modules/Variable-Magic.git] / t / 02-constants.t
diff --git a/t/02-constants.t b/t/02-constants.t
new file mode 100644 (file)
index 0000000..f211897
--- /dev/null
@@ -0,0 +1,11 @@
+#!perl -T
+
+use strict;
+use warnings;
+
+use Test::More tests => 2;
+
+use Variable::Magic qw<MGf_COPY MGf_DUP>;
+
+ok MGf_COPY, 'MGf_COPY is always true';
+ok MGf_DUP,  'MGf_DUP is always true';