Sha256: 5c849535cb80127a30e26bdb46520c9635c8213d7b4d9fdf60151b9e2aee0078
Contents?: true
Size: 571 Bytes
Versions: 83
Compression:
Stored size: 571 Bytes
Contents
require File.dirname(File.join(__rhoGetCurrentDir(), __FILE__)) + '/../../spec_helper' describe "Float#prec" do it "returns the same Float when given the class Float" do 1.4.prec(Float).should == 1.4 end it "converts the Float to an Integer when given the class Integer" do 1.4.prec(Integer).should == 1 end end describe "Integer#prec" do it "returns the same Integer when given the class Integer" do 1.prec(Integer).should == 1 end it "converts the Integer to Float when given the class Float" do 1.prec(Float).should == 1.0 end end
Version data entries
83 entries across 83 versions & 1 rubygems