Re: [rspec-users] Controller Specs - undefined local variable or method 'app'

2011-02-12 Thread Doug Bryant
Your hunch looks correct - I ran it through the debugger last night and found the spot where it was failing in rack-test although I don't know why it was failing. I removed this line from my spec_helper.rb: > config.include Rack::Test::Methods and it magically started working again. Thanks for

Re: [rspec-users] Controller Specs - undefined local variable or method 'app'

2011-02-12 Thread James Martin
Not 100% sure, but that failure looks suspiciously like something you get when using rack-test; which expects an 'app' method to be defined that returns an instance of your rack-compatible application. On Saturday, February 12, 2011, Doug Bryant wrote: > On one of my projects using rspec 2.5 & ra

[rspec-users] Controller Specs - undefined local variable or method 'app'

2011-02-11 Thread Doug Bryant
On one of my projects using rspec 2.5 & rails 3.0.4, I recently moved from postgres to mongo and am using mongoid as the persistence library. I ported all the models over to the mongoid way of doing things and now have all my models passing the tests. None of the controller test work any more. T