mirror of
https://github.com/Orange-OpenSource/hurl.git
synced 2024-12-24 19:42:07 +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 ''
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|