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
2022-01-10 16:29:54 +01:00

12 lines
258 B
Ruby

require_relative '../../spec_helper'
require_relative 'shared/equal'
describe "Proc#eql?" do
ruby_version_is ""..."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