I have some the page elements split into separate visual blocks.
I am currently integrating the front end htmls from the designer, so it is important for me to test how they appear in the browser individually (each block).
What is the simplest way I can implement this using django-testing?
I know I can create a view with all the blocks and call this page via twill or selenium. I am thinking there must be a simpler platform specific command I can use from within the tests like gnome-open render_to_string(abcd.html,{})
Reminds me of Joel's school of thought that hire a "tester" that is disciplined and doesn't mind this boring stuff of testing it again and again; but I don't necessarily accept it.
Also, what is the simplest way to specify to django to use an in-memory-sqlite-db for testing, so that the process can be sped up?