Skip to content

Instantly share code, notes, and snippets.

View worldmind's full-sized avatar

Alexey Shrub worldmind

View GitHub Profile
@worldmind
worldmind / testcase_assert_not_raises.py
Last active January 25, 2019 08:01
Python unittest: Testing an exception is not raised
import sys
import unittest
from contextlib import contextmanager
@contextmanager
def assert_not_raises(self, exc_type):
try:
yield None
except exc_type: