Total Complexity | 1 |
Total Lines | 12 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | # Copyright Pincer 2021-Present |
||
|
|||
2 | # Full MIT License can be found in `LICENSE` at the project root. |
||
3 | |||
4 | from contextlib import contextmanager |
||
5 | |||
6 | |||
7 | @contextmanager |
||
8 | def assert_not_raises(): |
||
9 | """Dummy context manager to highlight a row of a test |
||
10 | that should not raises any exception""" |
||
11 | yield |
||
12 |