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