diff options
Diffstat (limited to 'spec/ruby/core/exception/result_spec.rb')
| -rw-r--r-- | spec/ruby/core/exception/result_spec.rb | 16 |
1 files changed, 4 insertions, 12 deletions
diff --git a/spec/ruby/core/exception/result_spec.rb b/spec/ruby/core/exception/result_spec.rb index 350c071f60..451ff43af5 100644 --- a/spec/ruby/core/exception/result_spec.rb +++ b/spec/ruby/core/exception/result_spec.rb @@ -1,10 +1,4 @@ -require File.expand_path('../../../spec_helper', __FILE__) - -describe "StopIteration" do - it "is a subclass of IndexError" do - StopIteration.superclass.should equal(IndexError) - end -end +require_relative '../../spec_helper' describe "StopIteration#result" do before :each do @@ -20,10 +14,8 @@ describe "StopIteration#result" do 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 - ) + -> { @enum.next }.should.raise(StopIteration) { |error| + error.result.should.equal?(:method_returned) + } end end |
