# File lib/rubygems/test_case.rb, line 973 def initialize(specs) @specs = specs.sort_by { |s| s.full_name } end
# File lib/rubygems/test_case.rb, line 983 def find_all(dep) @specs.find_all { |s| dep.matches_spec? s } end
# File lib/rubygems/test_case.rb, line 977 def find_spec(dep) @specs.reverse_each do |s| return s if dep.matches_spec? s end end
# File lib/rubygems/test_case.rb, line 987 def prefetch(reqs) end