Add Rake task 'spec'

Adds the Rake task 'spec' for consistency
with other Rakefiles in Puppet related projects.
This commit is contained in:
Dan Bode 2011-12-29 15:04:56 -08:00
parent c73f8ce165
commit 48407ca8c5
1 changed files with 1 additions and 0 deletions

View File

@ -2,5 +2,6 @@ require 'rake'
require 'rspec/core/rake_task'
task :default => :test
task :spec => :test
RSpec::Core::RakeTask.new(:test)