mirror of
https://github.com/django/django.git
synced 2025-10-31 09:41:08 +00:00
Merged regressiontests and modeltests into the test root.
This commit is contained in:
34
tests/fixtures_regress/fixtures/forward_ref_lookup.json
Normal file
34
tests/fixtures_regress/fixtures/forward_ref_lookup.json
Normal file
@@ -0,0 +1,34 @@
|
||||
[
|
||||
{
|
||||
"pk": "4",
|
||||
"model": "fixtures_regress.person",
|
||||
"fields": {
|
||||
"name": "Neal Stephenson"
|
||||
}
|
||||
},
|
||||
{
|
||||
"pk": "2",
|
||||
"model": "fixtures_regress.store",
|
||||
"fields": {
|
||||
"main": null,
|
||||
"name": "Amazon"
|
||||
}
|
||||
},
|
||||
{
|
||||
"pk": "3",
|
||||
"model": "fixtures_regress.store",
|
||||
"fields": {
|
||||
"main": null,
|
||||
"name": "Borders"
|
||||
}
|
||||
},
|
||||
{
|
||||
"pk": 1,
|
||||
"model": "fixtures_regress.book",
|
||||
"fields": {
|
||||
"name": "Cryptonomicon",
|
||||
"author": ["Neal Stephenson"],
|
||||
"stores": [["Amazon"], ["Borders"]]
|
||||
}
|
||||
}
|
||||
]
|
||||
Reference in New Issue
Block a user