Flowdock
method

expected_exception

Importance_0
1.3.1 - Show latest stable - 0 notes - Class: Spec::Matchers::RaiseException
expected_exception() private

No documentation

This method has no description. You can help the RSpec community by adding new notes.

Hide source
# File lib/spec/matchers/raise_exception.rb, line 72
        def expected_exception
          case @expected_message
          when nil
            @expected_exception
          when Regexp
            "#{@expected_exception} with message matching #{@expected_message.inspect}"
          else
            "#{@expected_exception} with #{@expected_message.inspect}"
          end
        end
Register or log in to add new notes.