aboutsummaryrefslogtreecommitdiffstats
path: root/spec/ruby/core/enumerator/lazy/slice_when_spec.rb
blob: e7673def47c52bd3b8eff8d294fe4ce329cf5e1d (plain)
1
2
3
4
5
6
7
8
9
require_relative '../../../spec_helper'

describe "Enumerator::Lazy#slice_when" do
  it "works with an infinite enumerable" do
    s = 0..Float::INFINITY
    s.lazy.slice_when { |a, b| true }.first(100).should ==
      s.first(100).slice_when { |a, b| true }.to_a
  end
end