[rspec-users] Sending rails errors to rspec output

2011-12-21 Thread LeeQ
I am using Capybara in combination with rspec for integration testing of rails apps. I would like any errors (routing errors, errors in a controller, anything) generated during a test to be printed the same as "puts" statements in rspec's output. Is this possible? Additionally, is this a reasonab

Re: [rspec-users] Sending rails errors to rspec output

2011-12-22 Thread LeeQ
Puts does work. That's not what I'm looking for. I want all error messages (like `undefined local variable or method `junk' for...` ) to show up in my rspec out put in *the same way as* `puts`. ___ rspec-users mailing list rspec-users@rubyforge.org htt

Re: [rspec-users] Sending rails errors to rspec output

2011-12-22 Thread LeeQ
Ah, I see what you are saying. But no, I still want the exception to act like an exception. My problem is that I'll have a test fail for reasons unknown, and I then I need to open the test logs to find the exception. I'd like those exceptions to show up in my test output so I don't have to d