Newbie question

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

On Feb 21, 10:40 am, Anthony Broad-Crawford <abroad-
[email protected]> wrote:

            stuff
    end
    end

end

controller.stub!
(:some_protected_method_call).and_return(whatever_it_should_return)

That work?

yes, thank you very much!