xref: /openbsd-src/gnu/usr.bin/perl/dist/base/t/version.t (revision b39c515898423c8d899e35282f4b395f7cad3298)
1#!/usr/bin/perl -w
2
3use strict;
4
5use Test::More tests => 1;
6
7# Here we emulate a bug with base.pm not finding the Exporter version
8# for some reason.
9use lib qw(t/lib);
10use base qw(Dummy);
11
12is( $Dummy::VERSION, 5.562,       "base.pm doesn't confuse the version" );
13