The Perl Toolchain Summit 2025 Needs You: You can help 🙏 Learn more
123456789101112 #!/usr/bin/perl -wuse 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" );
#!/usr/bin/perl -w
use
strict;
Test::More
tests
=> 1;
# Here we emulate a bug with base.pm not finding the Exporter version
# for some reason.
lib
qw(t/lib)
;
base
qw(Dummy)
is(
$Dummy::VERSION
, 5.562,
"base.pm doesn't confuse the version"
);