.\" Automatically generated by Pod::Man 4.14 (Pod::Simple 3.42) .\" .\" Standard preamble: .\" ======================================================================== .de Sp \" Vertical space (when we can't use .PP) .if t .sp .5v .if n .sp .. .de Vb \" Begin verbatim text .ft CW .nf .ne \\$1 .. .de Ve \" End verbatim text .ft R .fi .. .\" Set up some character translations and predefined strings. \*(-- will .\" give an unbreakable dash, \*(PI will give pi, \*(L" will give a left .\" double quote, and \*(R" will give a right double quote. \*(C+ will .\" give a nicer C++. Capital omega is used to do unbreakable dashes and .\" therefore won't be available. \*(C` and \*(C' expand to `' in nroff, .\" nothing in troff, for use with C<>. .tr \(*W- .ds C+ C\v'-.1v'\h'-1p'\s-2+\h'-1p'+\s0\v'.1v'\h'-1p' .ie n \{\ . ds -- \(*W- . ds PI pi . if (\n(.H=4u)&(1m=24u) .ds -- \(*W\h'-12u'\(*W\h'-12u'-\" diablo 10 pitch . if (\n(.H=4u)&(1m=20u) .ds -- \(*W\h'-12u'\(*W\h'-8u'-\" diablo 12 pitch . ds L" "" . ds R" "" . ds C` "" . ds C' "" 'br\} .el\{\ . ds -- \|\(em\| . ds PI \(*p . ds L" `` . ds R" '' . ds C` . ds C' 'br\} .\" .\" Escape single quotes in literal strings from groff's Unicode transform. .ie \n(.g .ds Aq \(aq .el .ds Aq ' .\" .\" If the F register is >0, we'll generate index entries on stderr for .\" titles (.TH), headers (.SH), subsections (.SS), items (.Ip), and index .\" entries marked with X<> in POD. Of course, you'll have to process the .\" output yourself in some meaningful fashion. .\" .\" Avoid warning from groff about undefined register 'F'. .de IX .. .nr rF 0 .if \n(.g .if rF .nr rF 1 .if (\n(rF:(\n(.g==0)) \{\ . if \nF \{\ . de IX . tm Index:\\$1\t\\n%\t"\\$2" .. . if !\nF==2 \{\ . nr % 0 . nr F 2 . \} . \} .\} .rr rF .\" ======================================================================== .\" .IX Title "Test::LongString 3pm" .TH Test::LongString 3pm "2022-10-13" "perl v5.34.0" "User Contributed Perl Documentation" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l .nh .SH "NAME" Test::LongString \- tests strings for equality, with more helpful failures .SH "SYNOPSIS" .IX Header "SYNOPSIS" .Vb 3 \& use Test::More tests => 1; \& use Test::LongString; \& like_string( $html, qr/(perl|cpan)\e.org/ ); \& \& # Failed test (html\-test.t at line 12) \& # got: "\*(Aq ); \& # Failed test at t/foo.t line 10. \& # searched: "" \& # LCSS: "ainContent"" \& # LCSS context: "dolor sit amet\ex{0a}
100; .Ve .PP When the compared strings begin to differ after a large prefix, Test::LongString will not print them from the beginning, but will start at the middle, more precisely at \f(CW$Test::LongString::Context\fR characters before the first difference. By default this value is 10 characters. If you want Test::LongString to always print the beginning of compared strings no matter where they differ, undefine \f(CW$Test::LongString::Context\fR. .PP When computing line numbers this module uses \*(L"\en\*(R" to count line endings. This may not be appropriate for strings on your platform, and can be overridden by setting the \f(CW$Test::LongString::EOL\fR variable to a suitable regular expression (either a reference to a regular expression or a string that can be interpolated into a regular expression.) .PP You can also set it by specifying an argument to \f(CW\*(C`use\*(C'\fR: .PP .Vb 1 \& use Test::LongString eol => "\ex{0a}\ex{0c}"; .Ve .SH "AUTHOR" .IX Header "AUTHOR" Written by Rafael Garcia-Suarez. Thanks to Mark Fowler (and to Joss Whedon) for the inspirational Acme::Test::Buffy. Thanks to Andy Lester for lots of patches. .PP This program is free software; you may redistribute it and/or modify it under the same terms as Perl itself. .PP A git repository for this module is available at .PP .Vb 1 \& git://github.com/rgs/Test\-LongString.git .Ve .PP and the project page at .PP .Vb 1 \& http://github.com/rgs/Test\-LongString .Ve .SH "SEE ALSO" .IX Header "SEE ALSO" Test::Builder, Test::Builder::Tester, Test::More.