Id like to write some unit tests that among other thing will need to read a blobstore file
How to write a unit test setUp that puts some file in testbed blobstore so it will availabe for read this way:
blob_info = BlobInfo(blob_key)
reader = BlobReader(blob_info)
reader.readline()
EDIT:
I do not look for a way to test files API, I want to put some arbitrary data in the testbed blobstore storage dusring the test case setUp phase, so I can run tests against this data.