~ubuntu-branches/ubuntu/quantal/python-django/quantal

« back to all changes in this revision

Viewing changes to tests/regressiontests/comment_tests/fixtures/comment_tests.json

  • Committer: Bazaar Package Importer
  • Author(s): Chris Lamb
  • Date: 2009-07-29 11:26:28 UTC
  • mfrom: (1.1.8 upstream) (4.1.5 sid)
  • Revision ID: james.westby@ubuntu.com-20090729112628-pg09ino8sz0sj21t
Tags: 1.1-1
* New upstream release.
* Merge from experimental:
  - Ship FastCGI initscript and /etc/default file in python-django's examples
    directory (Closes: #538863)
  - Drop "05_10539-sphinx06-compatibility.diff"; it has been applied
    upstream.
  - Bump Standards-Version to 3.8.2.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
[
 
2
  {
 
3
    "model" : "comment_tests.author",
 
4
    "pk" : 1,
 
5
    "fields" : {
 
6
        "first_name" : "John",
 
7
        "last_name" : "Smith"
 
8
    }
 
9
  },
 
10
  {
 
11
    "model" : "comment_tests.author",
 
12
    "pk" : 2,
 
13
    "fields" : {
 
14
        "first_name" : "Peter",
 
15
        "last_name" : "Jones"
 
16
    }
 
17
  },
 
18
  {
 
19
    "model" : "comment_tests.article",
 
20
    "pk" : 1,
 
21
    "fields" : {
 
22
        "author" : 1,
 
23
        "headline" : "Man Bites Dog"
 
24
    }
 
25
  },
 
26
  {
 
27
    "model" : "comment_tests.article",
 
28
    "pk" : 2,
 
29
    "fields" : {
 
30
        "author" : 2,
 
31
        "headline" : "Dog Bites Man"
 
32
    }
 
33
  },
 
34
 
 
35
  {
 
36
    "model" : "auth.user",
 
37
    "pk" : 100,
 
38
    "fields" : {
 
39
        "username" : "normaluser",
 
40
        "password" : "34ea4aaaf24efcbb4b30d27302f8657f",
 
41
        "first_name": "Joe",
 
42
        "last_name": "Normal",
 
43
        "email": "joe.normal@example.com"
 
44
    }
 
45
  }
 
46
]