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