summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--rake_tasks/test.rake6
1 files changed, 3 insertions, 3 deletions
diff --git a/rake_tasks/test.rake b/rake_tasks/test.rake
index 894cd19..457682e 100644
--- a/rake_tasks/test.rake
+++ b/rake_tasks/test.rake
@@ -1,17 +1,17 @@
namespace :test do
desc 'run all sample tests'
task :samples do
- system 'ruby -wd ./sample/suite.rb'
+ system 'ruby -w ./sample/suite.rb'
end
desc 'run functional tests'
task :functional do
- system 'ruby -wd ./test/functional/suite.rb'
+ system 'ruby -w ./test/functional/suite.rb'
end
desc 'run all scanner tests'
task :scanners do
- system 'ruby -wd ./test/scanners/suite.rb'
+ system 'ruby -w ./test/scanners/suite.rb'
end
desc 'clean test output files'