libvariable-magic-perl/t/02-constants.t

12 lines
188 B
Perl

#!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';