summaryrefslogtreecommitdiffhomepage
path: root/mrbgems/mruby-enumerator/test/enumerator.rb
AgeCommit message (Collapse)Author
2018-09-19Remove implicit conversion using `to_int` method.Yukihiro "Matz" Matsumoto
The ISO standard does not include implicit type conversion using `to_int`. This implicit conversion often causes vulnerability. There will be no more attacks like #4120. In addition, we have added internal convenience method `__to_int` which does type check and conversion (from floats).
2018-03-27Reimplement `Enumerable#zip` with Enumeratorksss
for fix some specs - [passes each element of the result array to a block and return nil if a block is given](https://github.com/ruby/spec/blob/a585ec35d185435e5c11f371ba4ed2a29d8817bd/core/enumerable/zip_spec.rb#L11-L17) - [converts arguments to arrays using #to_ary](https://github.com/ruby/spec/blob/a585ec35d185435e5c11f371ba4ed2a29d8817bd/core/enumerable/zip_spec.rb#L23-L27) - [converts arguments to enums using #to_enum](https://github.com/ruby/spec/blob/a585ec35d185435e5c11f371ba4ed2a29d8817bd/core/enumerable/zip_spec.rb#L29-L34) - [gathers whole arrays as elements when each yields multiple](https://github.com/ruby/spec/blob/a585ec35d185435e5c11f371ba4ed2a29d8817bd/core/enumerable/zip_spec.rb#L36-L39)
2017-11-22Some cosmetic changesYukihiro "Matz" Matsumoto
2017-10-28Change the order of "expected" and "actual" in testYukihiro "Matz" Matsumoto
2017-03-30Fix Enumerator#each_with_index with blockKenji Okimoto
In previous version, ``` a = [3, 2, 1] e = a.each e.sort_by(&:to_i) # => [] ``` In this version, ``` a = [3, 2, 1] e = a.each e.sort_by(&:to_i) # => [1, 2, 3] ```
2016-12-01Support svalueksss
2015-10-21loop may return StopIteration#result; [ruby-bugs#11498]Yukihiro "Matz" Matsumoto
2014-04-30remove trailing spacesNobuyoshi Nakada
2014-04-06Add args in Enumerator#inspectJun Hiroe
2014-03-23Hash#{reject,reject!} fix yield valueksss
2014-03-23Hash#{select,select!} fix yield valueksss
2014-03-23Hash#each_{key,value} support return Enumeratorksss
if non block given
2014-03-19Merge pull request #1882 from ksss/enum-find_allYukihiro "Matz" Matsumoto
Enumerable#find_all return Enumerator if non block given
2014-03-17Enumerable#find_all return Enumerator if non block givenksss
2014-03-17Enumrable#each_with_index return Enumerator if non block givenksss
2014-03-15add test for Array#each_index if non block givenksss
2014-03-15fix variable name typoksss
2014-03-15test split and to detailksss
2014-03-15fix self modifying bugksss
2014-03-15fix return value for with_indexksss
2014-03-13add mruby-enumeratorksss