mirror of
https://github.com/Orange-OpenSource/hurl.git
synced 2024-11-24 04:31:37 +03:00
14 lines
221 B
Python
14 lines
221 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 ''
|
||
|
|
||
|
|
||
|
|