diff options
author | Mike Dalessio <[email protected]> | 2021-10-11 10:47:12 -0400 |
---|---|---|
committer | git <[email protected]> | 2021-10-16 01:40:47 +0900 |
commit | 4c42540da2c26f2d83b43c7a3c61e17d610896e8 (patch) | |
tree | 18742c452569872b569823e5b6ed222b62867619 /test/rdoc/test_rdoc_cross_reference.rb | |
parent | 7aec65add42d20ba8d70ad33c7b1e8978007e29e (diff) |
[ruby/rdoc] Support linking #==
See related commits:
- ebc66662 for #===
- 4943d208 for #[], #[]=, #<<, and #>>
https://github.com/ruby/rdoc/commit/8e47f7840a
Diffstat (limited to 'test/rdoc/test_rdoc_cross_reference.rb')
-rw-r--r-- | test/rdoc/test_rdoc_cross_reference.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/rdoc/test_rdoc_cross_reference.rb b/test/rdoc/test_rdoc_cross_reference.rb index 183de0930d..94ddc1e1e4 100644 --- a/test/rdoc/test_rdoc_cross_reference.rb +++ b/test/rdoc/test_rdoc_cross_reference.rb @@ -20,7 +20,7 @@ class TestRDocCrossReference < XrefTestCase def test_METHOD_REGEXP_STR re = /#{RDoc::CrossReference::METHOD_REGEXP_STR}/ - %w'=== [] []= << >>'.each do |x| + %w'== === [] []= << >>'.each do |x| re =~ x assert_equal x, $& end |