forked from jedwood/mongoose-api-query
-
Notifications
You must be signed in to change notification settings - Fork 0
/
fixtures.js
62 lines (55 loc) · 1.12 KB
/
fixtures.js
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
module.exports = [
{
name: "Big Purple People Eater",
monster_identification_no: 1,
eats_humans: true,
foods: [{name: "Beets", vegetarian: true, calories: 70},
{name: "Kale", vegetarian: true, calories: 20}],
loc: [38.8977,-77.0366],
data: {
mood: "sad",
MODE: "kill"
}
},
{
name: "Bessie the Lochness Monster",
monster_identification_no: 200,
eats_humans: true,
foods: [],
loc: [38.9,-77.1],
data: {
mood: "ecstatic"
}
},
{
name: "Clay Johnson",
monster_identification_no: 200,
eats_humans: true,
foods: [],
data: {
hands: "14"
},
loc: [38.9,-77.2]
},
{
name: "Frankenstein",
monster_identification_no: 301,
eats_humans: false,
foods: [{name: "Kale", vegetarian: true, calories: 20}],
loc: [38.9,-77]
},
{
name: "Biggie Smalls",
monster_identification_no: 100439,
eats_humans: false,
foods: [{name: "Arms", vegetarian: false, calories: 300}],
loc: [38.87,-77.04]
},
{
name: "Biggie Smalls the 2nd",
monster_identification_no: 9420432,
eats_humans: false,
foods: [{name: "Legs", vegetarian: false, calories: 400}],
loc: [38.86,-77.05]
}
];