puppetlabs-stdlib/Rakefile
Jeff McCune 59cc85deb5 Revert "(Maint) Add spec/functions to rake test task"
This reverts commit dbe3c8ecf6.

Because testing these against Puppet 2.6.x is causing failures.  These
need to be cleaned up, but I want to leave and this was the behavior
before I tried to "fix" it.
2012-11-27 17:06:29 -08:00

16 lines
332 B
Ruby

require 'rake'
require 'rspec/core/rake_task'
task :default => [:test]
desc 'Run RSpec'
RSpec::Core::RakeTask.new(:test) do |t|
t.pattern = 'spec/{unit}/**/*.rb'
t.rspec_opts = ['--color']
end
desc 'Generate code coverage'
RSpec::Core::RakeTask.new(:coverage) do |t|
t.rcov = true
t.rcov_opts = ['--exclude', 'spec']
end