Sha256: 1040cc5d406224c878daa9061008994a3d33a35b2b30feb20f8a025ad2af073d
Contents?: true
Size: 501 Bytes
Versions: 52
Compression:
Stored size: 501 Bytes
Contents
require File.expand_path('../../../spec_helper', __FILE__) require File.expand_path('../../../fixtures/enumerator/classes', __FILE__) describe :enum_cons, :shared => true do it "returns an enumerator of the receiver with iteration of each_cons for each array of n concecutive elements" do a = [] enum = EnumSpecs::Numerous.new.enum_cons(3) enum.each {|x| a << x} enum.should be_an_instance_of(enumerator_class) a.should == [[2, 5, 3], [5, 3, 6], [3, 6, 1], [6, 1, 4]] end end
Version data entries
52 entries across 52 versions & 2 rubygems