From 0c324f445b356d13555e30b7dc85270c5a10a52e Mon Sep 17 00:00:00 2001 From: Andy Lindeman Date: Thu, 22 Mar 2012 21:34:50 -0400 Subject: [PATCH] Fixes bench tests under JRuby * It appears that require 'minitest/spec' pulls in the stdlib version of minitest, as opposed to the > 2.1 gemified version required by mini_shoulda. This causes conflicts and bizarre errors messages. Since mini_shoulda pulls in 'minitest/spec' as well (but the correct version), this line can simply be removed. --- test/helper.rb | 1 - 1 file changed, 1 deletion(-) diff --git a/test/helper.rb b/test/helper.rb index 9b1f3ce8..33d52042 100644 --- a/test/helper.rb +++ b/test/helper.rb @@ -7,7 +7,6 @@ require 'rails' puts "Testing with Rails #{Rails.version}" -require 'minitest/spec' require 'mini_shoulda' require 'minitest/pride' require 'minitest/autorun'