()
| 65 | |
| 66 | |
| 67 | def test_pex_string_variables(): |
| 68 | # type: () -> None |
| 69 | assert Variables(environ={})._maybe_get_string("NOT_HERE") is None |
| 70 | with pytest.raises(NoValueError): |
| 71 | Variables(environ={})._get_string("NOT_HERE") |
| 72 | assert Variables(environ={"HERE": "stuff"})._get_string("HERE") == "stuff" |
| 73 | |
| 74 | |
| 75 | def test_pex_get_int(): |
nothing calls this directly
no test coverage detected