hurl/integration/tests/user_in_url.py

11 lines
205 B
Python
Raw Normal View History

2020-11-10 09:35:27 +03:00
from tests import app
from flask import request
@app.route('/user-in-url')
def user_in_url():
assert request.headers['Authorization'] == 'Basic Ym9iOnNlY3JldA=='
return 'You are authenticated'