~ubuntu-branches/ubuntu/oneiric/python-django/oneiric

« back to all changes in this revision

Viewing changes to tests/regressiontests/fixtures_regress/fixtures/nk-inheritance.json

  • Committer: Bazaar Package Importer
  • Author(s): Chris Lamb
  • Date: 2010-05-21 07:52:55 UTC
  • mfrom: (1.1.10 upstream) (4.4.7 sid)
  • Revision ID: james.westby@ubuntu.com-20100521075255-i1zpeyc0k8512pd7
Tags: 1.2-1
New upstream stable release.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
[
 
2
    {
 
3
        "pk": 1,
 
4
        "model": "fixtures_regress.nkchild",
 
5
        "fields": {
 
6
            "data": "apple"
 
7
        }
 
8
    },
 
9
    {
 
10
        "pk": 1,
 
11
        "model": "fixtures_regress.reftonkchild",
 
12
        "fields": {
 
13
            "text": "my text",
 
14
            "nk_fk" : ["apple"],
 
15
            "nk_m2m": [["apple"]]
 
16
        }
 
17
    }
 
18
]