Sha256: 6c35ff08e23a3b49789a6bc63781d1f5777b236ff41c4a69af9c57620b4f64c3

Contents?: true

Size: 601 Bytes

Versions: 87

Compression:

Stored size: 601 Bytes

Contents

require 'spec_helper'

describe Acfs::Model::Attributes::Float do
  let(:model) { Class.new.tap { |c| c.send :include, Acfs::Model }}
  subject { Acfs::Model::Attributes::Float.new }

  describe 'cast' do
    it 'should return same object, if obj is already of float class' do
      expect(subject.cast(1.3)).to be == 1.3
    end

    it 'should return parsed object, if obj is of Fixnum class' do
      expect(subject.cast(7)).to be == 7.0
    end

    it 'should return parsed object, if obj is of String class containing a float' do
      expect(subject.cast('1.7')).to be == 1.7
    end
  end
end

Version data entries

87 entries across 87 versions & 1 rubygems

Version Path
acfs-0.42.0 spec/acfs/model/attributes/float_spec.rb
acfs-0.41.1 spec/acfs/model/attributes/float_spec.rb
acfs-0.41.1.beta1 spec/acfs/model/attributes/float_spec.rb
acfs-0.41.0 spec/acfs/model/attributes/float_spec.rb
acfs-0.40.1.rc1 spec/acfs/model/attributes/float_spec.rb
acfs-0.40.0 spec/acfs/model/attributes/float_spec.rb
acfs-0.39.1 spec/acfs/model/attributes/float_spec.rb
acfs-0.39.0 spec/acfs/model/attributes/float_spec.rb
acfs-0.38.0 spec/acfs/model/attributes/float_spec.rb
acfs-0.37.0.1.b295 spec/acfs/model/attributes/float_spec.rb
acfs-0.37.0 spec/acfs/model/attributes/float_spec.rb
acfs-0.36.0.1.b293 spec/acfs/model/attributes/float_spec.rb
acfs-0.36.0 spec/acfs/model/attributes/float_spec.rb
acfs-0.35.0.1.b291 spec/acfs/model/attributes/float_spec.rb
acfs-0.35.0 spec/acfs/model/attributes/float_spec.rb
acfs-0.34.1.1.b289 spec/acfs/model/attributes/float_spec.rb
acfs-0.34.1 spec/acfs/model/attributes/float_spec.rb
acfs-0.34.0.1.b288 spec/acfs/model/attributes/float_spec.rb
acfs-0.34.0.1.b287 spec/acfs/model/attributes/float_spec.rb
acfs-0.34.0.1.b286 spec/acfs/model/attributes/float_spec.rb