diff options
| author | Yukihiro "Matz" Matsumoto <[email protected]> | 2018-09-19 22:01:28 +0900 |
|---|---|---|
| committer | Yukihiro "Matz" Matsumoto <[email protected]> | 2018-11-19 12:08:28 +0900 |
| commit | 5bbcea9b3bdb0e7dc048f92cebefb54858196935 (patch) | |
| tree | a9d314112808837e9475ff618244a255d0e0b16e /mrbgems/mruby-array-ext/test | |
| parent | b5d43a16a38d522aa1d1d1a889585749a6b8086d (diff) | |
| download | mruby-5bbcea9b3bdb0e7dc048f92cebefb54858196935.tar.gz mruby-5bbcea9b3bdb0e7dc048f92cebefb54858196935.zip | |
Removed `try_convert` method from Array and Hash.
Diffstat (limited to 'mrbgems/mruby-array-ext/test')
| -rw-r--r-- | mrbgems/mruby-array-ext/test/array.rb | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/mrbgems/mruby-array-ext/test/array.rb b/mrbgems/mruby-array-ext/test/array.rb index 84f9cfeaf..b7467724c 100644 --- a/mrbgems/mruby-array-ext/test/array.rb +++ b/mrbgems/mruby-array-ext/test/array.rb @@ -1,13 +1,6 @@ ## # Array(Ext) Test -assert("Array.try_convert") do - assert_nil Array.try_convert(0) - assert_nil Array.try_convert(nil) - assert_equal [], Array.try_convert([]) - assert_equal [1,2,3], Array.try_convert([1,2,3]) -end - assert("Array#assoc") do s1 = [ "colors", "red", "blue", "green" ] s2 = [ "letters", "a", "b", "c" ] |
