mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* lib/rubygems/source_index.rb (Gem#load_specification): don't use
RUBY_VERSION to branch. * lib/rubygems/validator.rb (Gem::TestRunner, Gem#alien): ditto. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@26199 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
45b750149a
commit
9004431714
3 changed files with 13 additions and 2 deletions
|
@ -167,6 +167,7 @@ class Gem::Validator
|
|||
errors
|
||||
end
|
||||
|
||||
=begin
|
||||
if RUBY_VERSION < '1.9' then
|
||||
class TestRunner
|
||||
def initialize(suite, ui)
|
||||
|
@ -194,6 +195,7 @@ class Gem::Validator
|
|||
|
||||
autoload :TestRunner, 'test/unit/ui/testrunnerutilities'
|
||||
end
|
||||
=end
|
||||
|
||||
##
|
||||
# Runs unit tests for a given gem specification
|
||||
|
@ -214,6 +216,7 @@ class Gem::Validator
|
|||
|
||||
test_files.each do |f| require f end
|
||||
|
||||
=begin
|
||||
if RUBY_VERSION < '1.9' then
|
||||
suite = Test::Unit::TestSuite.new("#{gem_spec.name}-#{gem_spec.version}")
|
||||
|
||||
|
@ -228,6 +231,9 @@ class Gem::Validator
|
|||
result = MiniTest::Unit.new
|
||||
result.run
|
||||
end
|
||||
=end
|
||||
result = MiniTest::Unit.new
|
||||
result.run
|
||||
|
||||
result
|
||||
ensure
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue