This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import sys | |
import unittest | |
from contextlib import contextmanager | |
@contextmanager | |
def assert_not_raises(self, exc_type): | |
try: | |
yield None | |
except exc_type: |