UnacceptableVersionError: django 1.1 was requested, but 1.2.1.final.0 is already in use
The Django version I have in my machine is 1.2.1, while one of my apps running on Google App Engine utilizes use_library to use Django 1.1. Apparently, Django versions later than 1.1 is not included in the Google App Engine SDK. So everytime I try to access my app on my dev machine, I get [...]
Using GAE Testbed with GAEUnit: Testing that email was sent
In my quest for testing if emails are being sent by my app engine app, I came across GAE Testbed. GAE Testbed … is a set of base test cases to make it simple to test the more complicated pieces of AppEngine’s framework (such as sending E-mail messages, the datastore, Memcache, etc.) Since I’m already using [...]
Thoughts and notes on unit testing
I’m not a fan of unit testing. As a matter of fact, I have never written any unit tests in my career. Well, I almost did for one of my previous projects that was growing huge, but the client was more interested in seeing the functional requirements met over the non-functional ones (probably because they [...]
