I'm trying to figure out how to implement unit tests for my WSGI application based on Werkzeug and App Engine platform. As I understand I can't simply use functionality provided by `from werkzeug.test.Client` since it requires a WSGI application, which in case of App Engine requires to set up a development environment, i.e. Datastore, memcache, etc.
What comes into my mind is to run a development server, dev_appserver.py, and use some third-party library, like Requests or urlfetch. In that case I loose access to the server's request object and other internals, which I'd like to preserve. Does anybody has any experience to share concerning this issue? Thanks. -- You received this message because you are subscribed to the Google Groups "pocoo-libs" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/pocoo-libs?hl=en.
