in reply to Re^4: debug output from TODO with Test::More
in thread debug output from TODO with Test::More
And there is ZERO value in that.
Sorry, you are quite wrong.
TODO tests are an extremely valuable tool when you are dealing with volatile data. For example: you fetch data by querying an API, and you know it returns bad results under condition X. So you code a workaround for condition X, and you write a TODO test that you expect to fail. When the test begins to pass you get notification because of the TODO, and you remove the workaround for condition X.
This is a common strategy. The fact that you aren't familiar with it is no reason to be dismissive of other people's experience.
From the Test::More docs:
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^6: debug output from TODO with Test::More
by Anonymous Monk on Jan 13, 2017 at 22:02 UTC | |
by 1nickt (Canon) on Jan 14, 2017 at 02:23 UTC |