Sha256: e8dee835fb25bc2c26c2bec9ad31ffd0a0e3f88d91ede83ce0821a02e657a545

Contents?: true

Size: 468 Bytes

Versions: 92

Compression:

Stored size: 468 Bytes

Contents

namespace :acceptance do
  desc "shows components that can be tested"
  task :components do
    exec("vagrant-spec components --config=vagrant-spec.config.rb")
  end

  desc "runs acceptance tests"
  task :run do
    args = [
      "--config=vagrant-spec.config.rb",
    ]

    if ENV["COMPONENTS"]
      args << "--components=\"#{ENV["COMPONENTS"]}\""
    end

    command = "vagrant-spec test #{args.join(" ")}"
    puts command
    puts
    exec(command)
  end
end

Version data entries

92 entries across 85 versions & 9 rubygems

Version Path
vagrant-skytap-0.3.2 tasks/acceptance.rake
vagrant-skytap-0.3.1 tasks/acceptance.rake
vagrant-skytap-0.3.0 tasks/acceptance.rake
vagrant-skytap-0.2.10 tasks/acceptance.rake
vagrant-skytap-0.2.9 tasks/acceptance.rake
vagrant-skytap-0.2.8 tasks/acceptance.rake
vagrant-skytap-0.2.7 tasks/acceptance.rake
vagrant-skytap-0.2.6 tasks/acceptance.rake
vagrant-skytap-0.2.5 tasks/acceptance.rake
vagrant-skytap-0.2.4 tasks/acceptance.rake
vagrant-skytap-0.2.3 tasks/acceptance.rake
vagrant-skytap-0.2.2 tasks/acceptance.rake
vagrant-skytap-0.2.1 tasks/acceptance.rake
vagrant-skytap-0.2.0 tasks/acceptance.rake
vagrant-unbundled-1.8.1.2 tasks/acceptance.rake
vagrant-unbundled-1.8.1.1 tasks/acceptance.rake
vagrant-skytap-0.1.11 tasks/acceptance.rake
vagrant-skytap-0.1.10 tasks/acceptance.rake
vagrant-skytap-0.1.9 tasks/acceptance.rake
vagrant-skytap-0.1.8 tasks/acceptance.rake