summaryrefslogtreecommitdiff
path: root/tests/regressiontests/comment_tests/fixtures/comment_tests.json
blob: b10326930ebd196b8e7faa6ee5c573d40d949aed (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
[
  {
    "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"
    }
  }
]