[rspec-users] Newbie question ...
Anthony Broad-Crawford
abroad-crawford at within3.com
Thu Feb 21 11:40:45 EST 2008
I am testing an action on a controller and cannot seem to find the
syntax to stub a method call off of the controller I am testing.
pseudo code
class SomeController < < ApplicationController
def some_action
stuff
stuff
stuff
some_protected_method_call
stuff
redirect_to something
end
protected
def some_protected_method_call
end
end
describe SomeController do
it "should have some description of behavior here" do
#how do I stub some_protected_method_call
get 'some_action'
response.should be_redirect
end
end
More information about the rspec-users
mailing list