I run my google app engine application in one of two ways...
- Directly by using the application from http://localhost:8080
- Or execute unit tests from http://localhost:8080/test
When I create entities by using the application directly, the data is visible in the Development Console (dataStore view).
However, when I execute the unit tests... even if they succeed and I can put() and get() data, the data does not show in the dataStore view. Any idea why I can't see my data? Even though it is there?
Notes:
- I use GAEUnit for unit tests.
- the data stored mostly consists of StringProperties().
- I use Python and run Django on top of the GAE, don't know if that matters.