Start acceptance test config stuff
This commit is contained in:
parent
6b1493ec3f
commit
dbfce21e05
|
@ -6,6 +6,7 @@ acceptance_config.yml
|
||||||
boxes/*
|
boxes/*
|
||||||
/Vagrantfile
|
/Vagrantfile
|
||||||
/.vagrant
|
/.vagrant
|
||||||
|
/vagrant-spec.config.rb
|
||||||
|
|
||||||
# Bundler/Rubygems
|
# Bundler/Rubygems
|
||||||
*.gem
|
*.gem
|
||||||
|
|
2
Gemfile
2
Gemfile
|
@ -1,3 +1,5 @@
|
||||||
source "http://rubygems.org"
|
source "http://rubygems.org"
|
||||||
|
|
||||||
gemspec
|
gemspec
|
||||||
|
|
||||||
|
gem 'vagrant-spec', path: "../vagrant-spec"
|
||||||
|
|
|
@ -13,6 +13,7 @@ namespace :test do
|
||||||
end
|
end
|
||||||
|
|
||||||
RSpec::Core::RakeTask.new(:acceptance) do |t|
|
RSpec::Core::RakeTask.new(:acceptance) do |t|
|
||||||
|
$: << File.expand_path("../test/acceptance", __FILE__)
|
||||||
t.pattern = "test/acceptance/**/*_test.rb"
|
t.pattern = "test/acceptance/**/*_test.rb"
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
|
@ -0,0 +1 @@
|
||||||
|
require "vagrant-testlib/acceptance"
|
|
@ -0,0 +1,4 @@
|
||||||
|
Vagrant::Spec::Acceptance.configure do |c|
|
||||||
|
c.provider "virtualbox",
|
||||||
|
box_basic: "/Users/mitchellh/Downloads/package.box"
|
||||||
|
end
|
Loading…
Reference in New Issue