Search Results

0
votes

Rails test hanging - how can I print the test name before execution?

can you just hit ctrl+c to halt the execution and it will display the stack trace of where you halted the execution? …
0
votes

Testing rails partial views standalone

Testing a view without the controller code is a dangerous thing. Your tests might pass but your application might throw an error. Always test against real life situations not artificial ones. …