mirror of
https://github.com/cool-RR/PySnooper.git
synced 2026-01-13 00:08:05 -05:00
13 lines
304 B
Python
13 lines
304 B
Python
# Copyright 2019 Ram Rachum and collaborators.
|
|
# This program is distributed under the MIT license.
|
|
|
|
import pytest
|
|
|
|
from . import mini_toolbox
|
|
|
|
|
|
def test_output_capturer_doesnt_swallow_exceptions():
|
|
with pytest.raises(ZeroDivisionError):
|
|
with mini_toolbox.OutputCapturer():
|
|
1 / 0
|