forked from mizzy/specinfra
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Rakefile
39 lines (31 loc) · 852 Bytes
/
Rakefile
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
33
34
35
36
37
38
39
require "bundler/gem_tasks"
begin
require "rspec/core/rake_task"
require "octorelease"
rescue LoadError
end
if defined?(RSpec)
task :spec => 'spec:all'
namespace :spec do
task :all => [ :helper, :backend, :configuration, :command ]
RSpec::Core::RakeTask.new(:helper) do |t|
t.pattern = "spec/helper/*_spec.rb"
end
task :backend => 'backend:all'
namespace :backend do
backends = %w[exec ssh]
task :all => backends
backends.each do |backend|
RSpec::Core::RakeTask.new(backend) do |t|
t.pattern = "spec/backend/#{backend}/*_spec.rb"
end
end
end
RSpec::Core::RakeTask.new(:configuration) do |t|
t.pattern = "spec/configuration_spec.rb"
end
RSpec::Core::RakeTask.new(:command) do |t|
t.pattern = "spec/command/**/*.rb"
end
end
end