]> git.vpit.fr Git - perl/modules/Variable-Magic.git/blob - t/02-constants.t
This is 0.64
[perl/modules/Variable-Magic.git] / t / 02-constants.t
1 #!perl -T
2
3 use strict;
4 use warnings;
5
6 use Test::More tests => 2;
7
8 use Variable::Magic qw<MGf_COPY MGf_DUP>;
9
10 ok MGf_COPY, 'MGf_COPY is always true';
11 ok MGf_DUP,  'MGf_DUP is always true';