summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorMaxime Lapointe <hunter_spawn@hotmail.com>2019-05-30 16:46:18 -0400
committeraycabta <aycabta@gmail.com>2019-07-14 17:46:16 +0900
commitb67b07bd5bd94433051b5e0a5db800f8b22361b4 (patch)
treed228a8f792474d215f7f76f3d90a0d39aaf7a85e /test
parent73904abb951ad60483124fa620b5561015906a79 (diff)
Fix links to headings
A previous change made the header's id be fully referenced (for the sidebar I believe) but this broke links to them. This fixes the issue.
Diffstat (limited to 'test')
-rw-r--r--test/rdoc/test_rdoc_markup_to_html_crossref.rb8
1 files changed, 4 insertions, 4 deletions
diff --git a/test/rdoc/test_rdoc_markup_to_html_crossref.rb b/test/rdoc/test_rdoc_markup_to_html_crossref.rb
index 598bae3d3f..3d80980791 100644
--- a/test/rdoc/test_rdoc_markup_to_html_crossref.rb
+++ b/test/rdoc/test_rdoc_markup_to_html_crossref.rb
@@ -19,7 +19,7 @@ class TestRDocMarkupToHtmlCrossref < XrefTestCase
def test_convert_CROSSREF_label
result = @to.convert 'C1@foo'
- assert_equal para("<a href=\"C1.html#label-foo\">foo at <code>C1</code></a>"), result
+ assert_equal para("<a href=\"C1.html#class-C1-label-foo\">foo at <code>C1</code></a>"), result
result = @to.convert 'C1#m@foo'
assert_equal para("<a href=\"C1.html#method-i-m-label-foo\">foo at <code>C1#m</code></a>"),
@@ -28,12 +28,12 @@ class TestRDocMarkupToHtmlCrossref < XrefTestCase
def test_convert_CROSSREF_label_period
result = @to.convert 'C1@foo.'
- assert_equal para("<a href=\"C1.html#label-foo\">foo at <code>C1</code></a>."), result
+ assert_equal para("<a href=\"C1.html#class-C1-label-foo\">foo at <code>C1</code></a>."), result
end
def test_convert_CROSSREF_label_space
result = @to.convert 'C1@foo+bar'
- assert_equal para("<a href=\"C1.html#label-foo+bar\">foo bar at <code>C1</code></a>"),
+ assert_equal para("<a href=\"C1.html#class-C1-label-foo+bar\">foo bar at <code>C1</code></a>"),
result
end
@@ -104,7 +104,7 @@ class TestRDocMarkupToHtmlCrossref < XrefTestCase
def test_convert_RDOCLINK_rdoc_ref_label
result = @to.convert 'rdoc-ref:C1@foo'
- assert_equal para("<a href=\"C1.html#label-foo\">foo at <code>C1</code></a>"), result,
+ assert_equal para("<a href=\"C1.html#class-C1-label-foo\">foo at <code>C1</code></a>"), result,
'rdoc-ref:C1@foo'
end