vaguerent/test/unit/vagrant/config/v2/dummy_config_test.rb

35 lines
911 B
Ruby

# Copyright (c) HashiCorp, Inc.
# SPDX-License-Identifier: BUSL-1.1
require File.expand_path("../../../../base", __FILE__)
describe Vagrant::Config::V2::DummyConfig do
it "should allow attribute setting" do
expect { subject.foo = :bar }.
to_not raise_error
end
it "should allow method calls that return more DummyConfigs" do
expect(subject.foo).to be_kind_of(described_class)
end
it "should allow hash access" do
expect { subject[:foo] }.
to_not raise_error
expect(subject[:foo]).to be_kind_of(described_class)
end
it "should allow setting hash values" do
expect { subject[:foo] = :bar }.
to_not raise_error
end
it "should survive being the last arg to a method that captures kwargs without a ruby conversion error" do
arg_capturer = lambda { |*args, **kwargs| }
expect {
arg_capturer.call(subject)
}.to_not raise_error
end
end