summaryrefslogtreecommitdiff
path: root/chef-config/Rakefile
blob: 3ef4ac2a0c62540af57a2c541338b14fec5ad0f5 (plain)
1
2
3
4
5
6
7
8
9
10
11
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