Sha256: c14f57f02e0a2b6d3db87ebe7245bf5369729f8b49914b4fd0f143c90bace25d
Contents?: true
Size: 547 Bytes
Versions: 83
Compression:
Stored size: 547 Bytes
Contents
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
Version data entries
83 entries across 83 versions & 1 rubygems