Sha256: b9764902749fef3010c75d4f9c36a7c4500bc417c9b504a91c8a44d4e0686729

Contents?: true

Size: 1.29 KB

Versions: 29

Compression:

Stored size: 1.29 KB

Contents

# Copyright (C) 2009-2014 MongoDB Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#   http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

require "spec_helper"

describe BSON::Int32 do

  describe "#from_bson" do

    let(:type) { 16.chr }
    let(:obj)  { 123 }
    let(:bson) { [ obj ].pack(BSON::Int32::PACK) }

    it_behaves_like "a bson element"
    it_behaves_like "a deserializable bson element"
  end

  describe "when the integer is negative" do
    let(:decoded) { -1 }
    let(:encoded) {StringIO.new([ -1 ].pack(BSON::Int32::PACK))}
    let(:decoded_2) { -50 }
    let(:encoded_2) {StringIO.new([ -50 ].pack(BSON::Int32::PACK))}
    it "decodes a -1 correctly" do
      expect(BSON::Int32.from_bson(encoded)).to eq(decoded)
    end  
    it "decodes a -50 correctly" do
      expect(BSON::Int32.from_bson(encoded_2)).to eq(decoded_2)
    end  
  end
  
end

Version data entries

29 entries across 29 versions & 2 rubygems

Version Path
bson-3.2.7-java spec/bson/int32_spec.rb
bson-3.2.7 spec/bson/int32_spec.rb
ish_lib_manager-0.0.1 test/dummy/vendor/bundle/ruby/2.3.0/gems/bson-3.2.6/spec/bson/int32_spec.rb
bson-3.2.6-java spec/bson/int32_spec.rb
bson-3.2.6 spec/bson/int32_spec.rb
bson-3.2.4-java spec/bson/int32_spec.rb
bson-3.2.4 spec/bson/int32_spec.rb
bson-3.2.3-java spec/bson/int32_spec.rb
bson-3.2.3 spec/bson/int32_spec.rb
bson-3.2.1-java spec/bson/int32_spec.rb
bson-3.2.1 spec/bson/int32_spec.rb
bson-3.2.0-java spec/bson/int32_spec.rb
bson-3.2.0 spec/bson/int32_spec.rb
bson-3.1.2-java spec/bson/int32_spec.rb
bson-3.1.2 spec/bson/int32_spec.rb
bson-3.1.1-java spec/bson/int32_spec.rb
bson-3.1.1 spec/bson/int32_spec.rb
bson-3.1.0-java spec/bson/int32_spec.rb
bson-3.1.0 spec/bson/int32_spec.rb
bson-3.0.4-java spec/bson/int32_spec.rb