summaryrefslogtreecommitdiff
path: root/t/noimport-register_plugins.t
blob: de2c669c523db6d9527d87dc17545250e203bdc7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!perl -w

use Data::Compare ();
Data::Compare->register_plugins();

print "1..1\n";

my $test = 0;

# and now there should be plugins

print "not " if(Data::Compare::Compare({}, Data::Compare::plugins()));
print 'ok '.(++$test)." plugins available in no-import mode if explicitly asked for\n";