require File.dirname(__FILE__) + '/../../spec_helper.rb' describe "should raise_error" do it "should pass if anything is raised" do lambda {raise}.should raise_error end it "should fail if nothing is raised" do lambda { lambda {}.should raise_error }.should fail_with("expected Exception but nothing was raised") end end describe "should raise_error {|err| ... }" do it "passes if there is an error" do ran = false lambda { non_existent_method }.should raise_error {|e| ran = true } ran.should be_true end it "passes the error to the block" do error = nil lambda { non_existent_method }.should raise_error {|e| error = e } error.should be_an_instance_of(NameError) end end describe "should_not raise_error" do it "should pass if nothing is raised" do lambda {}.should_not raise_error end it "should fail if anything is raised" do lambda { lambda {raise}.should_not raise_error }.should fail_with("expected no Exception, got RuntimeError") end end describe "should raise_error(message)" do it "should pass if RuntimeError is raised with the right message" do lambda {raise 'blah'}.should raise_error('blah') end it "should pass if RuntimeError is raised with a matching message" do lambda {raise 'blah'}.should raise_error(/blah/) end it "should pass if any other error is raised with the right message" do lambda {raise NameError.new('blah')}.should raise_error('blah') end it "should fail if RuntimeError error is raised with the wrong message" do lambda do lambda {raise 'blarg'}.should raise_error('blah') end.should fail_with("expected Exception with \"blah\", got #") end it "should fail if any other error is raised with the wrong message" do lambda do lambda {raise NameError.new('blarg')}.should raise_error('blah') end.should fail_with("expected Exception with \"blah\", got #") end end describe "should_not raise_error(message)" do it "should pass if RuntimeError error is raised with the different message" do lambda {raise 'blarg'}.should_not raise_error('blah') end it "should pass if any other error is raised with the wrong message" do lambda {raise NameError.new('blarg')}.should_not raise_error('blah') end it "should fail if RuntimeError is raised with message" do lambda do lambda {raise 'blah'}.should_not raise_error('blah') end.should fail_with(%Q|expected no Exception with "blah", got #|) end it "should fail if any other error is raised with message" do lambda do lambda {raise NameError.new('blah')}.should_not raise_error('blah') end.should fail_with(%Q|expected no Exception with "blah", got #|) end end describe "should raise_error(NamedError)" do it "should pass if named error is raised" do lambda { non_existent_method }.should raise_error(NameError) end it "should fail if nothing is raised" do lambda { lambda { }.should raise_error(NameError) }.should fail_with("expected NameError but nothing was raised") end it "should fail if another error is raised (NameError)" do lambda { lambda { raise }.should raise_error(NameError) }.should fail_with("expected NameError, got RuntimeError") end it "should fail if another error is raised (NameError)" do lambda { lambda { load "non/existent/file" }.should raise_error(NameError) }.should fail_with(/expected NameError, got #") ran.should == false end it "should NOT yield exception if error message is not matched" do ran = false lambda { lambda { raise "example message" }.should raise_error(RuntimeError, "different message") { |err| ran = true } }.should fail_with("expected RuntimeError with \"different message\", got #") ran.should == false end end describe "should_not raise_error(NamedError, error_message) { |err| ... }" do it "should pass if nothing is raised" do ran = false lambda {}.should_not raise_error(RuntimeError, "example message") { |err| ran = true } ran.should == false end it "should pass if a different error is raised" do ran = false lambda { raise }.should_not raise_error(NameError, "example message") { |err| ran = true } ran.should == false end it "should pass if same error is raised with different message" do ran = false lambda { raise RuntimeError.new("not the example message") }.should_not raise_error(RuntimeError, "example message") { |err| ran = true } ran.should == false end it "should fail if named error is raised with same message" do ran = false lambda { lambda { raise "example message" }.should_not raise_error(RuntimeError, "example message") { |err| ran = true } }.should fail_with("expected no RuntimeError with \"example message\", got #") ran.should == false end end describe "should_not raise_error(NamedError, error_message) with String" do it "should pass if nothing is raised" do lambda {}.should_not raise_error(RuntimeError, "example message") end it "should pass if a different error is raised" do lambda { raise }.should_not raise_error(NameError, "example message") end it "should pass if same error is raised with different message" do lambda { raise RuntimeError.new("not the example message") }.should_not raise_error(RuntimeError, "example message") end it "should fail if named error is raised with same message" do lambda { lambda { raise "example message" }.should_not raise_error(RuntimeError, "example message") }.should fail_with("expected no RuntimeError with \"example message\", got #") end end describe "should raise_error(NamedError, error_message) with Regexp" do it "should pass if named error is raised with matching message" do lambda { raise "example message" }.should raise_error(RuntimeError, /ample mess/) end it "should fail if nothing is raised" do lambda { lambda {}.should raise_error(RuntimeError, /ample mess/) }.should fail_with("expected RuntimeError with message matching /ample mess/ but nothing was raised") end it "should fail if incorrect error is raised" do lambda { lambda { raise }.should raise_error(NameError, /ample mess/) }.should fail_with("expected NameError with message matching /ample mess/, got RuntimeError") end it "should fail if correct error is raised with incorrect message" do lambda { lambda { raise RuntimeError.new("not the example message") }.should raise_error(RuntimeError, /less than ample mess/) }.should fail_with("expected RuntimeError with message matching /less than ample mess/, got #") end end describe "should_not raise_error(NamedError, error_message) with Regexp" do it "should pass if nothing is raised" do lambda {}.should_not raise_error(RuntimeError, /ample mess/) end it "should pass if a different error is raised" do lambda { raise }.should_not raise_error(NameError, /ample mess/) end it "should pass if same error is raised with non-matching message" do lambda { raise RuntimeError.new("non matching message") }.should_not raise_error(RuntimeError, /ample mess/) end it "should fail if named error is raised with matching message" do lambda { lambda { raise "example message" }.should_not raise_error(RuntimeError, /ample mess/) }.should fail_with("expected no RuntimeError with message matching /ample mess/, got #") end end