Sha256: 41f27621d1ba835f71ed02e9ed2a6a2b8d50318f58fbcbe89ade5412a4f3f702

Contents?: true

Size: 1.02 KB

Versions: 39

Compression:

Stored size: 1.02 KB

Contents

require File.expand_path("../../../base", __FILE__)

require "vagrant/util/scoped_hash_override"

describe Vagrant::Util::ScopedHashOverride do
  let(:klass) do
    Class.new do
      extend Vagrant::Util::ScopedHashOverride
    end
  end

  it "should not mess with non-overrides" do
    original = {
      key: "value",
      another_value: "foo"
    }

    expect(klass.scoped_hash_override(original, "foo")).to eq(original)
  end

  it "should override if the scope matches" do
    original = {
      key: "value",
      scope__key: "replaced"
    }

    expected = {
      key: "replaced",
      scope__key: "replaced"
    }

    expect(klass.scoped_hash_override(original, "scope")).to eq(expected)
  end

  it "should ignore non-matching scopes" do
    original = {
      key: "value",
      scope__key: "replaced",
      another__key: "value"
    }

    expected = {
      key: "replaced",
      scope__key: "replaced",
      another__key: "value"
    }

    expect(klass.scoped_hash_override(original, "scope")).to eq(expected)
  end
end

Version data entries

39 entries across 32 versions & 8 rubygems

Version Path
tamtam-vagrant-reload-1.2.1 vendor/cache/vagrant-2092df529ae7/test/unit/vagrant/util/scoped_hash_override_test.rb
vagrant-aws-mkubenka-0.7.2.pre.24 vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-22795b161bf6/test/unit/vagrant/util/scoped_hash_override_test.rb
vagrant-packet-0.1.2 vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-04f7215b5e3f/test/unit/vagrant/util/scoped_hash_override_test.rb
vagrant-packet-0.1.2 vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-04f7215b5e3f/test/unit/vagrant/util/scoped_hash_override_test.rb
vagrant-packet-0.1.2 vendor/bundle/ruby/2.5.0/bundler/gems/vagrant-04f7215b5e3f/test/unit/vagrant/util/scoped_hash_override_test.rb
vagrant-packet-0.1.1 vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-04f7215b5e3f/test/unit/vagrant/util/scoped_hash_override_test.rb
vagrant-packet-0.1.1 vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-04f7215b5e3f/test/unit/vagrant/util/scoped_hash_override_test.rb
vagrant-packet-0.1.1 vendor/bundle/ruby/2.5.0/bundler/gems/vagrant-04f7215b5e3f/test/unit/vagrant/util/scoped_hash_override_test.rb
vagrant-aws-detiber-0.7.2.pre.4 vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-419afb4dcffe/test/unit/vagrant/util/scoped_hash_override_test.rb
vagrant-aws-detiber-0.7.2.pre.3 vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-419afb4dcffe/test/unit/vagrant/util/scoped_hash_override_test.rb
vagrant-aws-detiber-0.7.2.pre.2 vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-419afb4dcffe/test/unit/vagrant/util/scoped_hash_override_test.rb
vagrant-unbundled-2.0.2.0 test/unit/vagrant/util/scoped_hash_override_test.rb
vagrant-unbundled-2.0.1.0 test/unit/vagrant/util/scoped_hash_override_test.rb
vagrant-aws-mkubenka-0.7.2.pre.22 vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-f3fdbf414272/test/unit/vagrant/util/scoped_hash_override_test.rb
vagrant-aws-mkubenka-0.7.2.pre.16 vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-1ee58c40e3f5/test/unit/vagrant/util/scoped_hash_override_test.rb
vagrant-unbundled-2.0.0.1 test/unit/vagrant/util/scoped_hash_override_test.rb
vagrant-unbundled-1.9.8.1 test/unit/vagrant/util/scoped_hash_override_test.rb
vagrant-unbundled-1.9.7.1 test/unit/vagrant/util/scoped_hash_override_test.rb
vagrant-aws-mkubenka-0.7.2.pre.14 vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/vagrant/util/scoped_hash_override_test.rb
vagrant-aws-mkubenka-0.7.2.pre.11 vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/vagrant/util/scoped_hash_override_test.rb