def get_app(self): return HTTPServer(server.Application(), xheaders=True)
def get_app(self): application = server.Application() application.settings["xsrf_cookies"] = False # ignore xsrf when test return application
def get_app(self): return server.Application(config)