~ubuntu-branches/ubuntu/saucy/python-django/saucy-updates

« back to all changes in this revision

Viewing changes to tests/regressiontests/fixtures_regress/fixtures/forward_ref_lookup.json

  • Committer: Bazaar Package Importer
  • Author(s): Chris Lamb
  • Date: 2010-05-21 07:52:55 UTC
  • mfrom: (1.3.6 upstream)
  • mto: This revision was merged to the branch mainline in revision 28.
  • Revision ID: james.westby@ubuntu.com-20100521075255-ii78v1dyfmyu3uzx
Tags: upstream-1.2
ImportĀ upstreamĀ versionĀ 1.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
[
 
2
    {
 
3
        "pk": "4",
 
4
        "model": "fixtures_regress.person",
 
5
        "fields": {
 
6
            "name": "Neal Stephenson"
 
7
        }
 
8
    },
 
9
    {
 
10
        "pk": "2",
 
11
        "model": "fixtures_regress.store",
 
12
        "fields": {
 
13
            "name": "Amazon"
 
14
        }
 
15
    },
 
16
    {
 
17
        "pk": "3",
 
18
        "model": "fixtures_regress.store",
 
19
        "fields": {
 
20
            "name": "Borders"
 
21
        }
 
22
    },
 
23
    {
 
24
        "pk": 1,
 
25
        "model": "fixtures_regress.book",
 
26
        "fields": {
 
27
            "name": "Cryptonomicon",
 
28
            "author": ["Neal Stephenson"],
 
29
            "stores": [["Amazon"], ["Borders"]]
 
30
        }
 
31
    }
 
32
]
 
 
b'\\ No newline at end of file'