hurl/integration/tests/basic_authentication.py
2020-10-21 13:48:22 +02:00

11 lines
223 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'