pypy/module/__pypy__/test/test_os.py::AppTestOs::()::test_real_getenv
self = <pypy.interpreter.typedef.W_ObjectObjectUserDictWeakrefable object at 0x000001d4e295bad0>
def test_real_getenv(self):
import __pypy__.os
import os
key = 'UNLIKELY_SET'
assert key not in os.environ
os.putenv(key, '42')
# this one skips Python cache
> assert __pypy__.os.real_getenv(key) == '42'
E (application-level) AssertionError
[d:\pypy_stuff\buildbot64\slave\own-win-x86-64\build\pypy\module\__pypy__\test\test_os.py:4]:9: AssertionError
builder: own-win-x86-64 build #2232
test: pypy/module/__pypy__/test/test_os/py/AppTestOs/()/test_real_getenv