summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKornelius Kalnbach <murphy@rubychan.de>2017-09-03 10:32:22 +0200
committerKornelius Kalnbach <murphy@rubychan.de>2017-09-03 10:32:29 +0200
commit931ee0a74ba13049e452fb6c6d594750768cb908 (patch)
tree2649e48a626f4fc5df24620ee0861193c24f6631
parent3b557a61ce6b3e5773df8e899bd0b1b8c7745415 (diff)
downloadcoderay-931ee0a74ba13049e452fb6c6d594750768cb908.tar.gz
don't try to run RedCloth tests with frozen string literals (they fail)
-rw-r--r--rake_tasks/test.rake2
1 files changed, 1 insertions, 1 deletions
diff --git a/rake_tasks/test.rake b/rake_tasks/test.rake
index b15b999..1a23a5b 100644
--- a/rake_tasks/test.rake
+++ b/rake_tasks/test.rake
@@ -2,7 +2,7 @@ namespace :test do
desc 'run functional tests'
task :functional do
ruby './test/functional/suite.rb'
- ruby './test/functional/for_redcloth.rb'
+ ruby './test/functional/for_redcloth.rb' unless (''.chop! rescue true)
end
desc 'run unit tests'