I extended django.utils.feedgenerator.Atom1Feed for my own needs and am trying to write some tests for it. It works fine from runserver and mod_wsgi.
Basically, when feeds are accessed from the testrunner I'm running into these problems:
1) The item_title() and item_description() methods are never called, but item_pubdate(), item_link(), etc are.
2) If I have no feed_title.html or feed_description.html templates then both and will just be "Whatever object at 0xWHATEVER".
3) If I do have a feed_title.html and feed_description.html then will not even exist and will be blank.
What am I doing wrong?