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/proc/eql_spec.rb
2020-09-15 21:56:00 +02:00

12 lines
259 B
Ruby

require_relative '../../spec_helper'
require_relative 'shared/equal'
describe "Proc#eql?" do
ruby_version_is "0"..."3.0" do
it_behaves_like :proc_equal_undefined, :eql?
end
ruby_version_is "3.0" do
it_behaves_like :proc_equal, :eql?
end
end