This commit is contained in:
Shugo Maeda 2019-06-21 18:02:24 +09:00
Родитель 16729f6430
Коммит 38ccb8f747
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 568AD8CEAD744A13
1 изменённых файлов: 0 добавлений и 8 удалений

Просмотреть файл

@ -116,14 +116,6 @@ class TestLazyEnumerator < Test::Unit::TestCase
assert_equal(expected, a.lazy.map {|*args| args}.map {|*args| args}.to_a, bug)
end
def test_filter_map
a = Step.new(1..3)
assert_equal(2, a.filter_map {|x| x.odd? && x * 2}.first)
assert_equal(3, a.current)
assert_equal(2, a.lazy.filter_map {|x| x.odd? && x * 2}.first)
assert_equal(1, a.current)
end
def test_flat_map
a = Step.new(1..3)
assert_equal(2, a.flat_map {|x| [x * 2]}.first)