mirror of
https://github.com/Orange-OpenSource/hurl.git
synced 2024-11-23 09:44:22 +03:00
9 lines
173 B
Python
9 lines
173 B
Python
from flask import request, make_response
|
|
from app import app
|
|
|
|
|
|
@app.route("/cookie_file")
|
|
def cookie_file():
|
|
assert request.cookies["cookie1"] == "valueA"
|
|
return ""
|