Sha256: 6d12ed72e6b476780602ea3cdcaaad92db4f4d123f7f015ffec46fd302859efe

Contents?: true

Size: 1.43 KB

Versions: 52

Compression:

Stored size: 1.43 KB

Contents

require File.expand_path('../../../spec_helper', __FILE__)

ruby_version_is ""..."1.9" do
  describe "Float.induced_from" do
    it "returns the passed argument when passed a Float" do
      Float.induced_from(5.5).should eql(5.5)
      Float.induced_from(-5.5).should eql(-5.5)
      Float.induced_from(TOLERANCE).should eql(TOLERANCE)
    end

    it "converts passed Fixnums or Bignums to Floats (using #to_f)" do
      Float.induced_from(5).should eql(5.0)
      Float.induced_from(-5).should eql(-5.0)
      Float.induced_from(0).should eql(0.0)

      Float.induced_from(bignum_value).should eql(bignum_value.to_f)
      Float.induced_from(-bignum_value).should eql(-bignum_value.to_f)
    end

    it "does not try to convert non-Integers to Integers using #to_int" do
      obj = mock("Not converted to Integer")
      obj.should_not_receive(:to_int)
      lambda { Float.induced_from(obj) }.should raise_error(TypeError)
    end

    it "does not try to convert non-Integers to Floats using #to_f" do
      obj = mock("Not converted to Float")
      obj.should_not_receive(:to_f)
      lambda { Float.induced_from(obj) }.should raise_error(TypeError)
    end

    it "raises a TypeError when passed a non-Integer" do
      lambda { Float.induced_from("2") }.should raise_error(TypeError)
      lambda { Float.induced_from(:symbol) }.should raise_error(TypeError)
      lambda { Float.induced_from(Object.new) }.should raise_error(TypeError)
    end
  end
end

Version data entries

52 entries across 52 versions & 2 rubygems

Version Path
rhodes-7.6.0 spec/framework_spec/app/spec/core/float/induced_from_spec.rb
rhodes-7.5.1 spec/framework_spec/app/spec/core/float/induced_from_spec.rb
rhodes-7.4.1 spec/framework_spec/app/spec/core/float/induced_from_spec.rb
rhodes-7.1.17 spec/framework_spec/app/spec/core/float/induced_from_spec.rb
rhodes-6.2.0 spec/framework_spec/app/spec/core/float/induced_from_spec.rb
rhodes-6.0.11 spec/framework_spec/app/spec/core/float/induced_from_spec.rb
rhodes-5.5.18 spec/framework_spec/app/spec/core/float/induced_from_spec.rb
rhodes-5.5.17 spec/framework_spec/app/spec/core/float/induced_from_spec.rb
rhodes-5.5.15 spec/framework_spec/app/spec/core/float/induced_from_spec.rb
rhodes-5.5.0.22 spec/framework_spec/app/spec/core/float/induced_from_spec.rb
rhodes-5.5.2 spec/framework_spec/app/spec/core/float/induced_from_spec.rb
rhodes-5.5.0.7 spec/framework_spec/app/spec/core/float/induced_from_spec.rb
rhodes-5.5.0.3 spec/framework_spec/app/spec/core/float/induced_from_spec.rb
rhodes-5.5.0 spec/framework_spec/app/spec/core/float/induced_from_spec.rb
tauplatform-1.0.3 spec/framework_spec/app/spec/core/float/induced_from_spec.rb
tauplatform-1.0.2 spec/framework_spec/app/spec/core/float/induced_from_spec.rb
tauplatform-1.0.1 spec/framework_spec/app/spec/core/float/induced_from_spec.rb
rhodes-3.5.1.12 spec/framework_spec/app/spec/core/float/induced_from_spec.rb
rhodes-3.3.5 spec/framework_spec/app/spec/core/float/induced_from_spec.rb
rhodes-3.4.2 spec/framework_spec/app/spec/core/float/induced_from_spec.rb