mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 22:51:17 +07:00
11 lines
354 B
Python
11 lines
354 B
Python
def test_dump_threads():
|
|
import pydevd
|
|
try:
|
|
from StringIO import StringIO
|
|
except:
|
|
from io import StringIO
|
|
stream = StringIO()
|
|
pydevd.dump_threads(stream=stream)
|
|
contents = stream.getvalue()
|
|
assert 'Thread MainThread (daemon: False, pydevd thread: False)' in contents
|
|
assert 'test_dump_threads' in contents |