vaguerent/test/unit/vagrant/plugin/v1/communicator_test.rb
Mitchell Hashimoto a1cef830e3 Add the Communicator plugin API.
This allows communication protocols to be defined for the machine. This
is how things like SSH will be implemented.
2012-08-08 21:28:28 -07:00

10 lines
233 B
Ruby

require File.expand_path("../../../../base", __FILE__)
describe Vagrant::Plugin::V1::Communicator do
let(:machine) { Object.new }
it "should not match by default" do
described_class.match?(machine).should_not be
end
end