parts/django/tests/regressiontests/comment_tests/fixtures/comment_tests.json
author Nishanth Amuluru <nishanth@fossee.in>
Tue, 11 Jan 2011 12:30:10 +0530
changeset 378 8fcde6f8f750
parent 307 c6bca38c1cbf
permissions -rw-r--r--
added view_user functionality

[
  {
    "model" : "comment_tests.book",
    "pk" : 1,
    "fields" : {
        "dewey_decimal" : "12.34"
    }
  },
  {
    "model" : "comment_tests.author",
    "pk" : 1,
    "fields" : {
        "first_name" : "John",
        "last_name" : "Smith"
    }
  },
  {
    "model" : "comment_tests.author",
    "pk" : 2,
    "fields" : {
        "first_name" : "Peter",
        "last_name" : "Jones"
    }
  },
  {
    "model" : "comment_tests.article",
    "pk" : 1,
    "fields" : {
        "author" : 1,
        "headline" : "Man Bites Dog"
    }
  },
  {
    "model" : "comment_tests.article",
    "pk" : 2,
    "fields" : {
        "author" : 2,
        "headline" : "Dog Bites Man"
    }
  },

  {
    "model" : "auth.user",
    "pk" : 100,
    "fields" : {
        "username" : "normaluser",
        "password" : "34ea4aaaf24efcbb4b30d27302f8657f",
        "first_name": "Joe",
        "last_name": "Normal",
        "email": "joe.normal@example.com"
    }
  }
]