1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57
|
# -*- encoding: us-ascii -*-
require_relative '../../spec_helper'
describe "Enumerator#initialize" do
before :each do
@uninitialized = Enumerator.allocate
end
it "is a private method" do
Enumerator.should have_private_instance_method(:initialize, false)
end
it "returns self when given a block" do
@uninitialized.send(:initialize) {}.should equal(@uninitialized)
end
# Maybe spec should be broken up?
it "accepts a block" do
@uninitialized.send(:initialize) do |yielder|
r = yielder.yield 3
yielder << r << 2 << 1
end
@uninitialized.should be_an_instance_of(Enumerator)
r = []
@uninitialized.each{|x| r << x; x * 2}
r.should == [3, 6, 2, 1]
end
it "sets size to nil if size is not given" do
@uninitialized.send(:initialize) {}.size.should be_nil
end
it "sets size to nil if the given size is nil" do
@uninitialized.send(:initialize, nil) {}.size.should be_nil
end
it "sets size to the given size if the given size is Float::INFINITY" do
@uninitialized.send(:initialize, Float::INFINITY) {}.size.should equal(Float::INFINITY)
end
it "sets size to the given size if the given size is an Integer" do
@uninitialized.send(:initialize, 100) {}.size.should == 100
end
it "sets size to the given size if the given size is a Proc" do
@uninitialized.send(:initialize, -> { 200 }) {}.size.should == 200
end
describe "on frozen instance" do
it "raises a FrozenError" do
-> {
@uninitialized.freeze.send(:initialize) {}
}.should raise_error(FrozenError)
end
end
end
|