(self)
| 21 | |
| 22 | class TestEnvironmentLoading(unittest.TestCase): |
| 23 | def setUp(self): |
| 24 | # Save original environment |
| 25 | self.original_env = dict(os.environ) |
| 26 | # Clear environment variables we're testing |
| 27 | for key in ['TEST_VAR']: |
| 28 | if key in os.environ: |
| 29 | del os.environ[key] |
| 30 | |
| 31 | def tearDown(self): |
| 32 | # Restore original environment |
nothing calls this directly
no outgoing calls
no test coverage detected