Sha256: 0bcf83a90ddf0d106ec4560066323eb2a190de00821fbe37773f39e74613065a

Contents?: true

Size: 648 Bytes

Versions: 25

Compression:

Stored size: 648 Bytes

Contents

require File.expand_path(File.join(File.dirname(__FILE__), '..', '..', 'lib', 'rspec', 'instafail'))

describe 'x' do
  it 'fails logically' do
    1.should == 2
  end

  it 'b' do
  end

  it 'c' do
  end

  it 'pends' do
    pending
    raise
  end

  it 'raises a simple error' do
    raise 'shallow failure'
  end

  it 'raises a hidden error' do
    error = ExceptionWrappingException.new('There is an error in this error.')
    error.original_exception = RuntimeError.new('There is no error in this error.')
    raise error
  end

  it 'e' do
  end
end

class ExceptionWrappingException < RuntimeError
  attr_accessor :original_exception
end

Version data entries

25 entries across 17 versions & 3 rubygems

Version Path
rspec-instafail-0.2.0 spec/rspec_1/a_test.rb
rspec-instafail-0.2.0 spec/rspec_2/a_test.rb
rspec-instafail-0.1.9 spec/rspec_2/a_test.rb
rspec-instafail-0.1.8 spec/rspec_2/a_test.rb
rspec-instafail-0.1.7 spec/rspec_2/a_test.rb