summaryrefslogtreecommitdiff
path: root/rake_tasks
diff options
context:
space:
mode:
authormurphy <murphy@rubychan.de>2010-01-01 04:44:10 +0000
committermurphy <murphy@rubychan.de>2010-01-01 04:44:10 +0000
commit228726f6bfed89b86fb985d554040f91de776840 (patch)
tree007a9c0201ff8ec6f8f6b665ca65266acd950715 /rake_tasks
parentc45da135ebc403f9e10c09afec73b44bdbc74153 (diff)
downloadcoderay-228726f6bfed89b86fb985d554040f91de776840.tar.gz
Cleaning up functional tests; test:functional scans without loading Rubygems now.
Diffstat (limited to 'rake_tasks')
-rw-r--r--rake_tasks/test.rake8
1 files changed, 7 insertions, 1 deletions
diff --git a/rake_tasks/test.rake b/rake_tasks/test.rake
index bb22f36..ebde606 100644
--- a/rake_tasks/test.rake
+++ b/rake_tasks/test.rake
@@ -25,6 +25,11 @@ 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"
@@ -60,6 +65,7 @@ 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
@@ -70,5 +76,5 @@ namespace :test do
end
-task :test => %w( test:functional test:scanners )
+task :test => %w( test:functional test:for_redcloth test:scanners )
task :samples => 'test:samples' \ No newline at end of file