mirror of
https://github.com/RustPython/RustPython.git
synced 2026-06-02 19:39:49 +09:00
Check output of logger calls.
This commit is contained in:
@@ -10,5 +10,9 @@ import logging
|
||||
logging.error('WOOT')
|
||||
logging.warning('WARN')
|
||||
|
||||
print(f.getvalue())
|
||||
res = f.getvalue()
|
||||
|
||||
assert 'WOOT' in res
|
||||
assert 'WARN' in res
|
||||
print(res)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user