4
votes
How to make junior programmers write tests?
As a junior programmer, I'm still trying to get into the habit of writing tests. Obviously it's not easy to pick up new habits, but thinking about what would make this work for me, I have to +1 the …
0
votes
How do I disable rescue handlers in Ruby on Rails apps when I’m running functional tests?
You shouldn't need to disable your rescue block. Use the assert_raise method (as suggested by Scott), and in the block, call the method that you expect an exception from.
For example:
…
