1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00
ruby--ruby/spec/ruby/core/array/minmax_spec.rb
2020-10-24 15:53:53 +02:00

14 lines
391 B
Ruby

require_relative '../../spec_helper'
require_relative '../../shared/enumerable/minmax'
describe "Array#minmax" do
before :each do
@enum = [6, 4, 5, 10, 8]
@empty_enum = []
@incomparable_enum = [BasicObject.new, BasicObject.new]
@incompatible_enum = [11, "22"]
@strs = ["333", "2", "60", "55555", "1010", "111"]
end
it_behaves_like :enumerable_minmax, :minmax
end