summaryrefslogtreecommitdiff
path: root/test/rdoc
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2010-04-02 05:40:39 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2010-04-02 05:40:39 +0000
commit88ccbf048f591fb610bd50ce6b74e9611435e18a (patch)
treee4bf6dac2bb8a07d4658c57c8fccc583f9fec55a /test/rdoc
parent104ff6089d337a33927f6e2cf3b8501e46402d37 (diff)
* test/rdoc/test_rdoc_parser.rb (test_class_can_parse): parse rdoc
as ruby. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27185 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/rdoc')
-rw-r--r--test/rdoc/test_rdoc_parser.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/rdoc/test_rdoc_parser.rb b/test/rdoc/test_rdoc_parser.rb
index 9eab360b24..4146d1ee35 100644
--- a/test/rdoc/test_rdoc_parser.rb
+++ b/test/rdoc/test_rdoc_parser.rb
@@ -55,7 +55,7 @@ class TestRDocParser < MiniTest::Unit::TestCase
assert_equal @RP::Simple, @RP.can_parse(jtest_file_name)
jtest_rdoc_file_name = File.expand_path '../test.ja.rdoc', __FILE__
- assert_equal @RP::Simple, @RP.can_parse(jtest_rdoc_file_name)
+ assert_equal @RP::Ruby, @RP.can_parse(jtest_rdoc_file_name)
end
##