Sha256: e6d8abc881530aafbf66764bc4a5c7b45433bb6304cfe21f781a8a39967dbbcc
Contents?: true
Size: 521 Bytes
Versions: 2
Compression:
Stored size: 521 Bytes
Contents
require_relative '../../spec_helper' describe DataMapper::Property::String do before :all do @name = :name @type = described_class @load_as = String @value = 'value' @other_value = 'return value' @invalid_value = 1 end it_behaves_like 'A public Property' describe '.options' do subject { described_class.options } it { is_expected.to be_kind_of(Hash) } it { is_expected.to eql(load_as: @load_as, dump_as: @load_as, length: 50) } end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
sbf-dm-core-1.3.0 | spec/public/property/string_spec.rb |
sbf-dm-core-1.3.0.beta | spec/public/property/string_spec.rb |