diff options
author | Nobuyoshi Nakada <[email protected]> | 2022-02-09 19:13:54 +0900 |
---|---|---|
committer | git <[email protected]> | 2022-02-09 19:41:12 +0900 |
commit | 994b3f1dc61b3eb3021fad82f6a7b934af8d0961 (patch) | |
tree | 7a32af5799652ffb1615d52ca455ea06d64514ff /test/rdoc/test_rdoc_cross_reference.rb | |
parent | 8db06fe2c9c1103fd623e97c80660e41502e6580 (diff) |
[ruby/rdoc] Allow cross references to negation operator method
https://github.com/ruby/rdoc/commit/69cafb213a
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 bd96006976..0417bf5d50 100644 --- a/test/rdoc/test_rdoc_cross_reference.rb +++ b/test/rdoc/test_rdoc_cross_reference.rb @@ -2,7 +2,7 @@ require File.expand_path '../xref_test_case', __FILE__ class TestRDocCrossReference < XrefTestCase - OPERATOR_METHODS = %w'== === != =~ !~ < > <= >= <=> [] []= << >> -@ +@ ! - + * / % ** !@ ` | & ^' + OPERATOR_METHODS = %w'== === != =~ !~ < > <= >= <=> [] []= << >> -@ +@ ! - + * / % ** !@ ` | & ^ ~' def setup super |