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.34.0 spec/acfs/model/attributes/float_spec.rb
acfs-0.33.1.1.b285 spec/acfs/model/attributes/float_spec.rb
acfs-0.33.1.1.b281 spec/acfs/model/attributes/float_spec.rb
acfs-0.33.1 spec/acfs/model/attributes/float_spec.rb
acfs-0.33.0.1.b278 spec/acfs/model/attributes/float_spec.rb
acfs-0.33.0 spec/acfs/model/attributes/float_spec.rb
acfs-0.32.1.1.b277 spec/acfs/model/attributes/float_spec.rb
acfs-0.32.1.1.b276 spec/acfs/model/attributes/float_spec.rb
acfs-0.32.1.1.b275 spec/acfs/model/attributes/float_spec.rb
acfs-0.32.1.1.b274 spec/acfs/model/attributes/float_spec.rb
acfs-0.32.1.1.b272 spec/acfs/model/attributes/float_spec.rb
acfs-0.32.1 spec/acfs/model/attributes/float_spec.rb
acfs-0.32.0.1.b270 spec/acfs/model/attributes/float_spec.rb
acfs-0.31.0.1.b269 spec/acfs/model/attributes/float_spec.rb
acfs-0.32.0 spec/acfs/model/attributes/float_spec.rb
acfs-0.31.0.1.b265 spec/acfs/model/attributes/float_spec.rb
acfs-0.31.0.1.b263 spec/acfs/model/attributes/float_spec.rb
acfs-0.31.0 spec/acfs/model/attributes/float_spec.rb
acfs-0.30.0.1.b262 spec/acfs/model/attributes/float_spec.rb
acfs-0.30.0.1.b261 spec/acfs/model/attributes/float_spec.rb