Mitchell Hashimoto 5e490e3746 Get tests to pass
2014-01-07 19:26:03 -08:00

13 lines
214 B
Ruby

require "vagrant"
module VagrantPlugins
module HostNull
class Host < Vagrant.plugin("2", :host)
def detect?
# This host can only be explicitly chosen.
false
end
end
end
end