Beefy Boxes and Bandwidth Generously Provided by pair Networks
Your skill will accomplish
what the force of many cannot
 
PerlMonks  

Re^2: is (from Test::More) failed although strings seemed necessarily equal

by fsavigny (Novice)
on Jul 26, 2013 at 12:08 UTC ( [id://1046499]=note: print w/replies, xml ) Need Help??


in reply to Re: is (from Test::More) fails although strings should (no: must!) be equal
in thread is (from Test::More) fails although strings should (no: must!) be equal

I am really baffled. Some 15 minutes, and already three answers! Thank you so much!

I chose the write-to-file route because it seemed the most accessible and transparent:

{ my $FH; open $FH, ">", "got.dump"; print $FH $returned_message; close $FH; open $FH, ">", "expected.dump"; print $FH $expected; close $FH; }

Then I compared got.dump and expected.dump on the command line, where it also became obvious that they even had different sizes. If you open the files in an editor, you see that.

The reason was indeed the copy&paste: I had somehow forgotten I had colorised some of the output, and copy&paste dropped the control codes: Bad thing.

So, that was indeed very stupid of me. I had noticed there was something irregular with the colorising, but dismissed it because I reasoned that was not part of what I needed to test because it would be plainly obvious anyway ... what a fuzzy and human way of reasoning.

is fails no longer! Thanks so much again!

Florian

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://1046499]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others musing on the Monastery: (6)
As of 2024-04-24 07:42 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found