diff options
Diffstat (limited to 'rake_tasks/test.rake')
-rw-r--r-- | rake_tasks/test.rake | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/rake_tasks/test.rake b/rake_tasks/test.rake index 4e245c0..1033565 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} -w ./sample/suite.rb"
+ ruby "./sample/suite.rb"
end
desc 'run functional tests'
task :functional do
- system "#{RUBY} -w ./test/functional/suite.rb"
+ ruby "./test/functional/suite.rb"
end
desc 'run all scanner tests'
task :scanners do
- system "#{RUBY} -w ./test/scanners/suite.rb"
+ ruby "./test/scanners/suite.rb"
end
desc 'clean test output files'
|