summaryrefslogtreecommitdiff
path: root/spec/ruby/core/enumerator/lazy/slice_when_spec.rb
blob: f83403425db9ca2da4b53d70bd526aaa56a9e228 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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

  it "should return a lazy enumerator" do
    s = 0..Float::INFINITY
    s.lazy.slice_when { |a, b| true }.should be_kind_of(Enumerator::Lazy)
  end
end