Files
openide/python/helpers/pydev/pydev_tests_python/test_null.py
Elizaveta Shashkova 626a14835a IDEA-CR-53093: PY-37226 Revert pydev prefix for test directories
GitOrigin-RevId: 3d4abb05167e85cb44720e36d0fa3b949f199f30
2019-10-08 12:33:08 +00:00

8 lines
181 B
Python

def test_null():
from _pydevd_bundle.pydevd_constants import Null
null = Null()
assert not null
assert len(null) == 0
with null as n:
n.write('foo')