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
_______________________________________________
rspec-users mailing list
rspec-users@rubyforge.org
http://rubyforge.org/mailman/listinfo/rspec-users

Reply via email to