()
| 66 | |
| 67 | |
| 68 | def test_templated_environment_variable_there(): |
| 69 | _test( |
| 70 | before={'PATH': '/usr/local/bin:/usr/bin'}, |
| 71 | patch=[('PATH', ('~/bin:', Var('PATH')))], |
| 72 | expected={'PATH': '~/bin:/usr/local/bin:/usr/bin'}, |
| 73 | ) |
| 74 | |
| 75 | |
| 76 | def test_templated_environ_sources_from_previous(): |