Sha256: 3fa49adf2a4f81d4303f6589b7a6ed205414bbc2aed3f4e41062cb51546e67c2
Contents?: true
Size: 1.46 KB
Versions: 83
Compression:
Stored size: 1.46 KB
Contents
require File.dirname(File.join(__rhoGetCurrentDir(), __FILE__)) + '/../../spec_helper' require File.dirname(File.join(__rhoGetCurrentDir(), __FILE__)) + '/fixtures/classes.rb' # TODO: Move actual results to String#to_int() and spec in terms of it describe "String#hex" do it "treats leading characters of self as a string of hex digits" do "0a".hex.should == 10 "0o".hex.should == 0 "0x".hex.should == 0 "A_BAD_BABE".hex.should == 0xABADBABE "0b1010".hex.should == "b1010".hex "0d500".hex.should == "d500".hex "abcdefG".hex.should == 0xabcdef end ruby_version_is "" ... "1.8.7" do it "accepts a sequence of underscores as part of a number" do "a__b".hex.should == 0xab "a____b".hex.should == 0xab "a___f".hex.should == 0xaf end end ruby_version_is "1.8.7" do it "does not accept a sequence of underscores as part of a number" do "a__b".hex.should == 0xa "a____b".hex.should == 0xa "a___f".hex.should == 0xa end end it "takes an optional sign" do "-1234".hex.should == -4660 "+1234".hex.should == 4660 end it "takes an optional 0x" do "0x0a".hex.should == 10 "0a".hex.should == 10 end it "requires that the sign is in front of the 0x if present" do "-0x1".hex.should == -1 "0x-1".hex.should == 0 end it "returns 0 on error" do "".hex.should == 0 "+-5".hex.should == 0 "wombat".hex.should == 0 "0x0x42".hex.should == 0 end end
Version data entries
83 entries across 83 versions & 1 rubygems