From 7c5958ae7b297a82b775d0b8c804463a4ed0e442 Mon Sep 17 00:00:00 2001 From: Alexey Verkhovsky Date: Thu, 12 May 2005 00:34:37 +0000 Subject: [PATCH] Corrected shorthand Rake tasks for unit testing --- rakefile.rb | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/rakefile.rb b/rakefile.rb index a6f4665e..1495f84e 100755 --- a/rakefile.rb +++ b/rakefile.rb @@ -123,8 +123,12 @@ else end # Shorthand aliases -desc 'Shorthand for test_unit' -task :tu => :test_unit +desc 'Shorthand for test_units' +task :tu => :test_units +desc 'Shorthand for test_units' +task :ut => :test_units desc 'Shorthand for test_functional' task :tf => :test_functional +desc 'Shorthand for test_functional' +task :ft => :test_functional