aboutsummaryrefslogtreecommitdiffstats
path: root/spec/ruby/core/range/eql_spec.rb
blob: c62fa0076e1cea1364927b8f4d015200e0056995 (plain)
1
2
3
4
5
6
7
8
9
10
require_relative '../../spec_helper'
require_relative 'shared/equal_value'

describe "Range#eql?" do
  it_behaves_like :range_eql, :eql?

  it "returns false if the endpoints are not eql?" do
    (0..1).send(@method, 0..1.0).should == false
  end
end