1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
|
require 'rspec/support/spec/library_wide_checks'
RSpec.describe "RSpec::Expectations" do
it_behaves_like "library wide checks", "rspec-expectations",
:preamble_for_lib => [
# We define minitest constants because rspec/expectations/minitest_integration
# expects these constants to already be defined.
"module Minitest; class Assertion; end; module Test; end; end",
'require "rspec/expectations"'
],
:allowed_loaded_feature_regexps => [
/stringio/, # Used by `output` matcher. Can't be easily avoided.
/rbconfig/ # required by rspec-support
]
it 'does not allow expectation failures to be caught by a bare rescue' do
expect {
expect(2).to eq(3) rescue nil
}.to fail_including("expected: 3")
end
end
|