MCPcopy Create free account
hub / github.com/theskumar/python-dotenv / test_parse_stream

Route test_parse_stream

tests/test_parser.py:None–None  ·  view source on GitHub ↗
pytest.mark.parametrize("test_input,expected", [
    (u"", []),
    (u"a=b", [Binding(key=u"a", value=u"b", original=Original(string=u"a=b", line=1), error=False)]),
    (u"'a'=b", [Binding(key=u"a", 

Source from the content-addressed store, hash-verified

1import io
2
3import pytest
4

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected