.\" -*- mode: troff; coding: utf-8 -*- .\" Automatically generated by Pod::Man 5.01 (Pod::Simple 3.43) .\" .\" 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 .. .\" \*(C` and \*(C' are quotes in nroff, nothing in troff, for use with C<>. .ie n \{\ . ds C` "" . ds C' "" 'br\} .el\{\ . 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 3" .TH Test::LongString 3 2023-01-20 "perl v5.36.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 "\en" 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.