summaryrefslogtreecommitdiff
path: root/spec/ruby/core/proc/eql_spec.rb
blob: 5f38af72d9f44c1b746866750a01710a27431618 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
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