mirror of
https://github.com/Orange-OpenSource/hurl.git
synced 2024-11-24 04:31:37 +03:00
609868c858
predicate countEquals becomes deprecated and is replaced by count ==
11 lines
200 B
Python
11 lines
200 B
Python
from tests import app
|
|
from flask import Response
|
|
|
|
@app.route("/subquery-count")
|
|
def subquery_count():
|
|
return Response('''{
|
|
"users": ["Bob", "Bill", "Bruce"]
|
|
}''', mimetype='application/json')
|
|
|
|
|