Total Complexity | 1 |
Total Lines | 9 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | from contextlib import contextmanager |
||
|
|||
2 | |||
3 | |||
4 | @contextmanager |
||
5 | def assert_not_raises(): |
||
6 | """Dummy context manager to highlight a row of a test |
||
7 | that should not raises any exception""" |
||
8 | yield |
||
9 |