Perl 5
/
perl.git
/ blob
free
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
committers
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blame
|
history
|
raw
|
HEAD
Use a non-development version for Cwd because XSLoader tests don't like those
[perl.git]
/
ext
/
base
/
t
/
version.t
1
#!/usr/bin/perl -w
2
3
use strict;
4
5
use Test::More tests => 1;
6
7
# Here we emulate a bug with base.pm not finding the Exporter version
8
# for some reason.
9
use lib qw(t/lib);
10
use base qw(Dummy);
11
12
is( $Dummy::VERSION, 5.562, "base.pm doesn't confuse the version" );