parts/django/tests/regressiontests/views/fixtures/testdata.json
author Nishanth Amuluru <nishanth@fossee.in>
Sat, 08 Jan 2011 11:20:57 +0530
changeset 307 c6bca38c1cbf
permissions -rw-r--r--
Added buildout stuff and made changes accordingly

[
    {
        "pk": "1",
        "model": "auth.user",
        "fields": {
            "username": "testclient",
            "first_name": "Test",
            "last_name": "Client",
            "is_active": true,
            "is_superuser": false,
            "is_staff": false,
            "last_login": "2006-12-17 07:03:31",
            "groups": [],
            "user_permissions": [],
            "password": "sha1$6efc0$f93efe9fd7542f25a7be94871ea45aa95de57161",
            "email": "testclient@example.com",
            "date_joined": "2006-12-17 07:03:31"
        }
    },
    {
        "pk": 1,
        "model": "views.author",
        "fields": {
            "name": "Boris"
        }
    },
    {
        "pk": 1,
        "model": "views.article",
        "fields": {
            "author": 1,
            "title": "Old Article",
            "slug": "old_article",
            "date_created": "2001-01-01 21:22:23"
        }
    }, 
    {
        "pk": 2, 
        "model": "views.article", 
        "fields": {
            "author": 1, 
            "title": "Current Article",
            "slug": "current_article",
            "date_created": "2007-09-17 21:22:23"
        }
    }, 
    {
        "pk": 3, 
        "model": "views.article", 
        "fields": {
            "author": 1, 
            "title": "Future Article",
            "slug": "future_article",
            "date_created": "3000-01-01 21:22:23"
        }
    }, 
	{
        "pk": 1,
        "model": "views.urlarticle",
        "fields": {
            "author": 1,
            "title": "Old Article",
            "slug": "old_article",
            "date_created": "2001-01-01 21:22:23"
        }
    },
    {
        "pk": 1,
        "model": "sites.site",
        "fields": {
            "domain": "testserver",
            "name": "testserver"
        }
    }
]