diff options
author | Jeff McCune <jeff@puppetlabs.com> | 2011-12-30 15:45:00 -0800 |
---|---|---|
committer | Jeff McCune <jeff@puppetlabs.com> | 2011-12-30 15:48:15 -0800 |
commit | 0be3090f0f01e9bf41827fa3982793e9e71293f3 (patch) | |
tree | d72ad97a6798280dde8013a6ce3707688386697e | |
parent | 842b0aa19cecf8251c69cb29fba59c985841c615 (diff) |
(#11607) Add Rakefile to enable spec testing
Without this patch the 2.1.x branch does not have a Rakefile like the
2.2.x and master branches do. This is a problem for the continuous
integration testing since it executes `rake test` against 2.1.x, 2.2.x
and master currently.
This patch fixes the problem by copying the Rakefile into place enabling
the `rake test` task.
Reviewed-by: Josh Cooper
-rw-r--r-- | Rakefile | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/Rakefile b/Rakefile new file mode 100644 index 0000000..01b2a31 --- /dev/null +++ b/Rakefile @@ -0,0 +1,16 @@ +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 |