http://www.djangoproject.com/documentation/models/fixtures/

# Load fixture 1. Single JSON file, with two objects.
>>> management.call_command('loaddata', 'fixture1.json', verbosity=0)
>>> Article.objects.all()
[<Article: Time to reform copyright>, <Article: Poker has no place on
ESPN>, <Article: Python program becomes self aware>]

# Load fixture 2. JSON file imported by default. Overwrites some
existing objects
>>> management.call_command('loaddata', 'fixture2.json', verbosity=0)
>>> Article.objects.all()
[<Article: Django conquers world!>, <Article: Copyright is fine the
way it is>, <Article: Poker has no place on ESPN>, <Article: Python
program becomes self aware>]

# Load fixture 3, XML format.
>>> management.call_command('loaddata', 'fixture3.xml', verbosity=0)
>>> Article.objects.all()
[<Article: XML identified as leading cause of cancer>, <Article:
Django conquers world!>, <Article: Copyright is fine the way it is>,
<Article: Poker on TV is great!>, <Article: Python program becomes
self aware>]

Cheers,

Hector Garcia - Web developer, musician
http://nomadblue.com/



On Wed, Oct 21, 2009 at 2:07 AM, Brice <bbrriic...@gmail.com> wrote:
>
> Hello everybody,
>  I'm facing a delicate problem. I want to make ensure the security of
> my app and I created a unitest to do so. To make it easy, I was
> thinking about fixture, but they don't support model permission
> evolution and create conflict over time. So I add a function linked to
> the syncdb signal that take care of the permission assignement to
> different pre-set users for my tests. The only issue is that I need
> first to load my Users from a fixture to get it work. Is there any
> function to load data manually from a fixture directly ?
>
>
> >
>

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to