summaryrefslogtreecommitdiff
path: root/spec/ruby/core/enumerator/arithmetic_sequence/inspect_spec.rb
blob: 21e64a6b58af7dc5cb06e2474c5f86f5efe02a26 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
require_relative '../../../spec_helper'

ruby_version_is "2.6" do
  describe "Enumerator::ArithmeticSequence#inspect" do
    context 'when Numeric#step is used' do
      it "returns '(begin.step(end{, step}))'" do
        1.step(10).inspect.should == "(1.step(10))"
        1.step(10, 3).inspect.should == "(1.step(10, 3))"
      end
    end

    context 'when Range#step is used' do
      it "returns '((range).step{(step)})'" do
        (1..10).step.inspect.should == "((1..10).step)"
        (1..10).step(3).inspect.should == "((1..10).step(3))"

        (1...10).step.inspect.should == "((1...10).step)"
        (1...10).step(3).inspect.should == "((1...10).step(3))"
      end
    end
  end
end