mirror of
https://github.com/Orange-OpenSource/hurl.git
synced 2024-12-25 12:05:32 +03:00
9 lines
221 B
Python
9 lines
221 B
Python
from tests import app
|
|
from flask import request
|
|
|
|
|
|
@app.route("/basic-authentication")
|
|
def basic_authentication():
|
|
assert request.headers["Authorization"] == "Basic Ym9iOnNlY3JldA=="
|
|
return "You are authenticated"
|