aboutsummaryrefslogtreecommitdiffstats
path: root/spec/rubyspec/core/struct/eql_spec.rb
blob: dfa97811c6a6ed5a630333490f3725a4c5b17cc9 (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