http://qs321.pair.com?node_id=11127042


in reply to Is a here-doc a good way to retrieve data file contents for testing?

The 'file' which you are simulating almost certainly has a newline at the end of every (including the last) line. The 'chomp' to remove the newline from the last line of your test file serves as a reminder that the same function is needed in the real code.
Bill
  • Comment on Re: Is a here-doc a good way to retrieve data file contents for testing?

Replies are listed 'Best First'.
Re^2: Is a here-doc a good way to retrieve data file contents for testing?
by Lotus1 (Vicar) on Jan 18, 2021 at 00:46 UTC
    The 'file' which you are simulating almost certainly has a newline at the end of every (including the last) line.

    In fact it doesn't. At least you only said 'almost' certainly. LOL. The json file is part of an archive that is exported from my phone. I wrote a text extractor to get all my memos from these archive files. The json file it extracts has no newline on the last line hence this discussion.