Displaying 1 result from an estimated 1 matches for "venuescontrol".
2007 May 20
9
How to test for exceptions
Hi folks,
I''m in the process of converting a Test::Unit functional test to RSpec, but I''ve run into a slight problem. I tried looking through the documentation but I still don''t know what I missed.
Thanks in advance,
Blake
describe VenuesController, "on update" do
before(:each) do
@venue = mock("venue")
@venue.stub!(:new_record?).and_return(false)
@venue.stub!(:to_param).and_return(''1'')
controller.class.send(:define_method, :rescue_action) { |e| raise e }
end
it "should rais...