summaryrefslogtreecommitdiffstats
path: root/gnu/usr.bin/perl/dist/base/t/version.t
blob: 73d15e6b3f67f9eafe296ea46a2827cf62dc7a10 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
#!/usr/bin/perl -w

use strict;

use Test::More tests => 1;

# Here we emulate a bug with base.pm not finding the Exporter version
# for some reason.
use lib qw(t/lib);
use base qw(Dummy);

is( $Dummy::VERSION, 5.562,       "base.pm doesn't confuse the version" );