summaryrefslogtreecommitdiff
path: root/spec/ruby/core/range/dup_spec.rb
blob: cdb792c97f2835b8652f597466f44341093e7b72 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
require File.expand_path('../../../spec_helper', __FILE__)

describe "Range#dup" do
  it "duplicates the range" do
    copy = (1..3).dup
    copy.begin.should == 1
    copy.end.should == 3
    copy.exclude_end?.should == false

    copy = ("a"..."z").dup
    copy.begin.should == "a"
    copy.end.should == "z"
    copy.exclude_end?.should == true
  end
end