We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1f1e5a7 commit c102881Copy full SHA for c102881
History.rdoc
@@ -48,6 +48,8 @@
48
* Fixed footer links to rubyforge and darkfish. Pull request #328 by
49
@blackwinter
50
* Fixed page-top link. Pull request #329 by @blackwinter
51
+ * Minitest gem activation failures are now ignored during test startup.
52
+ Issue #313 by Vít Ondruch.
53
54
=== 4.1.2 / 2014-09-05
55
lib/rdoc/test_case.rb
@@ -2,7 +2,7 @@
2
3
begin
4
gem 'minitest', '~> 4.0' unless defined?(Test::Unit)
5
-rescue NoMethodError
+rescue NoMethodError, Gem::LoadError
6
# for ruby tests
7
end
8
0 commit comments