Sha256: acc256f5219f6cbf5b96ee792485b20e3e6f52926d9b336736ab2e70f113f59a
Contents?: true
Size: 1020 Bytes
Versions: 111
Compression:
Stored size: 1020 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' WebMock.enable! 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
111 entries across 105 versions & 8 rubygems