Showing 19 to 23 of 23 blog posts tagged with "testing".
-
Factory Boy as an Alternative to Django Testing Fixtures
When testing a Django application you often need to populate the test database with some sample data. The standard Django TestCase has support for fixture loading but there are... Read more
July 17, 2013 -
MEDIA_ROOT and Django Tests
If you’ve ever written a test for a view or model with associated uploaded files you might have noticed a small problem with those files hanging around after the tests are comp... Read more
June 26, 2013 -
Simplifying the Testing of Unmanaged Database Models in Django
Sometimes, when building a web application in Django, one needs to connect to a legacy database whose tables already exist. To support this use case, Django has the concept of "... Read more
September 24, 2010 -
Continuous Integration with Django and Hudson CI (Day 1)
We're always looking for new tools to make our development environment more robust here at Caktus. We write a lot of tests to ensure proper functionality as new features land an... Read more
March 8, 2010 -
Testing Django Views for Concurrency Issues
At Caktus, we rely heavily on automated testing for web app development. We create tests for all the code we write, ideally before the code is written. We create tests for ever... Read more
May 26, 2009