mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-15 02:59:33 +07:00
10 lines
274 B
Python
10 lines
274 B
Python
import logging
|
|
from nose.tools import assert_raises_regex
|
|
|
|
|
|
def _assert_stuff(i):
|
|
with assert_raises_regex(
|
|
logging.INFO,
|
|
'Did stuff to {} because of reasons that take up a whole line of text'.format(
|
|
i.relname)):
|
|
pass |