I just spent a lot of time trying to get a test to pass that would not pass no
matter what I did, and I finally decided to just do something really simple to
verify that even that was working-- and it's not.
class PostsController < ApplicationController
def create
debugger # or binding.pry
end
end
--
#controllers/post_spec.rb
describe PostsController do
it "does not work" do
post :create
end
end
...
I never see the debugger prompt.. Can anyone PLEASE tell me why this is not
working? In any other test, binding.pry or debugger interrupts the test flow
and gives me access to the current scope of the debugger call.
Patrick J. Collins
http://collinatorstudios.com
_______________________________________________
rspec-users mailing list
[email protected]
http://rubyforge.org/mailman/listinfo/rspec-users