()
| 166 | |
| 167 | |
| 168 | def test_pexrc_precedence(): |
| 169 | # type: () -> None |
| 170 | with named_temporary_file(mode="w") as pexrc: |
| 171 | pexrc.write("HELLO=FORTYTWO") |
| 172 | pexrc.flush() |
| 173 | v = Variables(rc=pexrc.name, environ={"HELLO": "42"}) |
| 174 | assert v._get_int("HELLO") == 42 |
| 175 | |
| 176 | |
| 177 | def test_rc_ignore(): |
nothing calls this directly
no test coverage detected