require_relative '../../../spec_helper' describe "Enumerator::ArithmeticSequence#begin" do it "returns the begin of the sequence" do 1.step(10).begin.should == 1 (1..10).step.begin.should == 1 (1...10).step.begin.should == 1 end ruby_version_is "2.7" do context "with beginless" do it "returns nil as begin of the sequence" do eval("(..10).step(1)").begin.should == nil eval("(...10).step(1)").begin.should == nil end end end end