#14108: update loaddata to load fixtures in multi db environment for testing -------------------------------------+-------------------------------------- Reporter: berto | Owner: nobody Status: new | Milestone: Component: Uncategorized | Version: SVN Keywords: fixtures loaddata tests | Stage: Unreviewed Has_patch: 1 | -------------------------------------+-------------------------------------- I'm using django in a legacy multi database environment, where there are three distinct databases: default, transactions, reports. Note, these are unique databases, not mirrors of each other. When writing tests I needed the ability to load test data into these distinct databases.
The current multi_db fixture setup expects all databases to load a particular fixture. This patch allows the TestCase setting "multi_db=True" to try loading a fixture into each database rather than failing when data does not insert into one of the databases. The patch is a bit incomplete. I'm not sure how to go about raising an exception if a particular fixture does not insert data into any database. Any thoughts would be great. -- Ticket URL: <http://code.djangoproject.com/ticket/14108> Django <http://code.djangoproject.com/> The Web framework for perfectionists with deadlines. -- You received this message because you are subscribed to the Google Groups "Django updates" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/django-updates?hl=en.
