From 4138fd3626ac9b654de3bad62ab42c0ab422a6e8 Mon Sep 17 00:00:00 2001 From: Kelly Nawrocke & Aram Price Date: Tue, 1 Sep 2009 09:20:25 -0700 Subject: [PATCH] adding rake test subtasks (noop) for git submodule rake compatibility --- Rakefile | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/Rakefile b/Rakefile index 41ab959c..1ef40683 100644 --- a/Rakefile +++ b/Rakefile @@ -1,7 +1,12 @@ task :default => :noop task :noop do - puts "doing nothing" + puts "** NO-OP task to support 'git submodule' rake comaptibility in jasmine" +end + +namespace :test do + task :unit => :noop + task :integration => :noop end desc 'Builds lib/jasmine from source'