-
Notifications
You must be signed in to change notification settings - Fork 159
/
Rakefile
55 lines (48 loc) · 1.27 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
54
55
require "bundler/gem_tasks"
WINDOWS_PLATFORM = /mswin|win32|mingw/.freeze unless defined? WINDOWS_PLATFORM
# Style Tests
begin
require "chefstyle"
require "rubocop/rake_task"
RuboCop::RakeTask.new do |t|
t.formatters = ["progress"]
t.options = ["-D"]
end
# style is an alias for rubocop
task style: :rubocop
rescue LoadError
puts "ChefStyle not available; disabling style checking 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) do |t|
if RUBY_PLATFORM =~ WINDOWS_PLATFORM || RUBY_PLATFORM =~ /darwin/
t.cucumber_opts = "--tags 'not @not-windows'"
end
end
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, features, style
desc "run all tests"
task default: %i{coverage features style}
task test: :default