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
|
require File.expand_path(File.join(File.dirname(__FILE__), '..', '..', 'lib', 'rspec', 'instafail'))
describe 'x' do
it 'fails logically' do
expect(1).to eq 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
context "ancestors" do
after do |example|
puts "ANCESTORS:#{example.example_group.ancestors.size}"
end
it "does not add ancestors on failure" do
raise "BAM"
end
it "does not add ancestors on failure" do
end
end
end
class ExceptionWrappingException < RuntimeError
attr_accessor :original_exception
end
|