This value should be used as a default, and allows the parent `merge` method to "just work" most of the time.
10 lines
233 B
Ruby
10 lines
233 B
Ruby
require File.expand_path("../../../../base", __FILE__)
|
|
|
|
describe Vagrant::Plugin::V2::Communicator do
|
|
let(:machine) { Object.new }
|
|
|
|
it "should not match by default" do
|
|
described_class.match?(machine).should_not be
|
|
end
|
|
end
|