require File.dirname(File.join(__rhoGetCurrentDir(), __FILE__)) + '/../../spec_helper' describe "Range#exclude_end?" do it "returns true if the range exludes the end value" do (-2..2).exclude_end?.should == false ('A'..'B').exclude_end?.should == false (0.5..2.4).exclude_end?.should == false (0xfffd..0xffff).exclude_end?.should == false (0...5).exclude_end?.should == true ('A'...'B').exclude_end?.should == true (0.5...2.4).exclude_end?.should == true (0xfffd...0xffff).exclude_end?.should == true end end