# coding=utf-8
from flask import Response
from app import app
@app.route("/assert-xpath")
def assert_xpath():
body = "café"
return Response(body, mimetype="text/xml")
@app.route("/assert-xpath-svg")
def assert_xpath_svg():
body = """
"""
return Response(body, mimetype="text/xml")
@app.route("/assert-xpath-simple-namespaces")
def assert_xpath_simple_ns():
body = """
Cheaper by the Dozen
1568491379
"""
return Response(body, mimetype="text/xml")
@app.route("/assert-xpath-namespaces")
def assert_xpath_ns():
body = """
Cheaper by the Dozen
1568491379
This is a funny book!
"""
return Response(body, mimetype="text/xml")