summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authormurphy <murphy@rubychan.de>2008-08-28 05:35:55 +0000
committermurphy <murphy@rubychan.de>2008-08-28 05:35:55 +0000
commit03ffb9431e140e09e5f1a7ae6c2d582c1895554e (patch)
tree851b2e84707d0ae983690719e32866fc1863e7d3 /test
parent282dfb77a71d3c9ef20aa8c0ad955e4061652b75 (diff)
downloadcoderay-03ffb9431e140e09e5f1a7ae6c2d582c1895554e.tar.gz
Changed CodeRay.for_redcloth into require 'coderay/for_redcloth'.
* Cleanup in documentation.rake.
Diffstat (limited to 'test')
-rwxr-xr-xtest/functional/basic.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/functional/basic.rb b/test/functional/basic.rb
index 07818ea..2880c77 100755
--- a/test/functional/basic.rb
+++ b/test/functional/basic.rb
@@ -36,7 +36,7 @@ class BasicTest < Test::Unit::TestCase
def test_for_redcloth
require 'rubygems'
- CodeRay.for_redcloth
+ require 'coderay/for_redcloth'
assert_equal '<p><span lang="ruby" class="CodeRay">puts <span style="background-color:#fff0f0"><span style="color:#710">&quot;</span><span style="color:#D20">Hello, World!</span><span style="color:#710">&quot;</span></span></span></p>',
RedCloth.new('@[ruby]puts "Hello, World!"@').to_html
end