forked from chef/chef-vault
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Rakefile
53 lines (47 loc) · 1.09 KB
/
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
require 'bundler/gem_tasks'
# Style Tests
begin
require 'rubocop/rake_task'
RuboCop::RakeTask.new do |t|
t.formatters = ['progress']
t.options = ['-D']
t.patterns = %w(
lib/**/*.rb
spec/**/*.rb
./Rakefile
)
end
# style is an alias for rubocop
task style: :rubocop
rescue LoadError
puts 'Rubocop not available; disabling rubocop tasks'
end
# Unit Tests
begin
require 'rspec/core/rake_task'
RSpec::Core::RakeTask.new
# Coverage
desc 'Generate unit test coverage report'
task :coverage do
ENV['COVERAGE'] = 'true'
Rake::Task[:spec].invoke
end
rescue LoadError
puts 'RSpec not available; disabling rspec tasks'
# create a no-op spec task for :default
task :spec
end
# Feature Tests
begin
require 'cucumber'
require 'cucumber/rake/task'
Cucumber::Rake::Task.new(:features)
rescue LoadError
puts 'Cucumber/Aruba not available; disabling feature tasks'
# create a no-op spec task for :default
task :features
end
# test or the default task runs spec and features
desc 'run all tests'
task default: [:spec, :features]
task test: :default