http://www.perlmonks.org?node_id=982630


in reply to Re^5: Universal test flag
in thread Universal test flag

to actually be able to refactor you must first have a solid set of tests

And the exact problem with what you are trying to do is that it isn't solid. Suppose later you extract SMS sending code into a separate module, will your tests help you to find if you broke anything? No, because the code that may be broken by the change is being skipped in the test mode.

So what I would do, is to write solid test, and refactor code to pass it.

Replies are listed 'Best First'.
Re^7: Universal test flag
by ait (Hermit) on Jul 19, 2012 at 19:00 UTC

    I think we are talking about two different things here. I understand what you are saying but this is not the case that the SMS code is inside the function and later factored out (in fact the SMS part was a made-up example to illustrate). I'm talking about the the case where the sub you are testing calls something else and you want to skip that, the same way you may skip tests in your test harness.