forked from mizzy/serverspec
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRakefile
More file actions
32 lines (25 loc) · 834 Bytes
/
Rakefile
File metadata and controls
32 lines (25 loc) · 834 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
require "bundler/gem_tasks"
require "rspec/core/rake_task"
require "octorelease"
task :spec => 'spec:all'
namespace :spec do
oses = %w( darwin debian gentoo plamo redhat aix solaris solaris10 solaris11 smartos windows freebsd freebsd10 arch)
backends = %w( exec ssh cmd winrm powershell )
task :all => [ oses.map {|os| "spec:#{os}" }, backends, :helper, :unit ].flatten
oses.each do |os|
RSpec::Core::RakeTask.new(os.to_sym) do |t|
t.pattern = "spec/#{os}/*_spec.rb"
end
end
backends.each do |backend|
RSpec::Core::RakeTask.new(backend) do |t|
t.pattern = "spec/backend/#{backend.to_s}/*_spec.rb"
end
end
RSpec::Core::RakeTask.new(:helper) do |t|
t.pattern = "spec/helper/*_spec.rb"
end
RSpec::Core::RakeTask.new(:unit) do |t|
t.pattern = "spec/unit/*_spec.rb"
end
end