GAEUnit creates its own proxy server for the proxy server using this code on line 357 of current version 2.0a for django:
temp_stub = datastore_file_stub.DatastoreFileStub(
'GAEUnitDataStore', None, None, trusted=True)
This proxy storage is only stored in memory, so it is deleted after the tests are completed. It is also empty when running tests, that is, it does not contain data that is currently in the default data store.
You can temporarily change this to write to a file in your development system, for example:
temp_stub = datastore_file_stub.DatastoreFileStub(
'GAEUnitDataStore', '/path/to/gaeunit.datastore', None, trusted=True)
Then run dev_appserver.py on another port, for example:
dev_appserver.py --port=8081 --datastore_path=/path/to/gaeunit.datastore /path/to/application/
, , http://localhost:8081/_ah/admin , .