(self)
| 360 | test_utils.cleanup() |
| 361 | |
| 362 | def test_default_config(self): |
| 363 | config = _from_json({}) |
| 364 | env_vars = config.env_vars.build_env_vars() |
| 365 | self.assertEquals(env_vars, os.environ) |
| 366 | |
| 367 | def test_config_when_safe_env_variables_used(self): |
| 368 | config = _from_json({'title': '$$VAR1', 'auth': {'type': 'ldap', 'url': '$$MY_SECRET'}}) |
nothing calls this directly
no test coverage detected