Sha256: 463160cd76172d69bde1ea17b41c5682108d59e78e5ee433c6843ecc3422a3f3
Contents?: true
Size: 1003 Bytes
Versions: 92
Compression:
Stored size: 1003 Bytes
Contents
begin require 'minitest/test' test_class = Minitest::Test assertions = "assertions" rescue LoadError require "minitest/unit" test_class = MiniTest::Unit::TestCase assertions = "_assertions" end require 'webmock' test_class.class_eval do include WebMock::API alias_method :teardown_without_webmock, :teardown def teardown_with_webmock teardown_without_webmock WebMock.reset! end alias_method :teardown, :teardown_with_webmock [:assert_request_requested, :assert_request_not_requested].each do |name| alias_method :"#{name}_without_assertions_count", name define_method :"#{name}_with_assertions_count" do |*args| self.send("#{assertions}=", self.send("#{assertions}") + 1) send :"#{name}_without_assertions_count", *args end alias_method name, :"#{name}_with_assertions_count" end end begin error_class = MiniTest::Assertion rescue NameError error_class = Minitest::Assertion end WebMock::AssertionFailure.error_class = error_class
Version data entries
92 entries across 90 versions & 9 rubygems