Sha256: b5ec871f4a963e08bc50d0598038d4b06e59e8c246d6380fd66944c936574ea1

Contents?: true

Size: 1.37 KB

Versions: 10

Compression:

Stored size: 1.37 KB

Contents

# Copyright (C) 2021 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 'Hash ActiveSupport extensions' do
  require_active_support

  describe '#symbolize_keys' do
    let(:symbolized) { hash.symbolize_keys }

    shared_examples 'works correctly' do
      it 'returns a hash' do
        symbolized.class.should be Hash
      end

      it 'works correctly' do
        hash.symbolize_keys.should == {foo: 'bar'}
      end
    end

    context 'string keys' do
      let(:hash) do
        {'foo' => 'bar'}
      end

      include_examples 'works correctly'
    end

    context 'symbol keys' do
      let(:hash) do
        {foo: 'bar'}
      end

      include_examples 'works correctly'
    end

    context 'both string and symbol keys' do
      let(:hash) do
        {'foo' => 42, foo: 'bar'}
      end

      include_examples 'works correctly'
    end
  end
end

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
bson-4.15.0-java spec/bson/hash_as_spec.rb
bson-4.15.0 spec/bson/hash_as_spec.rb
bson-4.14.1-java spec/bson/hash_as_spec.rb
bson-4.14.1 spec/bson/hash_as_spec.rb
bson-4.14.0-java spec/bson/hash_as_spec.rb
bson-4.14.0 spec/bson/hash_as_spec.rb
bson-4.13.0-java spec/bson/hash_as_spec.rb
bson-4.13.0 spec/bson/hash_as_spec.rb
bson-4.12.1-java spec/bson/hash_as_spec.rb
bson-4.12.1 spec/bson/hash_as_spec.rb