diff --git a/spec/Rakefile b/spec/Rakefile index 5d0b7cc07..40d107312 100644 --- a/spec/Rakefile +++ b/spec/Rakefile @@ -1,9 +1,10 @@ require File.join(File.dirname(__FILE__), "spec_helper.rb") require 'rake' require 'spec/rake/spectask' desc "Run all spec unit tests" Spec::Rake::SpecTask.new('unit') do |t| t.spec_files = FileList['unit/**/*.rb'] end +task :default => [:unit]