blob: 03df28c6d874cfcee4204e68f1ab943e618cb6b4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
SUBROUTINES
explain( @things_to_explain )
Will convert the contents of any references in a human readable
format, and return them as strings. Usually you want to pass this into
note or diag.
Handy for things like:
is( $errors, [], 'Should have no errors' ) or diag explain( $errors );
Note that explain does NOT output anything.
|