vagrant/test/unit/vagrant/plugin/v2/communicator_test.rb

10 lines
237 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
expect(described_class.match?(machine)).not_to be
end
end