adding rake test subtasks (noop) for git submodule rake compatibility

This commit is contained in:
Kelly Nawrocke & Aram Price 2009-09-01 09:20:25 -07:00
parent 985d08885e
commit 4138fd3626
1 changed files with 6 additions and 1 deletions

View File

@ -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'