mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-22 23:20:57 +07:00
IDEA-CR-53093: PY-37226 Revert pydev prefix for test directories
GitOrigin-RevId: 3d4abb05167e85cb44720e36d0fa3b949f199f30
This commit is contained in:
committed by
intellij-monorepo-bot
parent
20597fd799
commit
626a14835a
11
python/helpers/pydev/pydev_tests_python/test_dump_threads.py
Normal file
11
python/helpers/pydev/pydev_tests_python/test_dump_threads.py
Normal file
@@ -0,0 +1,11 @@
|
||||
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
|
||||
Reference in New Issue
Block a user