mirror of
https://github.com/apache/cloudstack.git
synced 2025-11-03 04:12:31 +01:00
Give up on using test-kitchen, busser, and more of its complexity and simply run serverspec directly, via SSH.
9 lines
148 B
Ruby
9 lines
148 B
Ruby
require 'rake'
|
|
require 'rspec/core/rake_task'
|
|
|
|
RSpec::Core::RakeTask.new(:spec) do |t|
|
|
t.pattern = 'spec/*/*_spec.rb'
|
|
end
|
|
|
|
task :default => :spec
|