aboutsummaryrefslogtreecommitdiffstats
path: root/spec/ruby/core/struct/eql_spec.rb
blob: 0caba5ef0e53f3c36ca349798f8d9307b92d6643 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
require File.expand_path('../../../spec_helper', __FILE__)
require File.expand_path('../fixtures/classes', __FILE__)
require File.expand_path('../shared/equal_value', __FILE__)

describe "Struct#eql?" do
  it_behaves_like :struct_equal_value, :eql?

  it "returns false if any corresponding elements are not #eql?" do
    car = StructClasses::Car.new("Honda", "Accord", 1998)
    similar_car = StructClasses::Car.new("Honda", "Accord", 1998.0)
    car.send(@method, similar_car).should be_false
  end
end