Sha256: 1183084e6c89d93856eced89b227b26c8adc3d13f07550a770f0cb5fe6ff28be

Contents?: true

Size: 942 Bytes

Versions: 11

Compression:

Stored size: 942 Bytes

Contents

require 'spec_helper'
module Grape
  module Util
    describe 'StrictHashConfiguration' do
      subject do
        Class.new do
          include Grape::Util::StrictHashConfiguration.module(:config1, :config2, config3: [:config4], config5: [config6: %i[config7 config8]])
        end
      end

      it 'set nested configs' do
        subject.configure do
          config1 'alpha'
          config2 'beta'

          config3 do
            config4 'gamma'
          end

          local_var = 8

          config5 do
            config6 do
              config7 7
              config8 local_var
            end
          end
        end

        expect(subject.settings).to eq(config1: 'alpha',
                                       config2: 'beta',
                                       config3: { config4: 'gamma' },
                                       config5: { config6: { config7: 7, config8: 8 } })
      end
    end
  end
end

Version data entries

11 entries across 11 versions & 2 rubygems

Version Path
grape-extra_validators-2.0.0 vendor/bundle/ruby/2.6.0/gems/grape-1.2.5/spec/grape/util/strict_hash_configuration_spec.rb
grape-extra_validators-1.0.0 vendor/bundle/ruby/2.4.0/gems/grape-1.2.5/spec/grape/util/strict_hash_configuration_spec.rb
grape-1.2.5 spec/grape/util/strict_hash_configuration_spec.rb
grape-1.2.4 spec/grape/util/strict_hash_configuration_spec.rb
grape-1.2.3 spec/grape/util/strict_hash_configuration_spec.rb
grape-1.2.2 spec/grape/util/strict_hash_configuration_spec.rb
grape-1.2.1 spec/grape/util/strict_hash_configuration_spec.rb
grape-1.2.0 spec/grape/util/strict_hash_configuration_spec.rb
grape-1.1.0 spec/grape/util/strict_hash_configuration_spec.rb
grape-1.0.3 spec/grape/util/strict_hash_configuration_spec.rb
grape-1.0.2 spec/grape/util/strict_hash_configuration_spec.rb