summaryrefslogtreecommitdiff
path: root/tests/modeltests/custom_managers/fixtures/custom_managers_testdata.json
blob: bb0f7527e80f5bb77bd9033291ad62014ce65c67 (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
44
45
46
47
48
[
    {
        "pk": 1, 
        "model": "custom_managers.person", 
        "fields": {
            "fun": true, 
            "first_name": "Bugs", 
            "last_name": "Bunny"
        }
    }, 
    {
        "pk": 2, 
        "model": "custom_managers.person", 
        "fields": {
            "fun": false, 
            "first_name": "Droopy", 
            "last_name": "Dog"
        }
    }, 
    {
        "pk": 1, 
        "model": "custom_managers.book", 
        "fields": {
            "authors": [], 
            "is_published": true, 
            "author": "Rodney Dangerfield", 
            "title": "How to program"
        }
    }, 
    {
        "pk": 1, 
        "model": "custom_managers.car", 
        "fields": {
            "mileage": 21, 
            "top_speed": 180, 
            "name": "Corvette"
        }
    }, 
    {
        "pk": 2, 
        "model": "custom_managers.car", 
        "fields": {
            "mileage": 31, 
            "top_speed": 100, 
            "name": "Neon"
        }
    }
]