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

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