Subject: | Minor POD error |
There a paragraph in the documentation
If you want to test for a warning given by carp,
You have to write something like:
C<warning_is {carp "msg"} {carped => 'msg'}, "Test for a carped warning">.
The test will fail,
if a "normal" warning is found instead of a "carped" one.
which should be written as
If you want to test for a warning given by carp,
You have to write something like:
C<< warning_is {carp "msg"} {carped => 'msg'}, "Test for a carped warning" >>.
The test will fail,
if a "normal" warning is found instead of a "carped" one.
in order for the => arrow to appear in the output.