summaryrefslogtreecommitdiff
path: root/spec/ruby/core/basicobject/equal_value_spec.rb
blob: 6c825513c19243e477a8b307839854c65e42cc9c (plain)
1
2
3
4
5
6
7
8
9
10
require_relative '../../spec_helper'
require_relative '../../shared/kernel/equal'

describe "BasicObject#==" do
  it "is a public instance method" do
    BasicObject.should have_public_instance_method(:==)
  end

  it_behaves_like :object_equal, :==
end