generated from rocketseat-education/ignite-template-elixir-crud-refeicoes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathresults.json
183 lines (183 loc) · 7.13 KB
/
results.json
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
{
"excluded": [],
"failed": [],
"invalid": [],
"passed": [
{
"describe": "by_id/1",
"file": "/home/daphnecarvalho/ignite-elixir-CRUD-refeicoes-diarias/test/exmeal/meals/get_test.exs",
"line": 26,
"module": "Elixir.Exmeal.Meals.GetTest",
"test": "test by_id/1 when an invalid id is given, returns an error"
},
{
"describe": "by_id/1",
"file": "/home/daphnecarvalho/ignite-elixir-CRUD-refeicoes-diarias/test/exmeal/meals/get_test.exs",
"line": 10,
"module": "Elixir.Exmeal.Meals.GetTest",
"test": "test by_id/1 when a valid id is given, returns the meal"
},
{
"describe": "all/0",
"file": "/home/daphnecarvalho/ignite-elixir-CRUD-refeicoes-diarias/test/exmeal/meals/get_test.exs",
"line": 39,
"module": "Elixir.Exmeal.Meals.GetTest",
"test": "test all/0 returns all meals"
},
{
"describe": "call/1",
"file": "/home/daphnecarvalho/ignite-elixir-CRUD-refeicoes-diarias/test/exmeal/meals/delete_test.exs",
"line": 10,
"module": "Elixir.Exmeal.Meals.DeleteTest",
"test": "test call/1 when a valid id is given, returns the meal"
},
{
"describe": "call/1",
"file": "/home/daphnecarvalho/ignite-elixir-CRUD-refeicoes-diarias/test/exmeal/meals/delete_test.exs",
"line": 26,
"module": "Elixir.Exmeal.Meals.DeleteTest",
"test": "test call/1 when an invalid id is given, returns an error"
},
{
"describe": "changeset/1",
"file": "/home/daphnecarvalho/ignite-elixir-CRUD-refeicoes-diarias/test/exmeal/exmeal_test.exs",
"line": 10,
"module": "Elixir.Exmeal.MealTest",
"test": "test changeset/1 when all params are valid, returns a valid changeset"
},
{
"describe": "get_all_meals/0",
"file": "/home/daphnecarvalho/ignite-elixir-CRUD-refeicoes-diarias/test/exmeal/exmeal_test.exs",
"line": 27,
"module": "Elixir.Exmeal.MealTest",
"test": "test get_all_meals/0 returns all melas"
},
{
"describe": "call/1",
"file": "/home/daphnecarvalho/ignite-elixir-CRUD-refeicoes-diarias/test/exmeal/meals/update_test.exs",
"line": 10,
"module": "Elixir.Exmeal.Meals.UpdateTest",
"test": "test call/1 when a valid id is given, returns the meal"
},
{
"describe": "call/1",
"file": "/home/daphnecarvalho/ignite-elixir-CRUD-refeicoes-diarias/test/exmeal/meals/update_test.exs",
"line": 26,
"module": "Elixir.Exmeal.Meals.UpdateTest",
"test": "test call/1 when an invalid id is given, returns an error"
},
{
"describe": "get/2",
"file": "/home/daphnecarvalho/ignite-elixir-CRUD-refeicoes-diarias/test/exmeal_web/controller/meals_controller_test.exs",
"line": 130,
"module": "Elixir.ExmealWeb.MealsControllerTest",
"test": "test get/2 when id exist, return the meal"
},
{
"describe": "create/2",
"file": "/home/daphnecarvalho/ignite-elixir-CRUD-refeicoes-diarias/test/exmeal_web/controller/meals_controller_test.exs",
"line": 7,
"module": "Elixir.ExmealWeb.MealsControllerTest",
"test": "test create/2 when all params are valid, creates a meal"
},
{
"describe": "delete/2",
"file": "/home/daphnecarvalho/ignite-elixir-CRUD-refeicoes-diarias/test/exmeal_web/controller/meals_controller_test.exs",
"line": 46,
"module": "Elixir.ExmealWeb.MealsControllerTest",
"test": "test delete/2 when id exist, delete the meal"
},
{
"describe": "update/2",
"file": "/home/daphnecarvalho/ignite-elixir-CRUD-refeicoes-diarias/test/exmeal_web/controller/meals_controller_test.exs",
"line": 117,
"module": "Elixir.ExmealWeb.MealsControllerTest",
"test": "test update/2 when id not exist, return an error"
},
{
"describe": "delete/2",
"file": "/home/daphnecarvalho/ignite-elixir-CRUD-refeicoes-diarias/test/exmeal_web/controller/meals_controller_test.exs",
"line": 58,
"module": "Elixir.ExmealWeb.MealsControllerTest",
"test": "test delete/2 when id not exist, return an error"
},
{
"describe": "create/2",
"file": "/home/daphnecarvalho/ignite-elixir-CRUD-refeicoes-diarias/test/exmeal_web/controller/meals_controller_test.exs",
"line": 26,
"module": "Elixir.ExmealWeb.MealsControllerTest",
"test": "test create/2 when there are invalid params, returns an error"
},
{
"describe": "get/2",
"file": "/home/daphnecarvalho/ignite-elixir-CRUD-refeicoes-diarias/test/exmeal_web/controller/meals_controller_test.exs",
"line": 152,
"module": "Elixir.ExmealWeb.MealsControllerTest",
"test": "test get/2 when id not exist, return an error"
},
{
"describe": "update/2",
"file": "/home/daphnecarvalho/ignite-elixir-CRUD-refeicoes-diarias/test/exmeal_web/controller/meals_controller_test.exs",
"line": 95,
"module": "Elixir.ExmealWeb.MealsControllerTest",
"test": "test update/2 when id exist, update the meal"
},
{
"describe": "index/2",
"file": "/home/daphnecarvalho/ignite-elixir-CRUD-refeicoes-diarias/test/exmeal_web/controller/meals_controller_test.exs",
"line": 71,
"module": "Elixir.ExmealWeb.MealsControllerTest",
"test": "test index/2 returns all meals"
},
{
"describe": "call/1",
"file": "/home/daphnecarvalho/ignite-elixir-CRUD-refeicoes-diarias/test/exmeal/meals/create_test.exs",
"line": 10,
"module": "Elixir.Exmeal.Meals.CreateTest",
"test": "test call/1 when all params are valid, returns the meal"
},
{
"describe": null,
"file": "/home/daphnecarvalho/ignite-elixir-CRUD-refeicoes-diarias/test/exmeal_web/views/error_view_test.exs",
"line": 7,
"module": "Elixir.ExmealWeb.ErrorViewTest",
"test": "test renders 404.json"
},
{
"describe": null,
"file": "/home/daphnecarvalho/ignite-elixir-CRUD-refeicoes-diarias/test/exmeal_web/views/error_view_test.exs",
"line": 11,
"module": "Elixir.ExmealWeb.ErrorViewTest",
"test": "test renders 500.json"
},
{
"describe": null,
"file": "/home/daphnecarvalho/ignite-elixir-CRUD-refeicoes-diarias/test/exmeal_web/views/meals_view_test.exs",
"line": 28,
"module": "Elixir.ExmealWeb.MealsViewTest",
"test": "test render meal.json"
},
{
"describe": null,
"file": "/home/daphnecarvalho/ignite-elixir-CRUD-refeicoes-diarias/test/exmeal_web/views/meals_view_test.exs",
"line": 10,
"module": "Elixir.ExmealWeb.MealsViewTest",
"test": "test render create.json"
},
{
"describe": null,
"file": "/home/daphnecarvalho/ignite-elixir-CRUD-refeicoes-diarias/test/exmeal_web/views/meals_view_test.exs",
"line": 45,
"module": "Elixir.ExmealWeb.MealsViewTest",
"test": "test render index.json"
},
{
"describe": "call/1",
"file": "/home/daphnecarvalho/ignite-elixir-CRUD-refeicoes-diarias/test/exmeal/meals/create_test.exs",
"line": 24,
"module": "Elixir.Exmeal.Meals.CreateTest",
"test": "test call/1 when there are invalid params, returns an error"
}
],
"skiped": []
}