From b77781c012ebb60bfeee114aef6597ab8d3d3016 Mon Sep 17 00:00:00 2001 From: Carlos Antonio da Silva Date: Fri, 6 Sep 2013 09:28:47 -0300 Subject: Fix failure with minitest 5.0.7 Require minitest/mock in test where stub method is needed. Apparently this was being "imported" by minitest pride plugin, which previously required "minitest/autorun", that required "minitest/mock", making the method available by chance. It has been changed in minitest: https://github.com/seattlerb/minitest/commit/595ce955c0d89575726d10fc18d2afd8f334bcbe So we need to make sure we require what we really need where necessary. --- actionview/test/template/url_helper_test.rb | 1 + 1 file changed, 1 insertion(+) diff --git a/actionview/test/template/url_helper_test.rb b/actionview/test/template/url_helper_test.rb index d512fa9913..e3440915a4 100644 --- a/actionview/test/template/url_helper_test.rb +++ b/actionview/test/template/url_helper_test.rb @@ -1,5 +1,6 @@ # encoding: utf-8 require 'abstract_unit' +require 'minitest/mock' class UrlHelperTest < ActiveSupport::TestCase -- cgit v1.2.3