()
| 157 | |
| 158 | |
| 159 | def test_pex_from_rc(): |
| 160 | # type: () -> None |
| 161 | with named_temporary_file(mode="w") as pexrc: |
| 162 | pexrc.write("HELLO=42") |
| 163 | pexrc.flush() |
| 164 | v = Variables(rc=pexrc.name) |
| 165 | assert v._get_int("HELLO") == 42 |
| 166 | |
| 167 | |
| 168 | def test_pexrc_precedence(): |
nothing calls this directly
no test coverage detected