method
expected_exception
1.3.1 -
Show latest stable
- Class:
Spec::Matchers::RaiseException
expected_exception()private
No documentation available.
# 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