mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
401b64c4e8
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@62656 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
29 lines
632 B
Ruby
29 lines
632 B
Ruby
require_relative '../../spec_helper'
|
|
|
|
describe "StopIteration" do
|
|
it "is a subclass of IndexError" do
|
|
StopIteration.superclass.should equal(IndexError)
|
|
end
|
|
end
|
|
|
|
describe "StopIteration#result" do
|
|
before :each do
|
|
obj = Object.new
|
|
def obj.each
|
|
yield :yield_returned_1
|
|
yield :yield_returned_2
|
|
:method_returned
|
|
end
|
|
@enum = obj.to_enum
|
|
end
|
|
|
|
it "returns the method-returned-object from an Enumerator" do
|
|
@enum.next
|
|
@enum.next
|
|
lambda { @enum.next }.should(
|
|
raise_error(StopIteration) do |error|
|
|
error.result.should equal(:method_returned)
|
|
end
|
|
)
|
|
end
|
|
end
|