Sha256: a41cf1527cd3f71bca3f9abb29714ac54d6de9d76c6afde05ab30acfde2c7eb4
Contents?: true
Size: 461 Bytes
Versions: 83
Compression:
Stored size: 461 Bytes
Contents
require File.dirname(File.join(__rhoGetCurrentDir(), __FILE__)) + '/../../spec_helper' describe "Float#==" do it "returns true if self has the same value as other" do (1.0 == 1).should == true (2.71828 == 1.428).should == false (-4.2 == 4.2).should == false end it "calls 'other == self' if coercion fails" do class X; def ==(other); 2.0 == other; end; end (1.0 == X.new).should == false (2.0 == X.new).should == true end end
Version data entries
83 entries across 83 versions & 1 rubygems