mirror of
https://github.com/Orange-OpenSource/hurl.git
synced 2024-12-18 16:11:34 +03:00
17 lines
315 B
Python
17 lines
315 B
Python
from flask import request
|
|
from tests import app
|
|
|
|
@app.route('/predicates-string')
|
|
def predicates_string():
|
|
return 'Hello World!'
|
|
|
|
@app.route('/predicates-string-empty')
|
|
def predicates_string_empty():
|
|
return ''
|
|
|
|
@app.route('/predicates-string-unicode')
|
|
def predicates_string_unicode():
|
|
return '\u2708'
|
|
|
|
|