()
| 96 | |
| 97 | |
| 98 | def test_integration_os_environ(): |
| 99 | with mock.patch.dict(os.environ, {'FOO': 'bar'}, clear=True): |
| 100 | assert os.environ == {'FOO': 'bar'} |
| 101 | with envcontext((('HERP', 'derp'),)): |
| 102 | assert os.environ == {'FOO': 'bar', 'HERP': 'derp'} |
| 103 | assert os.environ == {'FOO': 'bar'} |
nothing calls this directly
no test coverage detected