diff options
author | Nobuyoshi Nakada <[email protected]> | 2020-02-13 14:06:07 +0900 |
---|---|---|
committer | Nobuyoshi Nakada <[email protected]> | 2020-02-20 18:06:19 +0900 |
commit | f5abcf767edcd475263ca9d8c06d0bb32a417ba9 (patch) | |
tree | bbb47c146f9bace6772045daa01c660e107a22de /test/rdoc | |
parent | 56d33b3ea8cd2f8360ec891da10552d708522ab7 (diff) |
[ruby/rdoc] Removed `RDoc::Context::Section#sequence`
It has been deprecated since 2011.
https://github.com/ruby/rdoc/commit/5c2aa0f77d
Diffstat (limited to 'test/rdoc')
-rw-r--r-- | test/rdoc/test_rdoc_context_section.rb | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/test/rdoc/test_rdoc_context_section.rb b/test/rdoc/test_rdoc_context_section.rb index c520ad05a5..24c68c49dd 100644 --- a/test/rdoc/test_rdoc_context_section.rb +++ b/test/rdoc/test_rdoc_context_section.rb @@ -143,13 +143,5 @@ class TestRDocContextSection < RDoc::TestCase assert_equal doc(other_comment.parse), loaded.comments end - def test_sequence - _, err = verbose_capture_output do - assert_match(/\ASEC\d{5}\Z/, @s.sequence) - end - - assert_equal "#{@S}#sequence is deprecated, use #aref\n", err - end - end |