Skip Menu |

Preferred bug tracker

Please visit the preferred bug tracker to report your issue.

This queue is for tickets about the Module-Starter CPAN distribution.

Report information
The Basics
Id: 13298
Status: resolved
Worked: 5 min
Priority: 0/
Queue: Module-Starter

People
Owner: rjbs [...] cpan.org
Requestors: ewilhelm [...] sbcglobal.net
Cc:
AdminCc:

Bug Information
Severity: Unimportant
Broken in: 1.38
Fixed in: (no value)



Subject: Perl Version not escaped in Simple.pm
The value of $] on the machine where the module was started gets statically inserted into the t/00-load.t script.
Index: lib/Module/Starter/Simple.pm =================================================================== --- lib/Module/Starter/Simple.pm (revision 421) +++ lib/Module/Starter/Simple.pm (revision 450) @@ -598,7 +598,7 @@ $use_lines } -diag( "Testing $main_module \$${main_module}::VERSION, Perl $], $^X" ); +diag( "Testing $main_module \$${main_module}::VERSION, Perl \$], \$^X" ); HERE return %t_files;