Re: doctest testing with templatefilters

2009-04-23 Thread Jari Pennanen
Found out that putting them to tests.py *does* run them, but since when all is "ok" it won't print anything... But nevertheless I wouldn't like to put them root, and inside "if __name__ == '__main__':", manage.py test myapp wont find them. On Apr 23, 8:11 pm, Jari Pennanen wrote: > Hi! > > I'm j

Re: doctest testing with templatefilters

2009-04-23 Thread Jari Pennanen
Hi! I'm just wondering the same thing, not exact same, but this: How do I run doctests when doing "./manage.py test myapp", where should I define doctest.testmod(...) lines? In root of tests.py it doesn't work. On Apr 12, 7:51 pm, Julian wrote: > hello, > > I am testing some of my filters with

doctest testing with templatefilters

2009-04-12 Thread Julian
hello, I am testing some of my filters with doctests. it's very easy, but I have to call the module with the filters manually: python /foo/bar/templatetags/eggs_extra.py -v to let the doctest run. Now I've added at the end of the egg.py the following code: def run_doctest(): import doctes