summaryrefslogtreecommitdiff
path: root/rake_tasks/test.rake
diff options
context:
space:
mode:
Diffstat (limited to 'rake_tasks/test.rake')
-rw-r--r--rake_tasks/test.rake12
1 files changed, 4 insertions, 8 deletions
diff --git a/rake_tasks/test.rake b/rake_tasks/test.rake
index 80c557f..67c6f62 100644
--- a/rake_tasks/test.rake
+++ b/rake_tasks/test.rake
@@ -6,7 +6,9 @@ namespace :test do
desc 'run functional tests'
task :functional do
- ruby "./test/functional/suite.rb"
+ ENV['check_rubygems'] = 'true'
+ ruby './test/functional/suite.rb'
+ ruby './test/functional/for_redcloth.rb'
end
namespace :functional do
@@ -25,11 +27,6 @@ namespace :test do
end
end
- desc 'run for_redcloth tests'
- task :for_redcloth do
- ruby "./test/functional/for_redcloth.rb"
- end
-
desc 'run all scanner tests'
task :scanners do
ruby "./test/scanners/suite.rb"
@@ -71,7 +68,6 @@ namespace :test do
ruby '-v'
Rake::Task['test'].reenable
Rake::Task['test:functional'].reenable
- Rake::Task['test:for_redcloth'].reenable
Rake::Task['test:scanners'].reenable
Rake::Task['test'].invoke
else
@@ -82,5 +78,5 @@ namespace :test do
end
-task :test => %w( test:functional test:for_redcloth test:scanners )
+task :test => %w( test:functional test:scanners )
task :samples => 'test:samples' \ No newline at end of file