Subject: | Test names must always be third arg |
If default_names=0, the test names are expected to be the third argument
to *_ok functions.
So it's sometimes necessary to add a dummy argument in second position.
This example from SYNOPSIS doesn't work:
$sel->open_ok("http://www.google.com", "fetched G's site alright");
and should be changed to:
$sel->open_ok("http://www.google.com", undef, "fetched G's site alright");
Comparator functions (is, isnt etc.) are fine.
Herbert