diff options
| author | Yukihiro "Matz" Matsumoto <[email protected]> | 2019-04-22 08:57:55 +0900 |
|---|---|---|
| committer | GitHub <[email protected]> | 2019-04-22 08:57:55 +0900 |
| commit | 0e704d195f7af7d902e555b2c99b244d7e16b0d2 (patch) | |
| tree | 60afc2367fbd8725da477924ac9a4591268e57a0 /test/t | |
| parent | a025cd22681cbd067c833a063fad84fc3946ccd6 (diff) | |
| parent | cdb458ed4e07698ecb028bfe397fa273ed454e13 (diff) | |
| download | mruby-0e704d195f7af7d902e555b2c99b244d7e16b0d2.tar.gz mruby-0e704d195f7af7d902e555b2c99b244d7e16b0d2.zip | |
Merge pull request #4396 from shuujii/commented-out-String-scan
Commented out `String#scan` because it is not implemented yet
Diffstat (limited to 'test/t')
| -rw-r--r-- | test/t/string.rb | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/test/t/string.rb b/test/t/string.rb index 404cf03e1..e563db55a 100644 --- a/test/t/string.rb +++ b/test/t/string.rb @@ -509,7 +509,9 @@ assert('String#rindex(UTF-8)', '15.2.10.5.31') do assert_equal nil, str.index("さ") end if UTF8STRING -# 'String#scan', '15.2.10.5.32' will be tested in mrbgems. +# assert('String#scan', '15.2.10.5.32') do +# # Not implemented yet +# end assert('String#size', '15.2.10.5.33') do assert_equal 3, 'abc'.size |
