summaryrefslogtreecommitdiff
path: root/spec/ruby/core/range/equal_value_spec.rb
blob: 43d5e0e38a95c72fd89200cf04ece76b553666c3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
require_relative '../../spec_helper'
require_relative 'shared/equal_value'

describe "Range#==" do
  it_behaves_like :range_eql, :==

  it "returns true if the endpoints are ==" do
    (0..1).should == (0..1.0)
  end

  ruby_version_is "2.6" do
    it "returns true if the endpoints are == for endless ranges" do
      eval("(1.0..)").should == eval("(1.0..)")
    end
  end
end