13 lines
385 B
Ruby
13 lines
385 B
Ruby
ENV["VAGRANT_FORCE_PLUGINS"] = "1"
|
|
|
|
require_relative "test/acceptance/base"
|
|
|
|
Vagrant::Spec::Acceptance.configure do |c|
|
|
c.component_paths << File.expand_path("../test/acceptance", __FILE__)
|
|
c.skeleton_paths << File.expand_path("../test/acceptance/skeletons", __FILE__)
|
|
|
|
c.provider "virtualbox",
|
|
box: "<PATH TO MINIMAL BOX>",
|
|
contexts: ["provider-context/virtualbox"]
|
|
end
|