mirror of
https://gitea.invidious.io/iv-org/shard-spectator.git
synced 2024-08-15 00:53:35 +00:00
Don't run after hooks if an error occurs
This commit is contained in:
parent
4222603fea
commit
4e57f6adca
1 changed files with 4 additions and 7 deletions
|
@ -40,14 +40,11 @@ module Spectator
|
||||||
# Get the proc that will call around-each hooks and the example.
|
# Get the proc that will call around-each hooks and the example.
|
||||||
wrapper = wrap_run_example(result)
|
wrapper = wrap_run_example(result)
|
||||||
|
|
||||||
begin
|
|
||||||
run_before_hooks
|
run_before_hooks
|
||||||
wrapper.call
|
wrapper.call
|
||||||
ensure
|
|
||||||
run_after_hooks
|
run_after_hooks
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
|
||||||
|
|
||||||
# Creates a proc that runs the test code
|
# Creates a proc that runs the test code
|
||||||
# and captures the result.
|
# and captures the result.
|
||||||
|
|
Loading…
Reference in a new issue