Sha256: bff2b82af333f78b147085c290fac02015e3c7c5af65f3b826283fc7c73bff16
Contents?: true
Size: 1000 Bytes
Versions: 5
Compression:
Stored size: 1000 Bytes
Contents
require 'spec_helper' describe DataMapper::Property::Binary do before :all do @name = :title @type = described_class @primitive = String @value = 'value' @other_value = 'return value' @invalid_value = 1 end it_should_behave_like 'A public Property' describe '.options' do subject { described_class.options } it { should be_kind_of(Hash) } it { should eql(:primitive => @primitive, :length => 50) } end if RUBY_VERSION >= "1.9" describe 'encoding' do let(:model) do Class.new do include ::DataMapper::Resource property :bin_data, ::DataMapper::Property::Binary end end it 'should always dump with BINARY' do model.bin_data.dump("foo".freeze).encoding.names.should include("BINARY") end it 'should always load with BINARY' do model.bin_data.load("foo".freeze).encoding.names.should include("BINARY") end end end end
Version data entries
5 entries across 5 versions & 2 rubygems