Example #1
0
def test_cookie_escaped_unquoted():
    eq_(list(cookies.parse_cookie('x=\\040')), [(b'x', b' ')])
Example #2
0
def test_cookie_escaped_unquoted():
    assert list(cookies.parse_cookie('x=\\040')) == [(b'x', b' ')]
Example #3
0
def test_cookie_escaped_unquoted():
    assert list(cookies.parse_cookie("x=\\040")) == [(b"x", b" ")]
def test_cookie_escaped_unquoted():
    assert list(cookies.parse_cookie('x=\\040')) == [(b'x', b' ')]
Example #5
0
def test_cookie_escaped_unquoted():
    assert list(cookies.parse_cookie("x=\\040")) == [(b"x", b" ")]