in reply to Re^2: RFC: How did I do writing my first test?
in thread RFC: How did I do writing my first test?

I'm not sure ... (on closer inspection of what it does) that seems like basically retesting Perl's readline function, which is already tested elsewhere.
  • Comment on Re^3: RFC: How did I do writing my first test?

Replies are listed 'Best First'.
Re^4: RFC: How did I do writing my first test?
by jcb (Parson) on Sep 25, 2020 at 22:48 UTC

    I would offer that such testing is still reasonable, to ensure that the behavior does not change if/when some future version implements more complex wrapping around readline.

    If the high-level specification says that the code behaves "like so" with/without a final newline, the testsuite should verify that, even if it is effectively verifying part of perl itself in the current implementation. If nothing else, this will blow up if some future perl changes that behavior, alerting to the need to either add code to maintain the previous behavior or revise the specification.