mirror of
https://github.com/Orange-OpenSource/hurl.git
synced 2024-11-24 04:31:37 +03:00
14 lines
180 B
Python
14 lines
180 B
Python
from flask import request, make_response
|
|
from tests import app
|
|
|
|
|
|
@app.route("/cookie_file")
|
|
def cookie_file():
|
|
assert request.cookies['cookie1'] == 'valueA'
|
|
return ''
|
|
|
|
|
|
|
|
|
|
|