summaryrefslogtreecommitdiff
path: root/chef-helpers/Rakefile
blob: df2f59e29865046fcab0840c2e8cc6a927afdd82 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
require "bundler/gem_tasks"

task default: :spec

begin
  require "rspec/core/rake_task"
  desc "Run standard specs"
  RSpec::Core::RakeTask.new(:spec) do |t|
    t.pattern = FileList["spec/**/*_spec.rb"]
  end
rescue LoadError
  STDERR.puts "\n*** RSpec not available. (sudo) gem install rspec to run unit tests. ***\n\n"
end