(dotenv_file)
| 416 | |
| 417 | |
| 418 | def test_dotenv_values_file_stream(dotenv_file): |
| 419 | with open(dotenv_file, "w") as f: |
| 420 | f.write("a=b") |
| 421 | |
| 422 | with open(dotenv_file, "r") as f: |
| 423 | result = dotenv.dotenv_values(stream=f) |
| 424 | |
| 425 | assert result == {"a": "b"} |
nothing calls this directly
no outgoing calls
no test coverage detected