2013-12-05 22:31:25 +00:00
|
|
|
require_relative "test/acceptance/base"
|
|
|
|
|
2013-12-05 21:19:15 +00:00
|
|
|
Vagrant::Spec::Acceptance.configure do |c|
|
2014-01-03 16:29:33 +00:00
|
|
|
c.component_paths << File.expand_path("../test/acceptance", __FILE__)
|
|
|
|
c.skeleton_paths << File.expand_path("../test/acceptance/skeletons", __FILE__)
|
|
|
|
|
2013-12-05 21:19:15 +00:00
|
|
|
c.provider "virtualbox",
|
2013-12-06 05:44:19 +00:00
|
|
|
box: "<PATH TO MINIMAL BOX>",
|
2013-12-11 06:27:35 +00:00
|
|
|
contexts: ["provider-context/virtualbox"]
|
2013-12-05 21:19:15 +00:00
|
|
|
end
|