I have a function that uses the Google Blobstore API, and here\'s a degenerate case:
#!/usr/bin/python from google.appengine.ext import testbed def foo(): f
I don't know if it was added later to the SDK, but using Testbed.init_files_stub should fix it:
Testbed.init_files_stub
tb = testbed.Testbed() tb.activate() tb.init_blobstore_stub() tb.init_files_stub()