Sha256: dd75384e0a5f9850f17f274841607f7f4a0132ac28941b9cd8799a06428ff9d8
Contents?: true
Size: 571 Bytes
Versions: 55
Compression:
Stored size: 571 Bytes
Contents
require 'test_helper' class BinaryTest < Test::Unit::TestCase should "serialize and deserialize correctly" do klass = Doc do key :contents, Binary end doc = klass.new(:contents => '010101') doc.save doc = doc.reload doc.contents.to_s.should == BSON::ByteBuffer.new('010101').to_s end context "Saving a document with a blank binary value" do setup do @document = Doc do key :file, Binary end end should "not fail" do assert_nothing_raised { @document.new(:file => nil).save } end end end
Version data entries
55 entries across 55 versions & 5 rubygems