Skip Menu |

This queue is for tickets about the Test-ManyParams CPAN distribution.

Report information
The Basics
Id: 51755
Status: new
Priority: 0/
Queue: Test-ManyParams

People
Owner: Nobody in particular
Requestors: FWIE [...] cpan.org
Cc:
AdminCc:

Bug Information
Severity: (no value)
Broken in: 0.10
Fixed in: (no value)



Subject: [Patch] POD nit
The attached patch fixes some POD, which renders wrong, at least at search.cpan.org.
Subject: pod.patch
diff --git a/ManyParams.pm b/ManyParams.pm index ec8feb9..b5986ed 100644 --- a/ManyParams.pm +++ b/ManyParams.pm @@ -415,7 +415,7 @@ you will simply import this module But when you want to set the seed for the randomization of the C<most_ok> method, the way for importing looks like -C<use Test::ManyParams seed => 42>. +C<< use Test::ManyParams seed => 42 >>. At the time, it only will call C<srand(42)>, but later on, it will hold @@ -503,7 +503,7 @@ One of the results is that random parameter tests are very sensful, but the reproducibility is very important. So the module has to seed (or recognise the seed) of the random generator and to give the possibility to set them -(e.g. with C<use Test::ManyParams seed => 42>). +(e.g. with C<< use Test::ManyParams seed => 42 >>). Recognising a failed test, this seed has to be printed. It always seems to be sensful to set an own random numbering for each package using this module.