rollout_control 0.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (50) hide show
  1. checksums.yaml +7 -0
  2. data/MIT-LICENSE +20 -0
  3. data/README.rdoc +3 -0
  4. data/Rakefile +34 -0
  5. data/app/controllers/rollout_control/application_controller.rb +10 -0
  6. data/app/controllers/rollout_control/features_controller.rb +27 -0
  7. data/app/controllers/rollout_control/groups_controller.rb +30 -0
  8. data/app/controllers/rollout_control/users_controller.rb +30 -0
  9. data/config/routes.rb +6 -0
  10. data/lib/rollout_control/engine.rb +18 -0
  11. data/lib/rollout_control/version.rb +3 -0
  12. data/lib/rollout_control.rb +39 -0
  13. data/lib/tasks/rollout_control_tasks.rake +4 -0
  14. data/test/controllers/rollout_control/features_controller_test.rb +8 -0
  15. data/test/dummy/README.rdoc +28 -0
  16. data/test/dummy/Rakefile +6 -0
  17. data/test/dummy/app/assets/javascripts/application.js +13 -0
  18. data/test/dummy/app/assets/stylesheets/application.css +15 -0
  19. data/test/dummy/app/controllers/application_controller.rb +5 -0
  20. data/test/dummy/app/helpers/application_helper.rb +2 -0
  21. data/test/dummy/app/views/layouts/application.html.erb +14 -0
  22. data/test/dummy/bin/bundle +3 -0
  23. data/test/dummy/bin/rails +4 -0
  24. data/test/dummy/bin/rake +4 -0
  25. data/test/dummy/config/application.rb +25 -0
  26. data/test/dummy/config/boot.rb +5 -0
  27. data/test/dummy/config/environment.rb +5 -0
  28. data/test/dummy/config/environments/development.rb +37 -0
  29. data/test/dummy/config/environments/production.rb +78 -0
  30. data/test/dummy/config/environments/test.rb +34 -0
  31. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  32. data/test/dummy/config/initializers/cookies_serializer.rb +3 -0
  33. data/test/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  34. data/test/dummy/config/initializers/inflections.rb +16 -0
  35. data/test/dummy/config/initializers/mime_types.rb +4 -0
  36. data/test/dummy/config/initializers/rollout.rb +8 -0
  37. data/test/dummy/config/initializers/session_store.rb +3 -0
  38. data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
  39. data/test/dummy/config/locales/en.yml +23 -0
  40. data/test/dummy/config/routes.rb +4 -0
  41. data/test/dummy/config/secrets.yml +22 -0
  42. data/test/dummy/config.ru +4 -0
  43. data/test/dummy/log/test.log +3780 -0
  44. data/test/dummy/public/404.html +67 -0
  45. data/test/dummy/public/422.html +67 -0
  46. data/test/dummy/public/500.html +66 -0
  47. data/test/dummy/public/favicon.ico +0 -0
  48. data/test/integration/rollout_control/rollout_control_test.rb +111 -0
  49. data/test/test_helper.rb +22 -0
  50. metadata +184 -0
@@ -0,0 +1,3780 @@
1
+ ------------------------------------------------
2
+ RolloutControl::FeaturesControllerTest: test_wat
3
+ ------------------------------------------------
4
+ --------------------------------------------------
5
+ RolloutControlTest: test_activate_existing_feature
6
+ --------------------------------------------------
7
+ Started PUT "/rollout/features/hamburgers/activate" for 127.0.0.1 at 2014-11-11 15:36:07 -0800
8
+ Processing by RolloutControl::FeaturesController#activate as HTML
9
+ Parameters: {"id"=>"hamburgers"}
10
+ Completed 204 No Content in 0ms
11
+ ---------------------------------------------
12
+ RolloutControlTest: test_activate_new_feature
13
+ ---------------------------------------------
14
+ Started PUT "/rollout/features/hamburgers/activate" for 127.0.0.1 at 2014-11-11 15:36:07 -0800
15
+ Processing by RolloutControl::FeaturesController#activate as HTML
16
+ Parameters: {"id"=>"hamburgers"}
17
+ Completed 204 No Content in 0ms
18
+ ---------------------------------------------
19
+ RolloutControlTest: test_add_group_to_feature
20
+ ---------------------------------------------
21
+ Started POST "/rollout/features/extra_sharp_knives/groups" for 127.0.0.1 at 2014-11-11 15:36:07 -0800
22
+ Processing by RolloutControl::GroupsController#create as HTML
23
+ Parameters: {"group"=>"experienced_chefs", "feature_id"=>"extra_sharp_knives"}
24
+ Completed 204 No Content in 0ms
25
+ --------------------------------------------
26
+ RolloutControlTest: test_add_user_to_feature
27
+ --------------------------------------------
28
+ Started POST "/rollout/features/potato_gun/users" for 127.0.0.1 at 2014-11-11 15:36:07 -0800
29
+ Processing by RolloutControl::UsersController#create as HTML
30
+ Parameters: {"user_id"=>"45", "feature_id"=>"potato_gun"}
31
+ Completed 204 No Content in 0ms
32
+ ------------------------------------------------------------------------------
33
+ RolloutControlTest: test_attempt_to_activate_user_to_feature_without_a_user_id
34
+ ------------------------------------------------------------------------------
35
+ Started POST "/rollout/features/potato_gun/users" for 127.0.0.1 at 2014-11-11 15:36:07 -0800
36
+ Processing by RolloutControl::UsersController#create as HTML
37
+ Parameters: {"feature_id"=>"potato_gun"}
38
+ Completed 400 Bad Request in 0ms
39
+ -----------------------------------------------------------------------------
40
+ RolloutControlTest: test_attempt_to_add_group_to_feature_without_a_group_name
41
+ -----------------------------------------------------------------------------
42
+ Started POST "/rollout/features/extra_sharp_knives/groups" for 127.0.0.1 at 2014-11-11 15:36:07 -0800
43
+ Processing by RolloutControl::GroupsController#create as HTML
44
+ Parameters: {"feature_id"=>"extra_sharp_knives"}
45
+ Completed 400 Bad Request in 0ms
46
+ ----------------------------------------------------
47
+ RolloutControlTest: test_deactivate_existing_feature
48
+ ----------------------------------------------------
49
+ Started PUT "/rollout/features/bicycle_rocket/deactivate" for 127.0.0.1 at 2014-11-11 15:36:07 -0800
50
+ Processing by RolloutControl::FeaturesController#deactivate as HTML
51
+ Parameters: {"id"=>"bicycle_rocket"}
52
+ Completed 204 No Content in 0ms
53
+ -----------------------------------------------
54
+ RolloutControlTest: test_deactivate_new_feature
55
+ -----------------------------------------------
56
+ Started PUT "/rollout/features/bicycle_rocket/deactivate" for 127.0.0.1 at 2014-11-11 15:36:07 -0800
57
+ Processing by RolloutControl::FeaturesController#deactivate as HTML
58
+ Parameters: {"id"=>"bicycle_rocket"}
59
+ Completed 204 No Content in 0ms
60
+ --------------------------------------------
61
+ RolloutControlTest: test_list_empty_features
62
+ --------------------------------------------
63
+ Started GET "/rollout/features" for 127.0.0.1 at 2014-11-11 15:36:07 -0800
64
+ Processing by RolloutControl::FeaturesController#index as HTML
65
+ Completed 200 OK in 0ms (Views: 0.1ms)
66
+ -----------------------------------------------
67
+ RolloutControlTest: test_list_existing_features
68
+ -----------------------------------------------
69
+ Started GET "/rollout/features" for 127.0.0.1 at 2014-11-11 15:36:07 -0800
70
+ Processing by RolloutControl::FeaturesController#index as HTML
71
+ Completed 200 OK in 0ms (Views: 0.0ms)
72
+ Started GET "/rollout/features" for 127.0.0.1 at 2014-11-11 15:36:07 -0800
73
+ Processing by RolloutControl::FeaturesController#index as HTML
74
+ Completed 200 OK in 0ms (Views: 0.1ms)
75
+ --------------------------------------------------
76
+ RolloutControlTest: test_remove_group_from_feature
77
+ --------------------------------------------------
78
+ Started DELETE "/rollout/features/extra_sharp_knives/groups/experienced_chefs" for 127.0.0.1 at 2014-11-11 15:36:07 -0800
79
+ Processing by RolloutControl::GroupsController#destroy as HTML
80
+ Parameters: {"feature_id"=>"extra_sharp_knives", "id"=>"experienced_chefs"}
81
+ Completed 204 No Content in 0ms
82
+ -------------------------------------------------
83
+ RolloutControlTest: test_remove_user_from_feature
84
+ -------------------------------------------------
85
+ Started DELETE "/rollout/features/potato_gun/users/45" for 127.0.0.1 at 2014-11-11 15:36:07 -0800
86
+ Processing by RolloutControl::UsersController#destroy as HTML
87
+ Parameters: {"feature_id"=>"potato_gun", "id"=>"45"}
88
+ Completed 204 No Content in 0ms
89
+ -------------------------------------
90
+ RolloutControlTest: test_show_feature
91
+ -------------------------------------
92
+ Started GET "/rollout/features/kittens" for 127.0.0.1 at 2014-11-11 15:36:07 -0800
93
+ Processing by RolloutControl::FeaturesController#show as HTML
94
+ Parameters: {"id"=>"kittens"}
95
+ Completed 200 OK in 0ms (Views: 0.1ms)
96
+ Started GET "/rollout/features/kittens" for 127.0.0.1 at 2014-11-11 15:36:07 -0800
97
+ Processing by RolloutControl::FeaturesController#show as HTML
98
+ Parameters: {"id"=>"kittens"}
99
+ Completed 200 OK in 0ms (Views: 0.1ms)
100
+ Started GET "/rollout/features/kittens" for 127.0.0.1 at 2014-11-11 15:36:07 -0800
101
+ Processing by RolloutControl::FeaturesController#show as HTML
102
+ Parameters: {"id"=>"kittens"}
103
+ Completed 200 OK in 0ms (Views: 0.1ms)
104
+ --------------------------------------------------
105
+ RolloutControlTest: test_update_feature_percentage
106
+ --------------------------------------------------
107
+ Started PATCH "/rollout/features/kittens" for 127.0.0.1 at 2014-11-11 15:36:07 -0800
108
+ Processing by RolloutControl::FeaturesController#update as HTML
109
+ Parameters: {"percentage"=>"65", "id"=>"kittens"}
110
+ Completed 204 No Content in 0ms
111
+ ------------------------------------------------
112
+ RolloutControl::FeaturesControllerTest: test_wat
113
+ ------------------------------------------------
114
+ --------------------------------------------------
115
+ RolloutControlTest: test_activate_existing_feature
116
+ --------------------------------------------------
117
+ Started PUT "/rollout/features/hamburgers/activate" for 127.0.0.1 at 2014-11-11 15:40:16 -0800
118
+ Processing by RolloutControl::FeaturesController#activate as HTML
119
+ Parameters: {"id"=>"hamburgers"}
120
+ Completed 204 No Content in 0ms
121
+ ---------------------------------------------
122
+ RolloutControlTest: test_activate_new_feature
123
+ ---------------------------------------------
124
+ Started PUT "/rollout/features/hamburgers/activate" for 127.0.0.1 at 2014-11-11 15:40:16 -0800
125
+ Processing by RolloutControl::FeaturesController#activate as HTML
126
+ Parameters: {"id"=>"hamburgers"}
127
+ Completed 204 No Content in 0ms
128
+ ---------------------------------------------
129
+ RolloutControlTest: test_add_group_to_feature
130
+ ---------------------------------------------
131
+ Started POST "/rollout/features/extra_sharp_knives/groups" for 127.0.0.1 at 2014-11-11 15:40:16 -0800
132
+ Processing by RolloutControl::GroupsController#create as HTML
133
+ Parameters: {"group"=>"experienced_chefs", "feature_id"=>"extra_sharp_knives"}
134
+ Completed 204 No Content in 0ms
135
+ --------------------------------------------
136
+ RolloutControlTest: test_add_user_to_feature
137
+ --------------------------------------------
138
+ Started POST "/rollout/features/potato_gun/users" for 127.0.0.1 at 2014-11-11 15:40:16 -0800
139
+ Processing by RolloutControl::UsersController#create as HTML
140
+ Parameters: {"user_id"=>"45", "feature_id"=>"potato_gun"}
141
+ Completed 204 No Content in 0ms
142
+ ------------------------------------------------------------------------------
143
+ RolloutControlTest: test_attempt_to_activate_user_to_feature_without_a_user_id
144
+ ------------------------------------------------------------------------------
145
+ Started POST "/rollout/features/potato_gun/users" for 127.0.0.1 at 2014-11-11 15:40:16 -0800
146
+ Processing by RolloutControl::UsersController#create as HTML
147
+ Parameters: {"feature_id"=>"potato_gun"}
148
+ Completed 400 Bad Request in 0ms
149
+ -----------------------------------------------------------------------------
150
+ RolloutControlTest: test_attempt_to_add_group_to_feature_without_a_group_name
151
+ -----------------------------------------------------------------------------
152
+ Started POST "/rollout/features/extra_sharp_knives/groups" for 127.0.0.1 at 2014-11-11 15:40:16 -0800
153
+ Processing by RolloutControl::GroupsController#create as HTML
154
+ Parameters: {"feature_id"=>"extra_sharp_knives"}
155
+ Completed 400 Bad Request in 0ms
156
+ ----------------------------------------------------
157
+ RolloutControlTest: test_deactivate_existing_feature
158
+ ----------------------------------------------------
159
+ Started PUT "/rollout/features/bicycle_rocket/deactivate" for 127.0.0.1 at 2014-11-11 15:40:16 -0800
160
+ Processing by RolloutControl::FeaturesController#deactivate as HTML
161
+ Parameters: {"id"=>"bicycle_rocket"}
162
+ Completed 204 No Content in 0ms
163
+ -----------------------------------------------
164
+ RolloutControlTest: test_deactivate_new_feature
165
+ -----------------------------------------------
166
+ Started PUT "/rollout/features/bicycle_rocket/deactivate" for 127.0.0.1 at 2014-11-11 15:40:16 -0800
167
+ Processing by RolloutControl::FeaturesController#deactivate as HTML
168
+ Parameters: {"id"=>"bicycle_rocket"}
169
+ Completed 204 No Content in 0ms
170
+ --------------------------------------------
171
+ RolloutControlTest: test_list_empty_features
172
+ --------------------------------------------
173
+ Started GET "/rollout/features" for 127.0.0.1 at 2014-11-11 15:40:16 -0800
174
+ Processing by RolloutControl::FeaturesController#index as HTML
175
+ Completed 200 OK in 0ms (Views: 0.1ms)
176
+ -----------------------------------------------
177
+ RolloutControlTest: test_list_existing_features
178
+ -----------------------------------------------
179
+ Started GET "/rollout/features" for 127.0.0.1 at 2014-11-11 15:40:16 -0800
180
+ Processing by RolloutControl::FeaturesController#index as HTML
181
+ Completed 200 OK in 0ms (Views: 0.0ms)
182
+ Started GET "/rollout/features" for 127.0.0.1 at 2014-11-11 15:40:16 -0800
183
+ Processing by RolloutControl::FeaturesController#index as HTML
184
+ Completed 200 OK in 0ms (Views: 0.0ms)
185
+ --------------------------------------------------
186
+ RolloutControlTest: test_remove_group_from_feature
187
+ --------------------------------------------------
188
+ Started DELETE "/rollout/features/extra_sharp_knives/groups/experienced_chefs" for 127.0.0.1 at 2014-11-11 15:40:16 -0800
189
+ Processing by RolloutControl::GroupsController#destroy as HTML
190
+ Parameters: {"feature_id"=>"extra_sharp_knives", "id"=>"experienced_chefs"}
191
+ Completed 204 No Content in 0ms
192
+ -------------------------------------------------
193
+ RolloutControlTest: test_remove_user_from_feature
194
+ -------------------------------------------------
195
+ Started DELETE "/rollout/features/potato_gun/users/45" for 127.0.0.1 at 2014-11-11 15:40:16 -0800
196
+ Processing by RolloutControl::UsersController#destroy as HTML
197
+ Parameters: {"feature_id"=>"potato_gun", "id"=>"45"}
198
+ Completed 204 No Content in 0ms
199
+ -------------------------------------
200
+ RolloutControlTest: test_show_feature
201
+ -------------------------------------
202
+ Started GET "/rollout/features/kittens" for 127.0.0.1 at 2014-11-11 15:40:16 -0800
203
+ Processing by RolloutControl::FeaturesController#show as HTML
204
+ Parameters: {"id"=>"kittens"}
205
+ Completed 200 OK in 0ms (Views: 0.1ms)
206
+ Started GET "/rollout/features/kittens" for 127.0.0.1 at 2014-11-11 15:40:16 -0800
207
+ Processing by RolloutControl::FeaturesController#show as HTML
208
+ Parameters: {"id"=>"kittens"}
209
+ Completed 200 OK in 0ms (Views: 0.1ms)
210
+ Started GET "/rollout/features/kittens" for 127.0.0.1 at 2014-11-11 15:40:16 -0800
211
+ Processing by RolloutControl::FeaturesController#show as HTML
212
+ Parameters: {"id"=>"kittens"}
213
+ Completed 200 OK in 0ms (Views: 0.1ms)
214
+ --------------------------------------------------
215
+ RolloutControlTest: test_update_feature_percentage
216
+ --------------------------------------------------
217
+ Started PATCH "/rollout/features/kittens" for 127.0.0.1 at 2014-11-11 15:40:16 -0800
218
+ Processing by RolloutControl::FeaturesController#update as HTML
219
+ Parameters: {"percentage"=>"65", "id"=>"kittens"}
220
+ Completed 204 No Content in 0ms
221
+ ------------------------------------------------
222
+ RolloutControl::FeaturesControllerTest: test_wat
223
+ ------------------------------------------------
224
+ ---------------------------------------------
225
+ RolloutControlTest: test_add_group_to_feature
226
+ ---------------------------------------------
227
+ Started POST "/rollout/features/extra_sharp_knives/groups" for 127.0.0.1 at 2014-11-11 15:53:51 -0800
228
+ Processing by RolloutControl::GroupsController#create as HTML
229
+ Parameters: {"group"=>"experienced_chefs", "feature_id"=>"extra_sharp_knives"}
230
+ Completed 204 No Content in 0ms
231
+ --------------------------------------------
232
+ RolloutControlTest: test_add_user_to_feature
233
+ --------------------------------------------
234
+ Started POST "/rollout/features/potato_gun/users" for 127.0.0.1 at 2014-11-11 15:53:51 -0800
235
+ Processing by RolloutControl::UsersController#create as HTML
236
+ Parameters: {"user_id"=>"45", "feature_id"=>"potato_gun"}
237
+ Completed 204 No Content in 0ms
238
+ ------------------------------------------------------------------------------
239
+ RolloutControlTest: test_attempt_to_activate_user_to_feature_without_a_user_id
240
+ ------------------------------------------------------------------------------
241
+ Started POST "/rollout/features/potato_gun/users" for 127.0.0.1 at 2014-11-11 15:53:51 -0800
242
+ Processing by RolloutControl::UsersController#create as HTML
243
+ Parameters: {"feature_id"=>"potato_gun"}
244
+ Completed 400 Bad Request in 0ms
245
+ -----------------------------------------------------------------------------
246
+ RolloutControlTest: test_attempt_to_add_group_to_feature_without_a_group_name
247
+ -----------------------------------------------------------------------------
248
+ Started POST "/rollout/features/extra_sharp_knives/groups" for 127.0.0.1 at 2014-11-11 15:53:51 -0800
249
+ Processing by RolloutControl::GroupsController#create as HTML
250
+ Parameters: {"feature_id"=>"extra_sharp_knives"}
251
+ Completed 400 Bad Request in 0ms
252
+ --------------------------------------------
253
+ RolloutControlTest: test_list_empty_features
254
+ --------------------------------------------
255
+ Started GET "/rollout/features" for 127.0.0.1 at 2014-11-11 15:53:51 -0800
256
+ Processing by RolloutControl::FeaturesController#index as HTML
257
+ Completed 200 OK in 0ms (Views: 0.1ms)
258
+ -----------------------------------------------
259
+ RolloutControlTest: test_list_existing_features
260
+ -----------------------------------------------
261
+ Started GET "/rollout/features" for 127.0.0.1 at 2014-11-11 15:53:51 -0800
262
+ Processing by RolloutControl::FeaturesController#index as HTML
263
+ Completed 200 OK in 0ms (Views: 0.0ms)
264
+ Started GET "/rollout/features" for 127.0.0.1 at 2014-11-11 15:53:51 -0800
265
+ Processing by RolloutControl::FeaturesController#index as HTML
266
+ Completed 200 OK in 0ms (Views: 0.0ms)
267
+ --------------------------------------------------
268
+ RolloutControlTest: test_remove_group_from_feature
269
+ --------------------------------------------------
270
+ Started DELETE "/rollout/features/extra_sharp_knives/groups/experienced_chefs" for 127.0.0.1 at 2014-11-11 15:53:51 -0800
271
+ Processing by RolloutControl::GroupsController#destroy as HTML
272
+ Parameters: {"feature_id"=>"extra_sharp_knives", "id"=>"experienced_chefs"}
273
+ Completed 204 No Content in 0ms
274
+ -------------------------------------------------
275
+ RolloutControlTest: test_remove_user_from_feature
276
+ -------------------------------------------------
277
+ Started DELETE "/rollout/features/potato_gun/users/45" for 127.0.0.1 at 2014-11-11 15:53:51 -0800
278
+ Processing by RolloutControl::UsersController#destroy as HTML
279
+ Parameters: {"feature_id"=>"potato_gun", "id"=>"45"}
280
+ Completed 204 No Content in 0ms
281
+ -------------------------------------
282
+ RolloutControlTest: test_show_feature
283
+ -------------------------------------
284
+ Started GET "/rollout/features/kittens" for 127.0.0.1 at 2014-11-11 15:53:51 -0800
285
+ Processing by RolloutControl::FeaturesController#show as HTML
286
+ Parameters: {"id"=>"kittens"}
287
+ Completed 200 OK in 0ms (Views: 0.1ms)
288
+ Started GET "/rollout/features/kittens" for 127.0.0.1 at 2014-11-11 15:53:51 -0800
289
+ Processing by RolloutControl::FeaturesController#show as HTML
290
+ Parameters: {"id"=>"kittens"}
291
+ Completed 200 OK in 0ms (Views: 0.1ms)
292
+ Started GET "/rollout/features/kittens" for 127.0.0.1 at 2014-11-11 15:53:51 -0800
293
+ Processing by RolloutControl::FeaturesController#show as HTML
294
+ Parameters: {"id"=>"kittens"}
295
+ Completed 200 OK in 0ms (Views: 0.1ms)
296
+ --------------------------------------------------
297
+ RolloutControlTest: test_update_feature_percentage
298
+ --------------------------------------------------
299
+ Started PATCH "/rollout/features/kittens" for 127.0.0.1 at 2014-11-11 15:53:51 -0800
300
+ Processing by RolloutControl::FeaturesController#update as HTML
301
+ Parameters: {"percentage"=>"65", "id"=>"kittens"}
302
+ Completed 204 No Content in 0ms
303
+ ------------------------------------------------
304
+ RolloutControl::FeaturesControllerTest: test_wat
305
+ ------------------------------------------------
306
+ ---------------------------------------------
307
+ RolloutControlTest: test_add_group_to_feature
308
+ ---------------------------------------------
309
+ Started POST "/rollout/features/extra_sharp_knives/groups" for 127.0.0.1 at 2014-11-11 15:56:06 -0800
310
+ Processing by RolloutControl::GroupsController#create as HTML
311
+ Parameters: {"group"=>"experienced_chefs", "feature_id"=>"extra_sharp_knives"}
312
+ Completed 204 No Content in 0ms
313
+ --------------------------------------------
314
+ RolloutControlTest: test_add_user_to_feature
315
+ --------------------------------------------
316
+ Started POST "/rollout/features/potato_gun/users" for 127.0.0.1 at 2014-11-11 15:56:06 -0800
317
+ Processing by RolloutControl::UsersController#create as HTML
318
+ Parameters: {"user_id"=>"45", "feature_id"=>"potato_gun"}
319
+ Completed 204 No Content in 0ms
320
+ ------------------------------------------------------------------------------
321
+ RolloutControlTest: test_attempt_to_activate_user_to_feature_without_a_user_id
322
+ ------------------------------------------------------------------------------
323
+ Started POST "/rollout/features/potato_gun/users" for 127.0.0.1 at 2014-11-11 15:56:06 -0800
324
+ Processing by RolloutControl::UsersController#create as HTML
325
+ Parameters: {"feature_id"=>"potato_gun"}
326
+ Completed 400 Bad Request in 0ms
327
+ -----------------------------------------------------------------------------
328
+ RolloutControlTest: test_attempt_to_add_group_to_feature_without_a_group_name
329
+ -----------------------------------------------------------------------------
330
+ Started POST "/rollout/features/extra_sharp_knives/groups" for 127.0.0.1 at 2014-11-11 15:56:06 -0800
331
+ Processing by RolloutControl::GroupsController#create as HTML
332
+ Parameters: {"feature_id"=>"extra_sharp_knives"}
333
+ Completed 400 Bad Request in 0ms
334
+ --------------------------------------------
335
+ RolloutControlTest: test_list_empty_features
336
+ --------------------------------------------
337
+ Started GET "/rollout/features" for 127.0.0.1 at 2014-11-11 15:56:06 -0800
338
+ Processing by RolloutControl::FeaturesController#index as HTML
339
+ Completed 200 OK in 0ms (Views: 0.1ms)
340
+ -----------------------------------------------
341
+ RolloutControlTest: test_list_existing_features
342
+ -----------------------------------------------
343
+ Started GET "/rollout/features" for 127.0.0.1 at 2014-11-11 15:56:06 -0800
344
+ Processing by RolloutControl::FeaturesController#index as HTML
345
+ Completed 200 OK in 0ms (Views: 0.0ms)
346
+ Started GET "/rollout/features" for 127.0.0.1 at 2014-11-11 15:56:06 -0800
347
+ Processing by RolloutControl::FeaturesController#index as HTML
348
+ Completed 200 OK in 0ms (Views: 0.0ms)
349
+ --------------------------------------------------
350
+ RolloutControlTest: test_remove_group_from_feature
351
+ --------------------------------------------------
352
+ Started DELETE "/rollout/features/extra_sharp_knives/groups/experienced_chefs" for 127.0.0.1 at 2014-11-11 15:56:06 -0800
353
+ Processing by RolloutControl::GroupsController#destroy as HTML
354
+ Parameters: {"feature_id"=>"extra_sharp_knives", "id"=>"experienced_chefs"}
355
+ Completed 204 No Content in 0ms
356
+ -------------------------------------------------
357
+ RolloutControlTest: test_remove_user_from_feature
358
+ -------------------------------------------------
359
+ Started DELETE "/rollout/features/potato_gun/users/45" for 127.0.0.1 at 2014-11-11 15:56:06 -0800
360
+ Processing by RolloutControl::UsersController#destroy as HTML
361
+ Parameters: {"feature_id"=>"potato_gun", "id"=>"45"}
362
+ Completed 204 No Content in 0ms
363
+ -------------------------------------
364
+ RolloutControlTest: test_show_feature
365
+ -------------------------------------
366
+ Started GET "/rollout/features/kittens" for 127.0.0.1 at 2014-11-11 15:56:06 -0800
367
+ Processing by RolloutControl::FeaturesController#show as HTML
368
+ Parameters: {"id"=>"kittens"}
369
+ Completed 200 OK in 0ms (Views: 0.1ms)
370
+ Started GET "/rollout/features/kittens" for 127.0.0.1 at 2014-11-11 15:56:06 -0800
371
+ Processing by RolloutControl::FeaturesController#show as HTML
372
+ Parameters: {"id"=>"kittens"}
373
+ Completed 200 OK in 0ms (Views: 0.1ms)
374
+ Started GET "/rollout/features/kittens" for 127.0.0.1 at 2014-11-11 15:56:06 -0800
375
+ Processing by RolloutControl::FeaturesController#show as HTML
376
+ Parameters: {"id"=>"kittens"}
377
+ Completed 200 OK in 0ms (Views: 0.1ms)
378
+ --------------------------------------------------
379
+ RolloutControlTest: test_update_feature_percentage
380
+ --------------------------------------------------
381
+ Started PATCH "/rollout/features/kittens" for 127.0.0.1 at 2014-11-11 15:56:06 -0800
382
+ Processing by RolloutControl::FeaturesController#update as HTML
383
+ Parameters: {"percentage"=>"65", "id"=>"kittens"}
384
+ Completed 204 No Content in 0ms
385
+ ---------------------------------------------
386
+ RolloutControlTest: test_add_group_to_feature
387
+ ---------------------------------------------
388
+ Started POST "/rollout/features/extra_sharp_knives/groups" for 127.0.0.1 at 2014-11-11 16:16:31 -0800
389
+ Processing by RolloutControl::GroupsController#create as HTML
390
+ Parameters: {"group"=>"experienced_chefs", "feature_id"=>"extra_sharp_knives"}
391
+ Completed 204 No Content in 0ms
392
+ --------------------------------------------
393
+ RolloutControlTest: test_add_user_to_feature
394
+ --------------------------------------------
395
+ Started POST "/rollout/features/potato_gun/users" for 127.0.0.1 at 2014-11-11 16:16:31 -0800
396
+ Processing by RolloutControl::UsersController#create as HTML
397
+ Parameters: {"user_id"=>"45", "feature_id"=>"potato_gun"}
398
+ Completed 204 No Content in 0ms
399
+ ------------------------------------------------------------------------------
400
+ RolloutControlTest: test_attempt_to_activate_user_to_feature_without_a_user_id
401
+ ------------------------------------------------------------------------------
402
+ Started POST "/rollout/features/potato_gun/users" for 127.0.0.1 at 2014-11-11 16:16:31 -0800
403
+ Processing by RolloutControl::UsersController#create as HTML
404
+ Parameters: {"feature_id"=>"potato_gun"}
405
+ Completed 400 Bad Request in 0ms
406
+ -----------------------------------------------------------------------------
407
+ RolloutControlTest: test_attempt_to_add_group_to_feature_without_a_group_name
408
+ -----------------------------------------------------------------------------
409
+ Started POST "/rollout/features/extra_sharp_knives/groups" for 127.0.0.1 at 2014-11-11 16:16:31 -0800
410
+ Processing by RolloutControl::GroupsController#create as HTML
411
+ Parameters: {"feature_id"=>"extra_sharp_knives"}
412
+ Completed 400 Bad Request in 0ms
413
+ --------------------------------------------
414
+ RolloutControlTest: test_list_empty_features
415
+ --------------------------------------------
416
+ Started GET "/rollout/features" for 127.0.0.1 at 2014-11-11 16:16:31 -0800
417
+ Processing by RolloutControl::FeaturesController#index as HTML
418
+ Completed 200 OK in 0ms (Views: 0.1ms)
419
+ -----------------------------------------------
420
+ RolloutControlTest: test_list_existing_features
421
+ -----------------------------------------------
422
+ Started GET "/rollout/features" for 127.0.0.1 at 2014-11-11 16:16:31 -0800
423
+ Processing by RolloutControl::FeaturesController#index as HTML
424
+ Completed 200 OK in 0ms (Views: 0.0ms)
425
+ Started GET "/rollout/features" for 127.0.0.1 at 2014-11-11 16:16:31 -0800
426
+ Processing by RolloutControl::FeaturesController#index as HTML
427
+ Completed 200 OK in 0ms (Views: 0.0ms)
428
+ --------------------------------------------------
429
+ RolloutControlTest: test_remove_group_from_feature
430
+ --------------------------------------------------
431
+ Started DELETE "/rollout/features/extra_sharp_knives/groups/experienced_chefs" for 127.0.0.1 at 2014-11-11 16:16:31 -0800
432
+ Processing by RolloutControl::GroupsController#destroy as HTML
433
+ Parameters: {"feature_id"=>"extra_sharp_knives", "id"=>"experienced_chefs"}
434
+ Completed 204 No Content in 0ms
435
+ -------------------------------------------------
436
+ RolloutControlTest: test_remove_user_from_feature
437
+ -------------------------------------------------
438
+ Started DELETE "/rollout/features/potato_gun/users/45" for 127.0.0.1 at 2014-11-11 16:16:31 -0800
439
+ Processing by RolloutControl::UsersController#destroy as HTML
440
+ Parameters: {"feature_id"=>"potato_gun", "id"=>"45"}
441
+ Completed 204 No Content in 0ms
442
+ -------------------------------------
443
+ RolloutControlTest: test_show_feature
444
+ -------------------------------------
445
+ Started GET "/rollout/features/kittens" for 127.0.0.1 at 2014-11-11 16:16:31 -0800
446
+ Processing by RolloutControl::FeaturesController#show as HTML
447
+ Parameters: {"id"=>"kittens"}
448
+ Completed 200 OK in 0ms (Views: 0.1ms)
449
+ Started GET "/rollout/features/kittens" for 127.0.0.1 at 2014-11-11 16:16:31 -0800
450
+ Processing by RolloutControl::FeaturesController#show as HTML
451
+ Parameters: {"id"=>"kittens"}
452
+ Completed 200 OK in 0ms (Views: 0.1ms)
453
+ Started GET "/rollout/features/kittens" for 127.0.0.1 at 2014-11-11 16:16:31 -0800
454
+ Processing by RolloutControl::FeaturesController#show as HTML
455
+ Parameters: {"id"=>"kittens"}
456
+ Completed 200 OK in 0ms (Views: 0.1ms)
457
+ --------------------------------------------------
458
+ RolloutControlTest: test_update_feature_percentage
459
+ --------------------------------------------------
460
+ Started PATCH "/rollout/features/kittens" for 127.0.0.1 at 2014-11-11 16:16:31 -0800
461
+ Processing by RolloutControl::FeaturesController#update as HTML
462
+ Parameters: {"percentage"=>"65", "id"=>"kittens"}
463
+ Completed 204 No Content in 0ms
464
+ ------------------------------------------------
465
+ RolloutControl::FeaturesControllerTest: test_wat
466
+ ------------------------------------------------
467
+ ------------------------------------------------
468
+ RolloutControl::FeaturesControllerTest: test_wat
469
+ ------------------------------------------------
470
+ ---------------------------------------------
471
+ RolloutControlTest: test_add_group_to_feature
472
+ ---------------------------------------------
473
+ --------------------------------------------
474
+ RolloutControlTest: test_add_user_to_feature
475
+ --------------------------------------------
476
+ ------------------------------------------------------------------------------
477
+ RolloutControlTest: test_attempt_to_activate_user_to_feature_without_a_user_id
478
+ ------------------------------------------------------------------------------
479
+ -----------------------------------------------------------------------------
480
+ RolloutControlTest: test_attempt_to_add_group_to_feature_without_a_group_name
481
+ -----------------------------------------------------------------------------
482
+ --------------------------------------------
483
+ RolloutControlTest: test_list_empty_features
484
+ --------------------------------------------
485
+ Started GET "/rollout/features" for 127.0.0.1 at 2014-11-11 16:17:39 -0800
486
+ Processing by RolloutControl::FeaturesController#index as HTML
487
+ Completed 200 OK in 0ms (Views: 0.1ms)
488
+ -----------------------------------------------
489
+ RolloutControlTest: test_list_existing_features
490
+ -----------------------------------------------
491
+ --------------------------------------------------
492
+ RolloutControlTest: test_remove_group_from_feature
493
+ --------------------------------------------------
494
+ -------------------------------------------------
495
+ RolloutControlTest: test_remove_user_from_feature
496
+ -------------------------------------------------
497
+ -------------------------------------
498
+ RolloutControlTest: test_show_feature
499
+ -------------------------------------
500
+ --------------------------------------------------
501
+ RolloutControlTest: test_update_feature_percentage
502
+ --------------------------------------------------
503
+ ---------------------------------------------
504
+ RolloutControlTest: test_add_group_to_feature
505
+ ---------------------------------------------
506
+ --------------------------------------------
507
+ RolloutControlTest: test_add_user_to_feature
508
+ --------------------------------------------
509
+ ------------------------------------------------------------------------------
510
+ RolloutControlTest: test_attempt_to_activate_user_to_feature_without_a_user_id
511
+ ------------------------------------------------------------------------------
512
+ -----------------------------------------------------------------------------
513
+ RolloutControlTest: test_attempt_to_add_group_to_feature_without_a_group_name
514
+ -----------------------------------------------------------------------------
515
+ --------------------------------------------
516
+ RolloutControlTest: test_list_empty_features
517
+ --------------------------------------------
518
+ Started GET "/rollout/features" for 127.0.0.1 at 2014-11-11 16:18:11 -0800
519
+ Processing by RolloutControl::FeaturesController#index as HTML
520
+ Completed 200 OK in 0ms (Views: 0.1ms)
521
+ -----------------------------------------------
522
+ RolloutControlTest: test_list_existing_features
523
+ -----------------------------------------------
524
+ --------------------------------------------------
525
+ RolloutControlTest: test_remove_group_from_feature
526
+ --------------------------------------------------
527
+ -------------------------------------------------
528
+ RolloutControlTest: test_remove_user_from_feature
529
+ -------------------------------------------------
530
+ -------------------------------------
531
+ RolloutControlTest: test_show_feature
532
+ -------------------------------------
533
+ --------------------------------------------------
534
+ RolloutControlTest: test_update_feature_percentage
535
+ --------------------------------------------------
536
+ ------------------------------------------------
537
+ RolloutControl::FeaturesControllerTest: test_wat
538
+ ------------------------------------------------
539
+ ------------------------------------------------
540
+ RolloutControl::FeaturesControllerTest: test_wat
541
+ ------------------------------------------------
542
+ ---------------------------------------------
543
+ RolloutControlTest: test_add_group_to_feature
544
+ ---------------------------------------------
545
+ --------------------------------------------
546
+ RolloutControlTest: test_add_user_to_feature
547
+ --------------------------------------------
548
+ ------------------------------------------------------------------------------
549
+ RolloutControlTest: test_attempt_to_activate_user_to_feature_without_a_user_id
550
+ ------------------------------------------------------------------------------
551
+ -----------------------------------------------------------------------------
552
+ RolloutControlTest: test_attempt_to_add_group_to_feature_without_a_group_name
553
+ -----------------------------------------------------------------------------
554
+ --------------------------------------------
555
+ RolloutControlTest: test_list_empty_features
556
+ --------------------------------------------
557
+ Started GET "/rollout/features" for 127.0.0.1 at 2014-11-11 16:18:16 -0800
558
+ Processing by RolloutControl::FeaturesController#index as HTML
559
+ Completed 200 OK in 0ms (Views: 0.1ms)
560
+ -----------------------------------------------
561
+ RolloutControlTest: test_list_existing_features
562
+ -----------------------------------------------
563
+ --------------------------------------------------
564
+ RolloutControlTest: test_remove_group_from_feature
565
+ --------------------------------------------------
566
+ -------------------------------------------------
567
+ RolloutControlTest: test_remove_user_from_feature
568
+ -------------------------------------------------
569
+ -------------------------------------
570
+ RolloutControlTest: test_show_feature
571
+ -------------------------------------
572
+ --------------------------------------------------
573
+ RolloutControlTest: test_update_feature_percentage
574
+ --------------------------------------------------
575
+ ---------------------------------------------
576
+ RolloutControlTest: test_add_group_to_feature
577
+ ---------------------------------------------
578
+ Started POST "/rollout/features/extra_sharp_knives/groups" for 127.0.0.1 at 2014-11-11 16:19:25 -0800
579
+ Processing by RolloutControl::GroupsController#create as HTML
580
+ Parameters: {"group"=>"experienced_chefs", "feature_id"=>"extra_sharp_knives"}
581
+ Completed 204 No Content in 0ms
582
+ --------------------------------------------
583
+ RolloutControlTest: test_add_user_to_feature
584
+ --------------------------------------------
585
+ Started POST "/rollout/features/potato_gun/users" for 127.0.0.1 at 2014-11-11 16:19:25 -0800
586
+ Processing by RolloutControl::UsersController#create as HTML
587
+ Parameters: {"user_id"=>"45", "feature_id"=>"potato_gun"}
588
+ Completed 204 No Content in 0ms
589
+ ------------------------------------------------------------------------------
590
+ RolloutControlTest: test_attempt_to_activate_user_to_feature_without_a_user_id
591
+ ------------------------------------------------------------------------------
592
+ Started POST "/rollout/features/potato_gun/users" for 127.0.0.1 at 2014-11-11 16:19:25 -0800
593
+ Processing by RolloutControl::UsersController#create as HTML
594
+ Parameters: {"feature_id"=>"potato_gun"}
595
+ Completed 400 Bad Request in 0ms
596
+ -----------------------------------------------------------------------------
597
+ RolloutControlTest: test_attempt_to_add_group_to_feature_without_a_group_name
598
+ -----------------------------------------------------------------------------
599
+ Started POST "/rollout/features/extra_sharp_knives/groups" for 127.0.0.1 at 2014-11-11 16:19:25 -0800
600
+ Processing by RolloutControl::GroupsController#create as HTML
601
+ Parameters: {"feature_id"=>"extra_sharp_knives"}
602
+ Completed 400 Bad Request in 0ms
603
+ --------------------------------------------
604
+ RolloutControlTest: test_list_empty_features
605
+ --------------------------------------------
606
+ Started GET "/rollout/features" for 127.0.0.1 at 2014-11-11 16:19:25 -0800
607
+ Processing by RolloutControl::FeaturesController#index as HTML
608
+ Completed 200 OK in 0ms (Views: 0.1ms)
609
+ -----------------------------------------------
610
+ RolloutControlTest: test_list_existing_features
611
+ -----------------------------------------------
612
+ Started GET "/rollout/features" for 127.0.0.1 at 2014-11-11 16:19:25 -0800
613
+ Processing by RolloutControl::FeaturesController#index as HTML
614
+ Completed 200 OK in 0ms (Views: 0.0ms)
615
+ Started GET "/rollout/features" for 127.0.0.1 at 2014-11-11 16:19:25 -0800
616
+ Processing by RolloutControl::FeaturesController#index as HTML
617
+ Completed 200 OK in 0ms (Views: 0.1ms)
618
+ --------------------------------------------------
619
+ RolloutControlTest: test_remove_group_from_feature
620
+ --------------------------------------------------
621
+ Started DELETE "/rollout/features/extra_sharp_knives/groups/experienced_chefs" for 127.0.0.1 at 2014-11-11 16:19:25 -0800
622
+ Processing by RolloutControl::GroupsController#destroy as HTML
623
+ Parameters: {"feature_id"=>"extra_sharp_knives", "id"=>"experienced_chefs"}
624
+ Completed 204 No Content in 0ms
625
+ -------------------------------------------------
626
+ RolloutControlTest: test_remove_user_from_feature
627
+ -------------------------------------------------
628
+ Started DELETE "/rollout/features/potato_gun/users/45" for 127.0.0.1 at 2014-11-11 16:19:25 -0800
629
+ Processing by RolloutControl::UsersController#destroy as HTML
630
+ Parameters: {"feature_id"=>"potato_gun", "id"=>"45"}
631
+ Completed 204 No Content in 0ms
632
+ -------------------------------------
633
+ RolloutControlTest: test_show_feature
634
+ -------------------------------------
635
+ Started GET "/rollout/features/kittens" for 127.0.0.1 at 2014-11-11 16:19:25 -0800
636
+ Processing by RolloutControl::FeaturesController#show as HTML
637
+ Parameters: {"id"=>"kittens"}
638
+ Completed 200 OK in 0ms (Views: 0.1ms)
639
+ Started GET "/rollout/features/kittens" for 127.0.0.1 at 2014-11-11 16:19:25 -0800
640
+ Processing by RolloutControl::FeaturesController#show as HTML
641
+ Parameters: {"id"=>"kittens"}
642
+ Completed 200 OK in 0ms (Views: 0.1ms)
643
+ Started GET "/rollout/features/kittens" for 127.0.0.1 at 2014-11-11 16:19:25 -0800
644
+ Processing by RolloutControl::FeaturesController#show as HTML
645
+ Parameters: {"id"=>"kittens"}
646
+ Completed 200 OK in 0ms (Views: 0.1ms)
647
+ --------------------------------------------------
648
+ RolloutControlTest: test_update_feature_percentage
649
+ --------------------------------------------------
650
+ Started PATCH "/rollout/features/kittens" for 127.0.0.1 at 2014-11-11 16:19:25 -0800
651
+ Processing by RolloutControl::FeaturesController#update as HTML
652
+ Parameters: {"percentage"=>"65", "id"=>"kittens"}
653
+ Completed 204 No Content in 0ms
654
+ ------------------------------------------------
655
+ RolloutControl::FeaturesControllerTest: test_wat
656
+ ------------------------------------------------
657
+ ------------------------------------------------
658
+ RolloutControl::FeaturesControllerTest: test_wat
659
+ ------------------------------------------------
660
+ ---------------------------------------------
661
+ RolloutControlTest: test_add_group_to_feature
662
+ ---------------------------------------------
663
+ Started POST "/rollout/features/extra_sharp_knives/groups" for 127.0.0.1 at 2014-11-11 17:21:05 -0800
664
+ --------------------------------------------
665
+ RolloutControlTest: test_add_user_to_feature
666
+ --------------------------------------------
667
+ Started POST "/rollout/features/potato_gun/users" for 127.0.0.1 at 2014-11-11 17:21:05 -0800
668
+ ------------------------------------------------------------------------------
669
+ RolloutControlTest: test_attempt_to_activate_user_to_feature_without_a_user_id
670
+ ------------------------------------------------------------------------------
671
+ Started POST "/rollout/features/potato_gun/users" for 127.0.0.1 at 2014-11-11 17:21:05 -0800
672
+ -----------------------------------------------------------------------------
673
+ RolloutControlTest: test_attempt_to_add_group_to_feature_without_a_group_name
674
+ -----------------------------------------------------------------------------
675
+ Started POST "/rollout/features/extra_sharp_knives/groups" for 127.0.0.1 at 2014-11-11 17:21:05 -0800
676
+ --------------------------------------------
677
+ RolloutControlTest: test_list_empty_features
678
+ --------------------------------------------
679
+ Started GET "/rollout/features" for 127.0.0.1 at 2014-11-11 17:21:05 -0800
680
+ -----------------------------------------------
681
+ RolloutControlTest: test_list_existing_features
682
+ -----------------------------------------------
683
+ Started GET "/rollout/features" for 127.0.0.1 at 2014-11-11 17:21:05 -0800
684
+ --------------------------------------------------
685
+ RolloutControlTest: test_remove_group_from_feature
686
+ --------------------------------------------------
687
+ Started DELETE "/rollout/features/extra_sharp_knives/groups/experienced_chefs" for 127.0.0.1 at 2014-11-11 17:21:05 -0800
688
+ -------------------------------------------------
689
+ RolloutControlTest: test_remove_user_from_feature
690
+ -------------------------------------------------
691
+ Started DELETE "/rollout/features/potato_gun/users/45" for 127.0.0.1 at 2014-11-11 17:21:05 -0800
692
+ -------------------------------------
693
+ RolloutControlTest: test_show_feature
694
+ -------------------------------------
695
+ Started GET "/rollout/features/kittens" for 127.0.0.1 at 2014-11-11 17:21:05 -0800
696
+ --------------------------------------------------
697
+ RolloutControlTest: test_update_feature_percentage
698
+ --------------------------------------------------
699
+ Started PATCH "/rollout/features/kittens" for 127.0.0.1 at 2014-11-11 17:21:05 -0800
700
+ ------------------------------------------------
701
+ RolloutControl::FeaturesControllerTest: test_wat
702
+ ------------------------------------------------
703
+ ---------------------------------------------
704
+ RolloutControlTest: test_add_group_to_feature
705
+ ---------------------------------------------
706
+ Started POST "/rollout/features/extra_sharp_knives/groups" for 127.0.0.1 at 2014-11-11 17:21:52 -0800
707
+ --------------------------------------------
708
+ RolloutControlTest: test_add_user_to_feature
709
+ --------------------------------------------
710
+ Started POST "/rollout/features/potato_gun/users" for 127.0.0.1 at 2014-11-11 17:21:52 -0800
711
+ ------------------------------------------------------------------------------
712
+ RolloutControlTest: test_attempt_to_activate_user_to_feature_without_a_user_id
713
+ ------------------------------------------------------------------------------
714
+ Started POST "/rollout/features/potato_gun/users" for 127.0.0.1 at 2014-11-11 17:21:52 -0800
715
+ -----------------------------------------------------------------------------
716
+ RolloutControlTest: test_attempt_to_add_group_to_feature_without_a_group_name
717
+ -----------------------------------------------------------------------------
718
+ Started POST "/rollout/features/extra_sharp_knives/groups" for 127.0.0.1 at 2014-11-11 17:21:52 -0800
719
+ --------------------------------------------
720
+ RolloutControlTest: test_list_empty_features
721
+ --------------------------------------------
722
+ Started GET "/rollout/features" for 127.0.0.1 at 2014-11-11 17:21:52 -0800
723
+ -----------------------------------------------
724
+ RolloutControlTest: test_list_existing_features
725
+ -----------------------------------------------
726
+ Started GET "/rollout/features" for 127.0.0.1 at 2014-11-11 17:21:52 -0800
727
+ --------------------------------------------------
728
+ RolloutControlTest: test_remove_group_from_feature
729
+ --------------------------------------------------
730
+ Started DELETE "/rollout/features/extra_sharp_knives/groups/experienced_chefs" for 127.0.0.1 at 2014-11-11 17:21:52 -0800
731
+ -------------------------------------------------
732
+ RolloutControlTest: test_remove_user_from_feature
733
+ -------------------------------------------------
734
+ Started DELETE "/rollout/features/potato_gun/users/45" for 127.0.0.1 at 2014-11-11 17:21:52 -0800
735
+ -------------------------------------
736
+ RolloutControlTest: test_show_feature
737
+ -------------------------------------
738
+ Started GET "/rollout/features/kittens" for 127.0.0.1 at 2014-11-11 17:21:52 -0800
739
+ --------------------------------------------------
740
+ RolloutControlTest: test_update_feature_percentage
741
+ --------------------------------------------------
742
+ Started PATCH "/rollout/features/kittens" for 127.0.0.1 at 2014-11-11 17:21:52 -0800
743
+ ---------------------------------------------
744
+ RolloutControlTest: test_add_group_to_feature
745
+ ---------------------------------------------
746
+ Started POST "/rollout/features/extra_sharp_knives/groups" for 127.0.0.1 at 2014-11-11 17:22:14 -0800
747
+ --------------------------------------------
748
+ RolloutControlTest: test_add_user_to_feature
749
+ --------------------------------------------
750
+ Started POST "/rollout/features/potato_gun/users" for 127.0.0.1 at 2014-11-11 17:22:14 -0800
751
+ ------------------------------------------------------------------------------
752
+ RolloutControlTest: test_attempt_to_activate_user_to_feature_without_a_user_id
753
+ ------------------------------------------------------------------------------
754
+ Started POST "/rollout/features/potato_gun/users" for 127.0.0.1 at 2014-11-11 17:22:14 -0800
755
+ -----------------------------------------------------------------------------
756
+ RolloutControlTest: test_attempt_to_add_group_to_feature_without_a_group_name
757
+ -----------------------------------------------------------------------------
758
+ Started POST "/rollout/features/extra_sharp_knives/groups" for 127.0.0.1 at 2014-11-11 17:22:14 -0800
759
+ --------------------------------------------
760
+ RolloutControlTest: test_list_empty_features
761
+ --------------------------------------------
762
+ Started GET "/rollout/features" for 127.0.0.1 at 2014-11-11 17:22:14 -0800
763
+ -----------------------------------------------
764
+ RolloutControlTest: test_list_existing_features
765
+ -----------------------------------------------
766
+ Started GET "/rollout/features" for 127.0.0.1 at 2014-11-11 17:22:14 -0800
767
+ --------------------------------------------------
768
+ RolloutControlTest: test_remove_group_from_feature
769
+ --------------------------------------------------
770
+ Started DELETE "/rollout/features/extra_sharp_knives/groups/experienced_chefs" for 127.0.0.1 at 2014-11-11 17:22:14 -0800
771
+ -------------------------------------------------
772
+ RolloutControlTest: test_remove_user_from_feature
773
+ -------------------------------------------------
774
+ Started DELETE "/rollout/features/potato_gun/users/45" for 127.0.0.1 at 2014-11-11 17:22:14 -0800
775
+ -------------------------------------
776
+ RolloutControlTest: test_show_feature
777
+ -------------------------------------
778
+ Started GET "/rollout/features/kittens" for 127.0.0.1 at 2014-11-11 17:22:14 -0800
779
+ --------------------------------------------------
780
+ RolloutControlTest: test_update_feature_percentage
781
+ --------------------------------------------------
782
+ Started PATCH "/rollout/features/kittens" for 127.0.0.1 at 2014-11-11 17:22:14 -0800
783
+ ------------------------------------------------
784
+ RolloutControl::FeaturesControllerTest: test_wat
785
+ ------------------------------------------------
786
+ ------------------------------------------------
787
+ RolloutControl::FeaturesControllerTest: test_wat
788
+ ------------------------------------------------
789
+ ---------------------------------------------
790
+ RolloutControlTest: test_add_group_to_feature
791
+ ---------------------------------------------
792
+ Started POST "/rollout/features/extra_sharp_knives/groups" for 127.0.0.1 at 2014-11-11 17:23:25 -0800
793
+ --------------------------------------------
794
+ RolloutControlTest: test_add_user_to_feature
795
+ --------------------------------------------
796
+ Started POST "/rollout/features/potato_gun/users" for 127.0.0.1 at 2014-11-11 17:23:25 -0800
797
+ ------------------------------------------------------------------------------
798
+ RolloutControlTest: test_attempt_to_activate_user_to_feature_without_a_user_id
799
+ ------------------------------------------------------------------------------
800
+ Started POST "/rollout/features/potato_gun/users" for 127.0.0.1 at 2014-11-11 17:23:25 -0800
801
+ -----------------------------------------------------------------------------
802
+ RolloutControlTest: test_attempt_to_add_group_to_feature_without_a_group_name
803
+ -----------------------------------------------------------------------------
804
+ Started POST "/rollout/features/extra_sharp_knives/groups" for 127.0.0.1 at 2014-11-11 17:23:25 -0800
805
+ --------------------------------------------
806
+ RolloutControlTest: test_list_empty_features
807
+ --------------------------------------------
808
+ Started GET "/rollout/features" for 127.0.0.1 at 2014-11-11 17:23:25 -0800
809
+ -----------------------------------------------
810
+ RolloutControlTest: test_list_existing_features
811
+ -----------------------------------------------
812
+ Started GET "/rollout/features" for 127.0.0.1 at 2014-11-11 17:23:25 -0800
813
+ --------------------------------------------------
814
+ RolloutControlTest: test_remove_group_from_feature
815
+ --------------------------------------------------
816
+ Started DELETE "/rollout/features/extra_sharp_knives/groups/experienced_chefs" for 127.0.0.1 at 2014-11-11 17:23:25 -0800
817
+ -------------------------------------------------
818
+ RolloutControlTest: test_remove_user_from_feature
819
+ -------------------------------------------------
820
+ Started DELETE "/rollout/features/potato_gun/users/45" for 127.0.0.1 at 2014-11-11 17:23:25 -0800
821
+ -------------------------------------
822
+ RolloutControlTest: test_show_feature
823
+ -------------------------------------
824
+ Started GET "/rollout/features/kittens" for 127.0.0.1 at 2014-11-11 17:23:25 -0800
825
+ --------------------------------------------------
826
+ RolloutControlTest: test_update_feature_percentage
827
+ --------------------------------------------------
828
+ Started PATCH "/rollout/features/kittens" for 127.0.0.1 at 2014-11-11 17:23:25 -0800
829
+ ------------------------------------------------
830
+ RolloutControl::FeaturesControllerTest: test_wat
831
+ ------------------------------------------------
832
+ ---------------------------------------------
833
+ RolloutControlTest: test_add_group_to_feature
834
+ ---------------------------------------------
835
+ Started POST "/rollout/features/extra_sharp_knives/groups" for 127.0.0.1 at 2014-11-11 17:24:12 -0800
836
+ --------------------------------------------
837
+ RolloutControlTest: test_add_user_to_feature
838
+ --------------------------------------------
839
+ Started POST "/rollout/features/potato_gun/users" for 127.0.0.1 at 2014-11-11 17:24:12 -0800
840
+ ------------------------------------------------------------------------------
841
+ RolloutControlTest: test_attempt_to_activate_user_to_feature_without_a_user_id
842
+ ------------------------------------------------------------------------------
843
+ Started POST "/rollout/features/potato_gun/users" for 127.0.0.1 at 2014-11-11 17:24:12 -0800
844
+ -----------------------------------------------------------------------------
845
+ RolloutControlTest: test_attempt_to_add_group_to_feature_without_a_group_name
846
+ -----------------------------------------------------------------------------
847
+ Started POST "/rollout/features/extra_sharp_knives/groups" for 127.0.0.1 at 2014-11-11 17:24:12 -0800
848
+ --------------------------------------------
849
+ RolloutControlTest: test_list_empty_features
850
+ --------------------------------------------
851
+ Started GET "/rollout/features" for 127.0.0.1 at 2014-11-11 17:24:12 -0800
852
+ -----------------------------------------------
853
+ RolloutControlTest: test_list_existing_features
854
+ -----------------------------------------------
855
+ Started GET "/rollout/features" for 127.0.0.1 at 2014-11-11 17:24:12 -0800
856
+ --------------------------------------------------
857
+ RolloutControlTest: test_remove_group_from_feature
858
+ --------------------------------------------------
859
+ Started DELETE "/rollout/features/extra_sharp_knives/groups/experienced_chefs" for 127.0.0.1 at 2014-11-11 17:24:12 -0800
860
+ -------------------------------------------------
861
+ RolloutControlTest: test_remove_user_from_feature
862
+ -------------------------------------------------
863
+ Started DELETE "/rollout/features/potato_gun/users/45" for 127.0.0.1 at 2014-11-11 17:24:12 -0800
864
+ -------------------------------------
865
+ RolloutControlTest: test_show_feature
866
+ -------------------------------------
867
+ Started GET "/rollout/features/kittens" for 127.0.0.1 at 2014-11-11 17:24:12 -0800
868
+ --------------------------------------------------
869
+ RolloutControlTest: test_update_feature_percentage
870
+ --------------------------------------------------
871
+ Started PATCH "/rollout/features/kittens" for 127.0.0.1 at 2014-11-11 17:24:12 -0800
872
+ ------------------------------------------------
873
+ RolloutControl::FeaturesControllerTest: test_wat
874
+ ------------------------------------------------
875
+ ---------------------------------------------
876
+ RolloutControlTest: test_add_group_to_feature
877
+ ---------------------------------------------
878
+ Started POST "/rollout/features/extra_sharp_knives/groups" for 127.0.0.1 at 2014-11-11 17:24:48 -0800
879
+ Processing by RolloutControl::GroupsController#create as HTML
880
+ Parameters: {"group"=>"experienced_chefs", "feature_id"=>"extra_sharp_knives"}
881
+ Completed 204 No Content in 0ms
882
+ --------------------------------------------
883
+ RolloutControlTest: test_add_user_to_feature
884
+ --------------------------------------------
885
+ Started POST "/rollout/features/potato_gun/users" for 127.0.0.1 at 2014-11-11 17:24:48 -0800
886
+ Processing by RolloutControl::UsersController#create as HTML
887
+ Parameters: {"user_id"=>"45", "feature_id"=>"potato_gun"}
888
+ Completed 204 No Content in 0ms
889
+ ------------------------------------------------------------------------------
890
+ RolloutControlTest: test_attempt_to_activate_user_to_feature_without_a_user_id
891
+ ------------------------------------------------------------------------------
892
+ Started POST "/rollout/features/potato_gun/users" for 127.0.0.1 at 2014-11-11 17:24:48 -0800
893
+ Processing by RolloutControl::UsersController#create as HTML
894
+ Parameters: {"feature_id"=>"potato_gun"}
895
+ Completed 400 Bad Request in 0ms
896
+ -----------------------------------------------------------------------------
897
+ RolloutControlTest: test_attempt_to_add_group_to_feature_without_a_group_name
898
+ -----------------------------------------------------------------------------
899
+ Started POST "/rollout/features/extra_sharp_knives/groups" for 127.0.0.1 at 2014-11-11 17:24:48 -0800
900
+ Processing by RolloutControl::GroupsController#create as HTML
901
+ Parameters: {"feature_id"=>"extra_sharp_knives"}
902
+ Completed 400 Bad Request in 0ms
903
+ --------------------------------------------
904
+ RolloutControlTest: test_list_empty_features
905
+ --------------------------------------------
906
+ Started GET "/rollout/features" for 127.0.0.1 at 2014-11-11 17:24:48 -0800
907
+ Processing by RolloutControl::FeaturesController#index as HTML
908
+ Completed 200 OK in 0ms (Views: 0.1ms)
909
+ -----------------------------------------------
910
+ RolloutControlTest: test_list_existing_features
911
+ -----------------------------------------------
912
+ Started GET "/rollout/features" for 127.0.0.1 at 2014-11-11 17:24:48 -0800
913
+ Processing by RolloutControl::FeaturesController#index as HTML
914
+ Completed 200 OK in 0ms (Views: 0.1ms)
915
+ Started GET "/rollout/features" for 127.0.0.1 at 2014-11-11 17:24:48 -0800
916
+ Processing by RolloutControl::FeaturesController#index as HTML
917
+ Completed 200 OK in 0ms (Views: 0.0ms)
918
+ --------------------------------------------------
919
+ RolloutControlTest: test_remove_group_from_feature
920
+ --------------------------------------------------
921
+ Started DELETE "/rollout/features/extra_sharp_knives/groups/experienced_chefs" for 127.0.0.1 at 2014-11-11 17:24:48 -0800
922
+ Processing by RolloutControl::GroupsController#destroy as HTML
923
+ Parameters: {"feature_id"=>"extra_sharp_knives", "id"=>"experienced_chefs"}
924
+ Completed 204 No Content in 0ms
925
+ -------------------------------------------------
926
+ RolloutControlTest: test_remove_user_from_feature
927
+ -------------------------------------------------
928
+ Started DELETE "/rollout/features/potato_gun/users/45" for 127.0.0.1 at 2014-11-11 17:24:48 -0800
929
+ Processing by RolloutControl::UsersController#destroy as HTML
930
+ Parameters: {"feature_id"=>"potato_gun", "id"=>"45"}
931
+ Completed 204 No Content in 0ms
932
+ -------------------------------------
933
+ RolloutControlTest: test_show_feature
934
+ -------------------------------------
935
+ Started GET "/rollout/features/kittens" for 127.0.0.1 at 2014-11-11 17:24:48 -0800
936
+ Processing by RolloutControl::FeaturesController#show as HTML
937
+ Parameters: {"id"=>"kittens"}
938
+ Completed 200 OK in 0ms (Views: 0.1ms)
939
+ Started GET "/rollout/features/kittens" for 127.0.0.1 at 2014-11-11 17:24:48 -0800
940
+ Processing by RolloutControl::FeaturesController#show as HTML
941
+ Parameters: {"id"=>"kittens"}
942
+ Completed 200 OK in 0ms (Views: 0.1ms)
943
+ Started GET "/rollout/features/kittens" for 127.0.0.1 at 2014-11-11 17:24:48 -0800
944
+ Processing by RolloutControl::FeaturesController#show as HTML
945
+ Parameters: {"id"=>"kittens"}
946
+ Completed 200 OK in 0ms (Views: 0.1ms)
947
+ --------------------------------------------------
948
+ RolloutControlTest: test_update_feature_percentage
949
+ --------------------------------------------------
950
+ Started PATCH "/rollout/features/kittens" for 127.0.0.1 at 2014-11-11 17:24:48 -0800
951
+ Processing by RolloutControl::FeaturesController#update as HTML
952
+ Parameters: {"percentage"=>"65", "id"=>"kittens"}
953
+ Completed 204 No Content in 0ms
954
+ ---------------------------------------------
955
+ RolloutControlTest: test_add_group_to_feature
956
+ ---------------------------------------------
957
+ Started POST "/rollout/features/extra_sharp_knives/groups" for 127.0.0.1 at 2014-11-11 17:26:08 -0800
958
+ Processing by RolloutControl::GroupsController#create as HTML
959
+ Parameters: {"group"=>"experienced_chefs", "feature_id"=>"extra_sharp_knives"}
960
+ Completed 204 No Content in 0ms
961
+ --------------------------------------------
962
+ RolloutControlTest: test_add_user_to_feature
963
+ --------------------------------------------
964
+ Started POST "/rollout/features/potato_gun/users" for 127.0.0.1 at 2014-11-11 17:26:08 -0800
965
+ Processing by RolloutControl::UsersController#create as HTML
966
+ Parameters: {"user_id"=>"45", "feature_id"=>"potato_gun"}
967
+ Completed 204 No Content in 0ms
968
+ ------------------------------------------------------------------------------
969
+ RolloutControlTest: test_attempt_to_activate_user_to_feature_without_a_user_id
970
+ ------------------------------------------------------------------------------
971
+ Started POST "/rollout/features/potato_gun/users" for 127.0.0.1 at 2014-11-11 17:26:08 -0800
972
+ Processing by RolloutControl::UsersController#create as HTML
973
+ Parameters: {"feature_id"=>"potato_gun"}
974
+ Completed 400 Bad Request in 0ms
975
+ -----------------------------------------------------------------------------
976
+ RolloutControlTest: test_attempt_to_add_group_to_feature_without_a_group_name
977
+ -----------------------------------------------------------------------------
978
+ Started POST "/rollout/features/extra_sharp_knives/groups" for 127.0.0.1 at 2014-11-11 17:26:08 -0800
979
+ Processing by RolloutControl::GroupsController#create as HTML
980
+ Parameters: {"feature_id"=>"extra_sharp_knives"}
981
+ Completed 400 Bad Request in 0ms
982
+ --------------------------------------------
983
+ RolloutControlTest: test_list_empty_features
984
+ --------------------------------------------
985
+ Started GET "/rollout/features" for 127.0.0.1 at 2014-11-11 17:26:08 -0800
986
+ Processing by RolloutControl::FeaturesController#index as HTML
987
+ Completed 200 OK in 0ms (Views: 0.1ms)
988
+ -----------------------------------------------
989
+ RolloutControlTest: test_list_existing_features
990
+ -----------------------------------------------
991
+ Started GET "/rollout/features" for 127.0.0.1 at 2014-11-11 17:26:08 -0800
992
+ Processing by RolloutControl::FeaturesController#index as HTML
993
+ Completed 200 OK in 0ms (Views: 0.0ms)
994
+ Started GET "/rollout/features" for 127.0.0.1 at 2014-11-11 17:26:08 -0800
995
+ Processing by RolloutControl::FeaturesController#index as HTML
996
+ Completed 200 OK in 0ms (Views: 0.0ms)
997
+ --------------------------------------------------
998
+ RolloutControlTest: test_remove_group_from_feature
999
+ --------------------------------------------------
1000
+ Started DELETE "/rollout/features/extra_sharp_knives/groups/experienced_chefs" for 127.0.0.1 at 2014-11-11 17:26:08 -0800
1001
+ Processing by RolloutControl::GroupsController#destroy as HTML
1002
+ Parameters: {"feature_id"=>"extra_sharp_knives", "id"=>"experienced_chefs"}
1003
+ Completed 204 No Content in 0ms
1004
+ -------------------------------------------------
1005
+ RolloutControlTest: test_remove_user_from_feature
1006
+ -------------------------------------------------
1007
+ Started DELETE "/rollout/features/potato_gun/users/45" for 127.0.0.1 at 2014-11-11 17:26:08 -0800
1008
+ Processing by RolloutControl::UsersController#destroy as HTML
1009
+ Parameters: {"feature_id"=>"potato_gun", "id"=>"45"}
1010
+ Completed 204 No Content in 0ms
1011
+ -------------------------------------
1012
+ RolloutControlTest: test_show_feature
1013
+ -------------------------------------
1014
+ Started GET "/rollout/features/kittens" for 127.0.0.1 at 2014-11-11 17:26:08 -0800
1015
+ Processing by RolloutControl::FeaturesController#show as HTML
1016
+ Parameters: {"id"=>"kittens"}
1017
+ Completed 200 OK in 0ms (Views: 0.1ms)
1018
+ Started GET "/rollout/features/kittens" for 127.0.0.1 at 2014-11-11 17:26:08 -0800
1019
+ Processing by RolloutControl::FeaturesController#show as HTML
1020
+ Parameters: {"id"=>"kittens"}
1021
+ Completed 200 OK in 0ms (Views: 0.1ms)
1022
+ Started GET "/rollout/features/kittens" for 127.0.0.1 at 2014-11-11 17:26:08 -0800
1023
+ Processing by RolloutControl::FeaturesController#show as HTML
1024
+ Parameters: {"id"=>"kittens"}
1025
+ Completed 200 OK in 0ms (Views: 0.1ms)
1026
+ --------------------------------------------------
1027
+ RolloutControlTest: test_update_feature_percentage
1028
+ --------------------------------------------------
1029
+ Started PATCH "/rollout/features/kittens" for 127.0.0.1 at 2014-11-11 17:26:08 -0800
1030
+ Processing by RolloutControl::FeaturesController#update as HTML
1031
+ Parameters: {"percentage"=>"65", "id"=>"kittens"}
1032
+ Completed 204 No Content in 0ms
1033
+ ------------------------------------------------
1034
+ RolloutControl::FeaturesControllerTest: test_wat
1035
+ ------------------------------------------------
1036
+ ------------------------------------------------
1037
+ RolloutControl::FeaturesControllerTest: test_wat
1038
+ ------------------------------------------------
1039
+ ---------------------------------------------
1040
+ RolloutControlTest: test_add_group_to_feature
1041
+ ---------------------------------------------
1042
+ Started POST "/rollout/features/extra_sharp_knives/groups" for 127.0.0.1 at 2014-11-11 17:27:19 -0800
1043
+ Processing by RolloutControl::GroupsController#create as HTML
1044
+ Parameters: {"group"=>"experienced_chefs", "feature_id"=>"extra_sharp_knives"}
1045
+ Completed 204 No Content in 0ms
1046
+ --------------------------------------------
1047
+ RolloutControlTest: test_add_user_to_feature
1048
+ --------------------------------------------
1049
+ Started POST "/rollout/features/potato_gun/users" for 127.0.0.1 at 2014-11-11 17:27:19 -0800
1050
+ Processing by RolloutControl::UsersController#create as HTML
1051
+ Parameters: {"user_id"=>"45", "feature_id"=>"potato_gun"}
1052
+ Completed 204 No Content in 0ms
1053
+ ------------------------------------------------------------------------------
1054
+ RolloutControlTest: test_attempt_to_activate_user_to_feature_without_a_user_id
1055
+ ------------------------------------------------------------------------------
1056
+ Started POST "/rollout/features/potato_gun/users" for 127.0.0.1 at 2014-11-11 17:27:19 -0800
1057
+ Processing by RolloutControl::UsersController#create as HTML
1058
+ Parameters: {"feature_id"=>"potato_gun"}
1059
+ Completed 400 Bad Request in 0ms
1060
+ -----------------------------------------------------------------------------
1061
+ RolloutControlTest: test_attempt_to_add_group_to_feature_without_a_group_name
1062
+ -----------------------------------------------------------------------------
1063
+ Started POST "/rollout/features/extra_sharp_knives/groups" for 127.0.0.1 at 2014-11-11 17:27:19 -0800
1064
+ Processing by RolloutControl::GroupsController#create as HTML
1065
+ Parameters: {"feature_id"=>"extra_sharp_knives"}
1066
+ Completed 400 Bad Request in 0ms
1067
+ --------------------------------------------
1068
+ RolloutControlTest: test_list_empty_features
1069
+ --------------------------------------------
1070
+ Started GET "/rollout/features" for 127.0.0.1 at 2014-11-11 17:27:19 -0800
1071
+ Processing by RolloutControl::FeaturesController#index as HTML
1072
+ Completed 200 OK in 0ms (Views: 0.1ms)
1073
+ -----------------------------------------------
1074
+ RolloutControlTest: test_list_existing_features
1075
+ -----------------------------------------------
1076
+ Started GET "/rollout/features" for 127.0.0.1 at 2014-11-11 17:27:19 -0800
1077
+ Processing by RolloutControl::FeaturesController#index as HTML
1078
+ Completed 200 OK in 0ms (Views: 0.0ms)
1079
+ Started GET "/rollout/features" for 127.0.0.1 at 2014-11-11 17:27:19 -0800
1080
+ Processing by RolloutControl::FeaturesController#index as HTML
1081
+ Completed 200 OK in 0ms (Views: 0.0ms)
1082
+ --------------------------------------------------
1083
+ RolloutControlTest: test_remove_group_from_feature
1084
+ --------------------------------------------------
1085
+ Started DELETE "/rollout/features/extra_sharp_knives/groups/experienced_chefs" for 127.0.0.1 at 2014-11-11 17:27:19 -0800
1086
+ Processing by RolloutControl::GroupsController#destroy as HTML
1087
+ Parameters: {"feature_id"=>"extra_sharp_knives", "id"=>"experienced_chefs"}
1088
+ Completed 204 No Content in 0ms
1089
+ -------------------------------------------------
1090
+ RolloutControlTest: test_remove_user_from_feature
1091
+ -------------------------------------------------
1092
+ Started DELETE "/rollout/features/potato_gun/users/45" for 127.0.0.1 at 2014-11-11 17:27:19 -0800
1093
+ Processing by RolloutControl::UsersController#destroy as HTML
1094
+ Parameters: {"feature_id"=>"potato_gun", "id"=>"45"}
1095
+ Completed 204 No Content in 0ms
1096
+ -------------------------------------
1097
+ RolloutControlTest: test_show_feature
1098
+ -------------------------------------
1099
+ Started GET "/rollout/features/kittens" for 127.0.0.1 at 2014-11-11 17:27:19 -0800
1100
+ Processing by RolloutControl::FeaturesController#show as HTML
1101
+ Parameters: {"id"=>"kittens"}
1102
+ Completed 200 OK in 0ms (Views: 0.1ms)
1103
+ Started GET "/rollout/features/kittens" for 127.0.0.1 at 2014-11-11 17:27:19 -0800
1104
+ Processing by RolloutControl::FeaturesController#show as HTML
1105
+ Parameters: {"id"=>"kittens"}
1106
+ Completed 200 OK in 0ms (Views: 0.1ms)
1107
+ Started GET "/rollout/features/kittens" for 127.0.0.1 at 2014-11-11 17:27:19 -0800
1108
+ Processing by RolloutControl::FeaturesController#show as HTML
1109
+ Parameters: {"id"=>"kittens"}
1110
+ Completed 200 OK in 0ms (Views: 0.1ms)
1111
+ --------------------------------------------------
1112
+ RolloutControlTest: test_update_feature_percentage
1113
+ --------------------------------------------------
1114
+ Started PATCH "/rollout/features/kittens" for 127.0.0.1 at 2014-11-11 17:27:19 -0800
1115
+ Processing by RolloutControl::FeaturesController#update as HTML
1116
+ Parameters: {"percentage"=>"65", "id"=>"kittens"}
1117
+ Completed 204 No Content in 0ms
1118
+ ------------------------------------------------
1119
+ RolloutControl::FeaturesControllerTest: test_wat
1120
+ ------------------------------------------------
1121
+ ---------------------------------------------
1122
+ RolloutControlTest: test_add_group_to_feature
1123
+ ---------------------------------------------
1124
+ Started POST "/rollout/features/extra_sharp_knives/groups" for 127.0.0.1 at 2014-11-11 17:27:31 -0800
1125
+ --------------------------------------------
1126
+ RolloutControlTest: test_add_user_to_feature
1127
+ --------------------------------------------
1128
+ Started POST "/rollout/features/potato_gun/users" for 127.0.0.1 at 2014-11-11 17:27:31 -0800
1129
+ ------------------------------------------------------------------------------
1130
+ RolloutControlTest: test_attempt_to_activate_user_to_feature_without_a_user_id
1131
+ ------------------------------------------------------------------------------
1132
+ Started POST "/rollout/features/potato_gun/users" for 127.0.0.1 at 2014-11-11 17:27:31 -0800
1133
+ -----------------------------------------------------------------------------
1134
+ RolloutControlTest: test_attempt_to_add_group_to_feature_without_a_group_name
1135
+ -----------------------------------------------------------------------------
1136
+ Started POST "/rollout/features/extra_sharp_knives/groups" for 127.0.0.1 at 2014-11-11 17:27:31 -0800
1137
+ --------------------------------------------
1138
+ RolloutControlTest: test_list_empty_features
1139
+ --------------------------------------------
1140
+ Started GET "/rollout/features" for 127.0.0.1 at 2014-11-11 17:27:31 -0800
1141
+ -----------------------------------------------
1142
+ RolloutControlTest: test_list_existing_features
1143
+ -----------------------------------------------
1144
+ Started GET "/rollout/features" for 127.0.0.1 at 2014-11-11 17:27:31 -0800
1145
+ --------------------------------------------------
1146
+ RolloutControlTest: test_remove_group_from_feature
1147
+ --------------------------------------------------
1148
+ Started DELETE "/rollout/features/extra_sharp_knives/groups/experienced_chefs" for 127.0.0.1 at 2014-11-11 17:27:31 -0800
1149
+ -------------------------------------------------
1150
+ RolloutControlTest: test_remove_user_from_feature
1151
+ -------------------------------------------------
1152
+ Started DELETE "/rollout/features/potato_gun/users/45" for 127.0.0.1 at 2014-11-11 17:27:31 -0800
1153
+ -------------------------------------
1154
+ RolloutControlTest: test_show_feature
1155
+ -------------------------------------
1156
+ Started GET "/rollout/features/kittens" for 127.0.0.1 at 2014-11-11 17:27:31 -0800
1157
+ --------------------------------------------------
1158
+ RolloutControlTest: test_update_feature_percentage
1159
+ --------------------------------------------------
1160
+ Started PATCH "/rollout/features/kittens" for 127.0.0.1 at 2014-11-11 17:27:31 -0800
1161
+ ------------------------------------------------
1162
+ RolloutControl::FeaturesControllerTest: test_wat
1163
+ ------------------------------------------------
1164
+ ---------------------------------------------
1165
+ RolloutControlTest: test_add_group_to_feature
1166
+ ---------------------------------------------
1167
+ Started POST "/rollout/features/extra_sharp_knives/groups" for 127.0.0.1 at 2014-11-11 17:28:45 -0800
1168
+ --------------------------------------------
1169
+ RolloutControlTest: test_add_user_to_feature
1170
+ --------------------------------------------
1171
+ Started POST "/rollout/features/potato_gun/users" for 127.0.0.1 at 2014-11-11 17:28:45 -0800
1172
+ ------------------------------------------------------------------------------
1173
+ RolloutControlTest: test_attempt_to_activate_user_to_feature_without_a_user_id
1174
+ ------------------------------------------------------------------------------
1175
+ Started POST "/rollout/features/potato_gun/users" for 127.0.0.1 at 2014-11-11 17:28:45 -0800
1176
+ -----------------------------------------------------------------------------
1177
+ RolloutControlTest: test_attempt_to_add_group_to_feature_without_a_group_name
1178
+ -----------------------------------------------------------------------------
1179
+ Started POST "/rollout/features/extra_sharp_knives/groups" for 127.0.0.1 at 2014-11-11 17:28:45 -0800
1180
+ --------------------------------------------
1181
+ RolloutControlTest: test_list_empty_features
1182
+ --------------------------------------------
1183
+ Started GET "/rollout/features" for 127.0.0.1 at 2014-11-11 17:28:45 -0800
1184
+ -----------------------------------------------
1185
+ RolloutControlTest: test_list_existing_features
1186
+ -----------------------------------------------
1187
+ Started GET "/rollout/features" for 127.0.0.1 at 2014-11-11 17:28:45 -0800
1188
+ --------------------------------------------------
1189
+ RolloutControlTest: test_remove_group_from_feature
1190
+ --------------------------------------------------
1191
+ Started DELETE "/rollout/features/extra_sharp_knives/groups/experienced_chefs" for 127.0.0.1 at 2014-11-11 17:28:45 -0800
1192
+ -------------------------------------------------
1193
+ RolloutControlTest: test_remove_user_from_feature
1194
+ -------------------------------------------------
1195
+ Started DELETE "/rollout/features/potato_gun/users/45" for 127.0.0.1 at 2014-11-11 17:28:45 -0800
1196
+ -------------------------------------
1197
+ RolloutControlTest: test_show_feature
1198
+ -------------------------------------
1199
+ Started GET "/rollout/features/kittens" for 127.0.0.1 at 2014-11-11 17:28:45 -0800
1200
+ --------------------------------------------------
1201
+ RolloutControlTest: test_update_feature_percentage
1202
+ --------------------------------------------------
1203
+ Started PATCH "/rollout/features/kittens" for 127.0.0.1 at 2014-11-11 17:28:45 -0800
1204
+ ------------------------------------------------
1205
+ RolloutControl::FeaturesControllerTest: test_wat
1206
+ ------------------------------------------------
1207
+ ---------------------------------------------
1208
+ RolloutControlTest: test_add_group_to_feature
1209
+ ---------------------------------------------
1210
+ Started POST "/rollout/features/extra_sharp_knives/groups" for 127.0.0.1 at 2014-11-11 17:30:20 -0800
1211
+ Processing by RolloutControl::GroupsController#create as HTML
1212
+ Parameters: {"group"=>"experienced_chefs", "feature_id"=>"extra_sharp_knives"}
1213
+ Completed 204 No Content in 0ms
1214
+ --------------------------------------------
1215
+ RolloutControlTest: test_add_user_to_feature
1216
+ --------------------------------------------
1217
+ Started POST "/rollout/features/potato_gun/users" for 127.0.0.1 at 2014-11-11 17:30:20 -0800
1218
+ Processing by RolloutControl::UsersController#create as HTML
1219
+ Parameters: {"user_id"=>"45", "feature_id"=>"potato_gun"}
1220
+ Completed 204 No Content in 0ms
1221
+ ------------------------------------------------------------------------------
1222
+ RolloutControlTest: test_attempt_to_activate_user_to_feature_without_a_user_id
1223
+ ------------------------------------------------------------------------------
1224
+ Started POST "/rollout/features/potato_gun/users" for 127.0.0.1 at 2014-11-11 17:30:20 -0800
1225
+ Processing by RolloutControl::UsersController#create as HTML
1226
+ Parameters: {"feature_id"=>"potato_gun"}
1227
+ Completed 400 Bad Request in 0ms
1228
+ -----------------------------------------------------------------------------
1229
+ RolloutControlTest: test_attempt_to_add_group_to_feature_without_a_group_name
1230
+ -----------------------------------------------------------------------------
1231
+ Started POST "/rollout/features/extra_sharp_knives/groups" for 127.0.0.1 at 2014-11-11 17:30:20 -0800
1232
+ Processing by RolloutControl::GroupsController#create as HTML
1233
+ Parameters: {"feature_id"=>"extra_sharp_knives"}
1234
+ Completed 400 Bad Request in 0ms
1235
+ --------------------------------------------
1236
+ RolloutControlTest: test_list_empty_features
1237
+ --------------------------------------------
1238
+ Started GET "/rollout/features" for 127.0.0.1 at 2014-11-11 17:30:20 -0800
1239
+ Processing by RolloutControl::FeaturesController#index as HTML
1240
+ Completed 200 OK in 0ms (Views: 0.1ms)
1241
+ -----------------------------------------------
1242
+ RolloutControlTest: test_list_existing_features
1243
+ -----------------------------------------------
1244
+ Started GET "/rollout/features" for 127.0.0.1 at 2014-11-11 17:30:20 -0800
1245
+ Processing by RolloutControl::FeaturesController#index as HTML
1246
+ Completed 200 OK in 0ms (Views: 0.0ms)
1247
+ Started GET "/rollout/features" for 127.0.0.1 at 2014-11-11 17:30:20 -0800
1248
+ Processing by RolloutControl::FeaturesController#index as HTML
1249
+ Completed 200 OK in 0ms (Views: 0.1ms)
1250
+ --------------------------------------------------
1251
+ RolloutControlTest: test_remove_group_from_feature
1252
+ --------------------------------------------------
1253
+ Started DELETE "/rollout/features/extra_sharp_knives/groups/experienced_chefs" for 127.0.0.1 at 2014-11-11 17:30:20 -0800
1254
+ Processing by RolloutControl::GroupsController#destroy as HTML
1255
+ Parameters: {"feature_id"=>"extra_sharp_knives", "id"=>"experienced_chefs"}
1256
+ Completed 204 No Content in 0ms
1257
+ -------------------------------------------------
1258
+ RolloutControlTest: test_remove_user_from_feature
1259
+ -------------------------------------------------
1260
+ Started DELETE "/rollout/features/potato_gun/users/45" for 127.0.0.1 at 2014-11-11 17:30:20 -0800
1261
+ Processing by RolloutControl::UsersController#destroy as HTML
1262
+ Parameters: {"feature_id"=>"potato_gun", "id"=>"45"}
1263
+ Completed 204 No Content in 0ms
1264
+ -------------------------------------
1265
+ RolloutControlTest: test_show_feature
1266
+ -------------------------------------
1267
+ Started GET "/rollout/features/kittens" for 127.0.0.1 at 2014-11-11 17:30:20 -0800
1268
+ Processing by RolloutControl::FeaturesController#show as HTML
1269
+ Parameters: {"id"=>"kittens"}
1270
+ Completed 200 OK in 0ms (Views: 0.1ms)
1271
+ Started GET "/rollout/features/kittens" for 127.0.0.1 at 2014-11-11 17:30:20 -0800
1272
+ Processing by RolloutControl::FeaturesController#show as HTML
1273
+ Parameters: {"id"=>"kittens"}
1274
+ Completed 200 OK in 0ms (Views: 0.1ms)
1275
+ Started GET "/rollout/features/kittens" for 127.0.0.1 at 2014-11-11 17:30:20 -0800
1276
+ Processing by RolloutControl::FeaturesController#show as HTML
1277
+ Parameters: {"id"=>"kittens"}
1278
+ Completed 200 OK in 0ms (Views: 0.1ms)
1279
+ --------------------------------------------------
1280
+ RolloutControlTest: test_update_feature_percentage
1281
+ --------------------------------------------------
1282
+ Started PATCH "/rollout/features/kittens" for 127.0.0.1 at 2014-11-11 17:30:20 -0800
1283
+ Processing by RolloutControl::FeaturesController#update as HTML
1284
+ Parameters: {"percentage"=>"65", "id"=>"kittens"}
1285
+ Completed 204 No Content in 0ms
1286
+ ------------------------------------------------
1287
+ RolloutControl::FeaturesControllerTest: test_wat
1288
+ ------------------------------------------------
1289
+ ---------------------------------------------
1290
+ RolloutControlTest: test_add_group_to_feature
1291
+ ---------------------------------------------
1292
+ Started POST "/rollout/features/extra_sharp_knives/groups" for 127.0.0.1 at 2014-11-11 17:30:25 -0800
1293
+ Processing by RolloutControl::GroupsController#create as HTML
1294
+ Parameters: {"group"=>"experienced_chefs", "feature_id"=>"extra_sharp_knives"}
1295
+ Completed 204 No Content in 0ms
1296
+ --------------------------------------------
1297
+ RolloutControlTest: test_add_user_to_feature
1298
+ --------------------------------------------
1299
+ Started POST "/rollout/features/potato_gun/users" for 127.0.0.1 at 2014-11-11 17:30:25 -0800
1300
+ Processing by RolloutControl::UsersController#create as HTML
1301
+ Parameters: {"user_id"=>"45", "feature_id"=>"potato_gun"}
1302
+ Completed 204 No Content in 0ms
1303
+ ------------------------------------------------------------------------------
1304
+ RolloutControlTest: test_attempt_to_activate_user_to_feature_without_a_user_id
1305
+ ------------------------------------------------------------------------------
1306
+ Started POST "/rollout/features/potato_gun/users" for 127.0.0.1 at 2014-11-11 17:30:25 -0800
1307
+ Processing by RolloutControl::UsersController#create as HTML
1308
+ Parameters: {"feature_id"=>"potato_gun"}
1309
+ Completed 400 Bad Request in 0ms
1310
+ -----------------------------------------------------------------------------
1311
+ RolloutControlTest: test_attempt_to_add_group_to_feature_without_a_group_name
1312
+ -----------------------------------------------------------------------------
1313
+ Started POST "/rollout/features/extra_sharp_knives/groups" for 127.0.0.1 at 2014-11-11 17:30:25 -0800
1314
+ Processing by RolloutControl::GroupsController#create as HTML
1315
+ Parameters: {"feature_id"=>"extra_sharp_knives"}
1316
+ Completed 400 Bad Request in 0ms
1317
+ --------------------------------------------
1318
+ RolloutControlTest: test_list_empty_features
1319
+ --------------------------------------------
1320
+ Started GET "/rollout/features" for 127.0.0.1 at 2014-11-11 17:30:25 -0800
1321
+ Processing by RolloutControl::FeaturesController#index as HTML
1322
+ Completed 200 OK in 0ms (Views: 0.1ms)
1323
+ -----------------------------------------------
1324
+ RolloutControlTest: test_list_existing_features
1325
+ -----------------------------------------------
1326
+ Started GET "/rollout/features" for 127.0.0.1 at 2014-11-11 17:30:26 -0800
1327
+ Processing by RolloutControl::FeaturesController#index as HTML
1328
+ Completed 200 OK in 0ms (Views: 0.0ms)
1329
+ Started GET "/rollout/features" for 127.0.0.1 at 2014-11-11 17:30:26 -0800
1330
+ Processing by RolloutControl::FeaturesController#index as HTML
1331
+ Completed 200 OK in 0ms (Views: 0.0ms)
1332
+ --------------------------------------------------
1333
+ RolloutControlTest: test_remove_group_from_feature
1334
+ --------------------------------------------------
1335
+ Started DELETE "/rollout/features/extra_sharp_knives/groups/experienced_chefs" for 127.0.0.1 at 2014-11-11 17:30:26 -0800
1336
+ Processing by RolloutControl::GroupsController#destroy as HTML
1337
+ Parameters: {"feature_id"=>"extra_sharp_knives", "id"=>"experienced_chefs"}
1338
+ Completed 204 No Content in 0ms
1339
+ -------------------------------------------------
1340
+ RolloutControlTest: test_remove_user_from_feature
1341
+ -------------------------------------------------
1342
+ Started DELETE "/rollout/features/potato_gun/users/45" for 127.0.0.1 at 2014-11-11 17:30:26 -0800
1343
+ Processing by RolloutControl::UsersController#destroy as HTML
1344
+ Parameters: {"feature_id"=>"potato_gun", "id"=>"45"}
1345
+ Completed 204 No Content in 0ms
1346
+ -------------------------------------
1347
+ RolloutControlTest: test_show_feature
1348
+ -------------------------------------
1349
+ Started GET "/rollout/features/kittens" for 127.0.0.1 at 2014-11-11 17:30:26 -0800
1350
+ Processing by RolloutControl::FeaturesController#show as HTML
1351
+ Parameters: {"id"=>"kittens"}
1352
+ Completed 200 OK in 0ms (Views: 0.1ms)
1353
+ Started GET "/rollout/features/kittens" for 127.0.0.1 at 2014-11-11 17:30:26 -0800
1354
+ Processing by RolloutControl::FeaturesController#show as HTML
1355
+ Parameters: {"id"=>"kittens"}
1356
+ Completed 200 OK in 0ms (Views: 0.1ms)
1357
+ Started GET "/rollout/features/kittens" for 127.0.0.1 at 2014-11-11 17:30:26 -0800
1358
+ Processing by RolloutControl::FeaturesController#show as HTML
1359
+ Parameters: {"id"=>"kittens"}
1360
+ Completed 200 OK in 0ms (Views: 0.1ms)
1361
+ --------------------------------------------------
1362
+ RolloutControlTest: test_update_feature_percentage
1363
+ --------------------------------------------------
1364
+ Started PATCH "/rollout/features/kittens" for 127.0.0.1 at 2014-11-11 17:30:26 -0800
1365
+ Processing by RolloutControl::FeaturesController#update as HTML
1366
+ Parameters: {"percentage"=>"65", "id"=>"kittens"}
1367
+ Completed 204 No Content in 0ms
1368
+ ------------------------------------------------
1369
+ RolloutControl::FeaturesControllerTest: test_wat
1370
+ ------------------------------------------------
1371
+ ---------------------------------------------
1372
+ RolloutControlTest: test_add_group_to_feature
1373
+ ---------------------------------------------
1374
+ Started POST "/rollout/features/extra_sharp_knives/groups" for 127.0.0.1 at 2014-11-11 17:49:43 -0800
1375
+ --------------------------------------------
1376
+ RolloutControlTest: test_add_user_to_feature
1377
+ --------------------------------------------
1378
+ Started POST "/rollout/features/potato_gun/users" for 127.0.0.1 at 2014-11-11 17:49:43 -0800
1379
+ ------------------------------------------------------------------------------
1380
+ RolloutControlTest: test_attempt_to_activate_user_to_feature_without_a_user_id
1381
+ ------------------------------------------------------------------------------
1382
+ Started POST "/rollout/features/potato_gun/users" for 127.0.0.1 at 2014-11-11 17:49:43 -0800
1383
+ -----------------------------------------------------------------------------
1384
+ RolloutControlTest: test_attempt_to_add_group_to_feature_without_a_group_name
1385
+ -----------------------------------------------------------------------------
1386
+ Started POST "/rollout/features/extra_sharp_knives/groups" for 127.0.0.1 at 2014-11-11 17:49:43 -0800
1387
+ --------------------------------------------
1388
+ RolloutControlTest: test_list_empty_features
1389
+ --------------------------------------------
1390
+ Started GET "/rollout/features" for 127.0.0.1 at 2014-11-11 17:49:43 -0800
1391
+ -----------------------------------------------
1392
+ RolloutControlTest: test_list_existing_features
1393
+ -----------------------------------------------
1394
+ Started GET "/rollout/features" for 127.0.0.1 at 2014-11-11 17:49:43 -0800
1395
+ --------------------------------------------------
1396
+ RolloutControlTest: test_remove_group_from_feature
1397
+ --------------------------------------------------
1398
+ Started DELETE "/rollout/features/extra_sharp_knives/groups/experienced_chefs" for 127.0.0.1 at 2014-11-11 17:49:43 -0800
1399
+ -------------------------------------------------
1400
+ RolloutControlTest: test_remove_user_from_feature
1401
+ -------------------------------------------------
1402
+ Started DELETE "/rollout/features/potato_gun/users/45" for 127.0.0.1 at 2014-11-11 17:49:43 -0800
1403
+ -------------------------------------
1404
+ RolloutControlTest: test_show_feature
1405
+ -------------------------------------
1406
+ Started GET "/rollout/features/kittens" for 127.0.0.1 at 2014-11-11 17:49:43 -0800
1407
+ --------------------------------------------------
1408
+ RolloutControlTest: test_update_feature_percentage
1409
+ --------------------------------------------------
1410
+ Started PATCH "/rollout/features/kittens" for 127.0.0.1 at 2014-11-11 17:49:43 -0800
1411
+ ------------------------------------------------
1412
+ RolloutControl::FeaturesControllerTest: test_wat
1413
+ ------------------------------------------------
1414
+ ---------------------------------------------
1415
+ RolloutControlTest: test_add_group_to_feature
1416
+ ---------------------------------------------
1417
+ Started POST "/rollout/features/extra_sharp_knives/groups" for 127.0.0.1 at 2014-11-11 17:49:49 -0800
1418
+ Processing by RolloutControl::GroupsController#create as HTML
1419
+ Parameters: {"group"=>"experienced_chefs", "feature_id"=>"extra_sharp_knives"}
1420
+ Completed 204 No Content in 0ms
1421
+ --------------------------------------------
1422
+ RolloutControlTest: test_add_user_to_feature
1423
+ --------------------------------------------
1424
+ Started POST "/rollout/features/potato_gun/users" for 127.0.0.1 at 2014-11-11 17:49:50 -0800
1425
+ Processing by RolloutControl::UsersController#create as HTML
1426
+ Parameters: {"user_id"=>"45", "feature_id"=>"potato_gun"}
1427
+ Completed 204 No Content in 0ms
1428
+ ------------------------------------------------------------------------------
1429
+ RolloutControlTest: test_attempt_to_activate_user_to_feature_without_a_user_id
1430
+ ------------------------------------------------------------------------------
1431
+ Started POST "/rollout/features/potato_gun/users" for 127.0.0.1 at 2014-11-11 17:49:50 -0800
1432
+ Processing by RolloutControl::UsersController#create as HTML
1433
+ Parameters: {"feature_id"=>"potato_gun"}
1434
+ Completed 400 Bad Request in 0ms
1435
+ -----------------------------------------------------------------------------
1436
+ RolloutControlTest: test_attempt_to_add_group_to_feature_without_a_group_name
1437
+ -----------------------------------------------------------------------------
1438
+ Started POST "/rollout/features/extra_sharp_knives/groups" for 127.0.0.1 at 2014-11-11 17:49:50 -0800
1439
+ Processing by RolloutControl::GroupsController#create as HTML
1440
+ Parameters: {"feature_id"=>"extra_sharp_knives"}
1441
+ Completed 400 Bad Request in 0ms
1442
+ --------------------------------------------
1443
+ RolloutControlTest: test_list_empty_features
1444
+ --------------------------------------------
1445
+ Started GET "/rollout/features" for 127.0.0.1 at 2014-11-11 17:49:50 -0800
1446
+ Processing by RolloutControl::FeaturesController#index as HTML
1447
+ Completed 200 OK in 0ms (Views: 0.1ms)
1448
+ -----------------------------------------------
1449
+ RolloutControlTest: test_list_existing_features
1450
+ -----------------------------------------------
1451
+ Started GET "/rollout/features" for 127.0.0.1 at 2014-11-11 17:49:50 -0800
1452
+ Processing by RolloutControl::FeaturesController#index as HTML
1453
+ Completed 200 OK in 0ms (Views: 0.0ms)
1454
+ Started GET "/rollout/features" for 127.0.0.1 at 2014-11-11 17:49:50 -0800
1455
+ Processing by RolloutControl::FeaturesController#index as HTML
1456
+ Completed 200 OK in 0ms (Views: 0.0ms)
1457
+ --------------------------------------------------
1458
+ RolloutControlTest: test_remove_group_from_feature
1459
+ --------------------------------------------------
1460
+ Started DELETE "/rollout/features/extra_sharp_knives/groups/experienced_chefs" for 127.0.0.1 at 2014-11-11 17:49:50 -0800
1461
+ Processing by RolloutControl::GroupsController#destroy as HTML
1462
+ Parameters: {"feature_id"=>"extra_sharp_knives", "id"=>"experienced_chefs"}
1463
+ Completed 204 No Content in 0ms
1464
+ -------------------------------------------------
1465
+ RolloutControlTest: test_remove_user_from_feature
1466
+ -------------------------------------------------
1467
+ Started DELETE "/rollout/features/potato_gun/users/45" for 127.0.0.1 at 2014-11-11 17:49:50 -0800
1468
+ Processing by RolloutControl::UsersController#destroy as HTML
1469
+ Parameters: {"feature_id"=>"potato_gun", "id"=>"45"}
1470
+ Completed 204 No Content in 0ms
1471
+ -------------------------------------
1472
+ RolloutControlTest: test_show_feature
1473
+ -------------------------------------
1474
+ Started GET "/rollout/features/kittens" for 127.0.0.1 at 2014-11-11 17:49:50 -0800
1475
+ Processing by RolloutControl::FeaturesController#show as HTML
1476
+ Parameters: {"id"=>"kittens"}
1477
+ Completed 200 OK in 0ms (Views: 0.1ms)
1478
+ Started GET "/rollout/features/kittens" for 127.0.0.1 at 2014-11-11 17:49:50 -0800
1479
+ Processing by RolloutControl::FeaturesController#show as HTML
1480
+ Parameters: {"id"=>"kittens"}
1481
+ Completed 200 OK in 0ms (Views: 0.1ms)
1482
+ Started GET "/rollout/features/kittens" for 127.0.0.1 at 2014-11-11 17:49:50 -0800
1483
+ Processing by RolloutControl::FeaturesController#show as HTML
1484
+ Parameters: {"id"=>"kittens"}
1485
+ Completed 200 OK in 0ms (Views: 0.1ms)
1486
+ --------------------------------------------------
1487
+ RolloutControlTest: test_update_feature_percentage
1488
+ --------------------------------------------------
1489
+ Started PATCH "/rollout/features/kittens" for 127.0.0.1 at 2014-11-11 17:49:50 -0800
1490
+ Processing by RolloutControl::FeaturesController#update as HTML
1491
+ Parameters: {"percentage"=>"65", "id"=>"kittens"}
1492
+ Completed 204 No Content in 0ms
1493
+ ------------------------------------------------
1494
+ RolloutControl::FeaturesControllerTest: test_wat
1495
+ ------------------------------------------------
1496
+ ---------------------------------------------
1497
+ RolloutControlTest: test_add_group_to_feature
1498
+ ---------------------------------------------
1499
+ Started POST "/rollout/features/extra_sharp_knives/groups" for 127.0.0.1 at 2014-11-11 17:51:53 -0800
1500
+ --------------------------------------------
1501
+ RolloutControlTest: test_add_user_to_feature
1502
+ --------------------------------------------
1503
+ Started POST "/rollout/features/potato_gun/users" for 127.0.0.1 at 2014-11-11 17:51:53 -0800
1504
+ ------------------------------------------------------------------------------
1505
+ RolloutControlTest: test_attempt_to_activate_user_to_feature_without_a_user_id
1506
+ ------------------------------------------------------------------------------
1507
+ Started POST "/rollout/features/potato_gun/users" for 127.0.0.1 at 2014-11-11 17:51:53 -0800
1508
+ -----------------------------------------------------------------------------
1509
+ RolloutControlTest: test_attempt_to_add_group_to_feature_without_a_group_name
1510
+ -----------------------------------------------------------------------------
1511
+ Started POST "/rollout/features/extra_sharp_knives/groups" for 127.0.0.1 at 2014-11-11 17:51:53 -0800
1512
+ --------------------------------------------
1513
+ RolloutControlTest: test_list_empty_features
1514
+ --------------------------------------------
1515
+ Started GET "/rollout/features" for 127.0.0.1 at 2014-11-11 17:51:53 -0800
1516
+ -----------------------------------------------
1517
+ RolloutControlTest: test_list_existing_features
1518
+ -----------------------------------------------
1519
+ Started GET "/rollout/features" for 127.0.0.1 at 2014-11-11 17:51:53 -0800
1520
+ --------------------------------------------------
1521
+ RolloutControlTest: test_remove_group_from_feature
1522
+ --------------------------------------------------
1523
+ Started DELETE "/rollout/features/extra_sharp_knives/groups/experienced_chefs" for 127.0.0.1 at 2014-11-11 17:51:53 -0800
1524
+ -------------------------------------------------
1525
+ RolloutControlTest: test_remove_user_from_feature
1526
+ -------------------------------------------------
1527
+ Started DELETE "/rollout/features/potato_gun/users/45" for 127.0.0.1 at 2014-11-11 17:51:53 -0800
1528
+ -------------------------------------
1529
+ RolloutControlTest: test_show_feature
1530
+ -------------------------------------
1531
+ Started GET "/rollout/features/kittens" for 127.0.0.1 at 2014-11-11 17:51:53 -0800
1532
+ --------------------------------------------------
1533
+ RolloutControlTest: test_update_feature_percentage
1534
+ --------------------------------------------------
1535
+ Started PATCH "/rollout/features/kittens" for 127.0.0.1 at 2014-11-11 17:51:53 -0800
1536
+ ---------------------------------------------
1537
+ RolloutControlTest: test_add_group_to_feature
1538
+ ---------------------------------------------
1539
+ Started POST "/rollout/features/extra_sharp_knives/groups" for 127.0.0.1 at 2014-11-11 17:52:08 -0800
1540
+ --------------------------------------------
1541
+ RolloutControlTest: test_add_user_to_feature
1542
+ --------------------------------------------
1543
+ Started POST "/rollout/features/potato_gun/users" for 127.0.0.1 at 2014-11-11 17:52:08 -0800
1544
+ ------------------------------------------------------------------------------
1545
+ RolloutControlTest: test_attempt_to_activate_user_to_feature_without_a_user_id
1546
+ ------------------------------------------------------------------------------
1547
+ Started POST "/rollout/features/potato_gun/users" for 127.0.0.1 at 2014-11-11 17:52:08 -0800
1548
+ -----------------------------------------------------------------------------
1549
+ RolloutControlTest: test_attempt_to_add_group_to_feature_without_a_group_name
1550
+ -----------------------------------------------------------------------------
1551
+ Started POST "/rollout/features/extra_sharp_knives/groups" for 127.0.0.1 at 2014-11-11 17:52:08 -0800
1552
+ --------------------------------------------
1553
+ RolloutControlTest: test_list_empty_features
1554
+ --------------------------------------------
1555
+ Started GET "/rollout/features" for 127.0.0.1 at 2014-11-11 17:52:08 -0800
1556
+ -----------------------------------------------
1557
+ RolloutControlTest: test_list_existing_features
1558
+ -----------------------------------------------
1559
+ Started GET "/rollout/features" for 127.0.0.1 at 2014-11-11 17:52:08 -0800
1560
+ --------------------------------------------------
1561
+ RolloutControlTest: test_remove_group_from_feature
1562
+ --------------------------------------------------
1563
+ Started DELETE "/rollout/features/extra_sharp_knives/groups/experienced_chefs" for 127.0.0.1 at 2014-11-11 17:52:08 -0800
1564
+ -------------------------------------------------
1565
+ RolloutControlTest: test_remove_user_from_feature
1566
+ -------------------------------------------------
1567
+ Started DELETE "/rollout/features/potato_gun/users/45" for 127.0.0.1 at 2014-11-11 17:52:08 -0800
1568
+ -------------------------------------
1569
+ RolloutControlTest: test_show_feature
1570
+ -------------------------------------
1571
+ Started GET "/rollout/features/kittens" for 127.0.0.1 at 2014-11-11 17:52:08 -0800
1572
+ --------------------------------------------------
1573
+ RolloutControlTest: test_update_feature_percentage
1574
+ --------------------------------------------------
1575
+ Started PATCH "/rollout/features/kittens" for 127.0.0.1 at 2014-11-11 17:52:08 -0800
1576
+ ------------------------------------------------
1577
+ RolloutControl::FeaturesControllerTest: test_wat
1578
+ ------------------------------------------------
1579
+ ---------------------------------------------
1580
+ RolloutControlTest: test_add_group_to_feature
1581
+ ---------------------------------------------
1582
+ Started POST "/rollout/features/extra_sharp_knives/groups" for 127.0.0.1 at 2014-11-11 17:52:23 -0800
1583
+ Processing by RolloutControl::GroupsController#create as HTML
1584
+ Parameters: {"group"=>"experienced_chefs", "feature_id"=>"extra_sharp_knives"}
1585
+ Completed 204 No Content in 0ms
1586
+ --------------------------------------------
1587
+ RolloutControlTest: test_add_user_to_feature
1588
+ --------------------------------------------
1589
+ Started POST "/rollout/features/potato_gun/users" for 127.0.0.1 at 2014-11-11 17:52:23 -0800
1590
+ Processing by RolloutControl::UsersController#create as HTML
1591
+ Parameters: {"user_id"=>"45", "feature_id"=>"potato_gun"}
1592
+ Completed 204 No Content in 0ms
1593
+ ------------------------------------------------------------------------------
1594
+ RolloutControlTest: test_attempt_to_activate_user_to_feature_without_a_user_id
1595
+ ------------------------------------------------------------------------------
1596
+ Started POST "/rollout/features/potato_gun/users" for 127.0.0.1 at 2014-11-11 17:52:23 -0800
1597
+ Processing by RolloutControl::UsersController#create as HTML
1598
+ Parameters: {"feature_id"=>"potato_gun"}
1599
+ Completed 400 Bad Request in 0ms
1600
+ -----------------------------------------------------------------------------
1601
+ RolloutControlTest: test_attempt_to_add_group_to_feature_without_a_group_name
1602
+ -----------------------------------------------------------------------------
1603
+ Started POST "/rollout/features/extra_sharp_knives/groups" for 127.0.0.1 at 2014-11-11 17:52:23 -0800
1604
+ Processing by RolloutControl::GroupsController#create as HTML
1605
+ Parameters: {"feature_id"=>"extra_sharp_knives"}
1606
+ Completed 400 Bad Request in 0ms
1607
+ --------------------------------------------
1608
+ RolloutControlTest: test_list_empty_features
1609
+ --------------------------------------------
1610
+ Started GET "/rollout/features" for 127.0.0.1 at 2014-11-11 17:52:23 -0800
1611
+ Processing by RolloutControl::FeaturesController#index as HTML
1612
+ Completed 200 OK in 0ms (Views: 0.1ms)
1613
+ -----------------------------------------------
1614
+ RolloutControlTest: test_list_existing_features
1615
+ -----------------------------------------------
1616
+ Started GET "/rollout/features" for 127.0.0.1 at 2014-11-11 17:52:23 -0800
1617
+ Processing by RolloutControl::FeaturesController#index as HTML
1618
+ Completed 200 OK in 0ms (Views: 0.0ms)
1619
+ Started GET "/rollout/features" for 127.0.0.1 at 2014-11-11 17:52:23 -0800
1620
+ Processing by RolloutControl::FeaturesController#index as HTML
1621
+ Completed 200 OK in 0ms (Views: 0.0ms)
1622
+ --------------------------------------------------
1623
+ RolloutControlTest: test_remove_group_from_feature
1624
+ --------------------------------------------------
1625
+ Started DELETE "/rollout/features/extra_sharp_knives/groups/experienced_chefs" for 127.0.0.1 at 2014-11-11 17:52:23 -0800
1626
+ Processing by RolloutControl::GroupsController#destroy as HTML
1627
+ Parameters: {"feature_id"=>"extra_sharp_knives", "id"=>"experienced_chefs"}
1628
+ Completed 204 No Content in 0ms
1629
+ -------------------------------------------------
1630
+ RolloutControlTest: test_remove_user_from_feature
1631
+ -------------------------------------------------
1632
+ Started DELETE "/rollout/features/potato_gun/users/45" for 127.0.0.1 at 2014-11-11 17:52:23 -0800
1633
+ Processing by RolloutControl::UsersController#destroy as HTML
1634
+ Parameters: {"feature_id"=>"potato_gun", "id"=>"45"}
1635
+ Completed 204 No Content in 0ms
1636
+ -------------------------------------
1637
+ RolloutControlTest: test_show_feature
1638
+ -------------------------------------
1639
+ Started GET "/rollout/features/kittens" for 127.0.0.1 at 2014-11-11 17:52:23 -0800
1640
+ Processing by RolloutControl::FeaturesController#show as HTML
1641
+ Parameters: {"id"=>"kittens"}
1642
+ Completed 200 OK in 0ms (Views: 0.1ms)
1643
+ Started GET "/rollout/features/kittens" for 127.0.0.1 at 2014-11-11 17:52:23 -0800
1644
+ Processing by RolloutControl::FeaturesController#show as HTML
1645
+ Parameters: {"id"=>"kittens"}
1646
+ Completed 200 OK in 0ms (Views: 0.1ms)
1647
+ Started GET "/rollout/features/kittens" for 127.0.0.1 at 2014-11-11 17:52:23 -0800
1648
+ Processing by RolloutControl::FeaturesController#show as HTML
1649
+ Parameters: {"id"=>"kittens"}
1650
+ Completed 200 OK in 0ms (Views: 0.1ms)
1651
+ --------------------------------------------------
1652
+ RolloutControlTest: test_update_feature_percentage
1653
+ --------------------------------------------------
1654
+ Started PATCH "/rollout/features/kittens" for 127.0.0.1 at 2014-11-11 17:52:23 -0800
1655
+ Processing by RolloutControl::FeaturesController#update as HTML
1656
+ Parameters: {"percentage"=>"65", "id"=>"kittens"}
1657
+ Completed 204 No Content in 0ms
1658
+ ------------------------------------------------
1659
+ RolloutControl::FeaturesControllerTest: test_wat
1660
+ ------------------------------------------------
1661
+ ------------------------------------------------
1662
+ RolloutControl::FeaturesControllerTest: test_wat
1663
+ ------------------------------------------------
1664
+ ---------------------------------------------
1665
+ RolloutControlTest: test_add_group_to_feature
1666
+ ---------------------------------------------
1667
+ Started POST "/rollout/features/extra_sharp_knives/groups" for 127.0.0.1 at 2014-11-11 17:53:11 -0800
1668
+ --------------------------------------------
1669
+ RolloutControlTest: test_add_user_to_feature
1670
+ --------------------------------------------
1671
+ Started POST "/rollout/features/potato_gun/users" for 127.0.0.1 at 2014-11-11 17:53:11 -0800
1672
+ ------------------------------------------------------------------------------
1673
+ RolloutControlTest: test_attempt_to_activate_user_to_feature_without_a_user_id
1674
+ ------------------------------------------------------------------------------
1675
+ Started POST "/rollout/features/potato_gun/users" for 127.0.0.1 at 2014-11-11 17:53:11 -0800
1676
+ -----------------------------------------------------------------------------
1677
+ RolloutControlTest: test_attempt_to_add_group_to_feature_without_a_group_name
1678
+ -----------------------------------------------------------------------------
1679
+ Started POST "/rollout/features/extra_sharp_knives/groups" for 127.0.0.1 at 2014-11-11 17:53:11 -0800
1680
+ --------------------------------------------
1681
+ RolloutControlTest: test_list_empty_features
1682
+ --------------------------------------------
1683
+ Started GET "/rollout/features" for 127.0.0.1 at 2014-11-11 17:53:11 -0800
1684
+ -----------------------------------------------
1685
+ RolloutControlTest: test_list_existing_features
1686
+ -----------------------------------------------
1687
+ Started GET "/rollout/features" for 127.0.0.1 at 2014-11-11 17:53:11 -0800
1688
+ --------------------------------------------------
1689
+ RolloutControlTest: test_remove_group_from_feature
1690
+ --------------------------------------------------
1691
+ Started DELETE "/rollout/features/extra_sharp_knives/groups/experienced_chefs" for 127.0.0.1 at 2014-11-11 17:53:11 -0800
1692
+ -------------------------------------------------
1693
+ RolloutControlTest: test_remove_user_from_feature
1694
+ -------------------------------------------------
1695
+ Started DELETE "/rollout/features/potato_gun/users/45" for 127.0.0.1 at 2014-11-11 17:53:11 -0800
1696
+ -------------------------------------
1697
+ RolloutControlTest: test_show_feature
1698
+ -------------------------------------
1699
+ Started GET "/rollout/features/kittens" for 127.0.0.1 at 2014-11-11 17:53:11 -0800
1700
+ --------------------------------------------------
1701
+ RolloutControlTest: test_update_feature_percentage
1702
+ --------------------------------------------------
1703
+ Started PATCH "/rollout/features/kittens" for 127.0.0.1 at 2014-11-11 17:53:11 -0800
1704
+ ------------------------------------------------
1705
+ RolloutControl::FeaturesControllerTest: test_wat
1706
+ ------------------------------------------------
1707
+ ---------------------------------------------
1708
+ RolloutControlTest: test_add_group_to_feature
1709
+ ---------------------------------------------
1710
+ Started POST "/rollout/features/extra_sharp_knives/groups" for 127.0.0.1 at 2014-11-11 17:53:23 -0800
1711
+ Processing by RolloutControl::GroupsController#create as HTML
1712
+ Parameters: {"group"=>"experienced_chefs", "feature_id"=>"extra_sharp_knives"}
1713
+ Completed 204 No Content in 0ms
1714
+ --------------------------------------------
1715
+ RolloutControlTest: test_add_user_to_feature
1716
+ --------------------------------------------
1717
+ Started POST "/rollout/features/potato_gun/users" for 127.0.0.1 at 2014-11-11 17:53:23 -0800
1718
+ Processing by RolloutControl::UsersController#create as HTML
1719
+ Parameters: {"user_id"=>"45", "feature_id"=>"potato_gun"}
1720
+ Completed 204 No Content in 0ms
1721
+ ------------------------------------------------------------------------------
1722
+ RolloutControlTest: test_attempt_to_activate_user_to_feature_without_a_user_id
1723
+ ------------------------------------------------------------------------------
1724
+ Started POST "/rollout/features/potato_gun/users" for 127.0.0.1 at 2014-11-11 17:53:23 -0800
1725
+ Processing by RolloutControl::UsersController#create as HTML
1726
+ Parameters: {"feature_id"=>"potato_gun"}
1727
+ Completed 400 Bad Request in 0ms
1728
+ -----------------------------------------------------------------------------
1729
+ RolloutControlTest: test_attempt_to_add_group_to_feature_without_a_group_name
1730
+ -----------------------------------------------------------------------------
1731
+ Started POST "/rollout/features/extra_sharp_knives/groups" for 127.0.0.1 at 2014-11-11 17:53:23 -0800
1732
+ Processing by RolloutControl::GroupsController#create as HTML
1733
+ Parameters: {"feature_id"=>"extra_sharp_knives"}
1734
+ Completed 400 Bad Request in 0ms
1735
+ --------------------------------------------
1736
+ RolloutControlTest: test_list_empty_features
1737
+ --------------------------------------------
1738
+ Started GET "/rollout/features" for 127.0.0.1 at 2014-11-11 17:53:23 -0800
1739
+ Processing by RolloutControl::FeaturesController#index as HTML
1740
+ Completed 200 OK in 0ms (Views: 0.1ms)
1741
+ -----------------------------------------------
1742
+ RolloutControlTest: test_list_existing_features
1743
+ -----------------------------------------------
1744
+ Started GET "/rollout/features" for 127.0.0.1 at 2014-11-11 17:53:23 -0800
1745
+ Processing by RolloutControl::FeaturesController#index as HTML
1746
+ Completed 200 OK in 0ms (Views: 0.0ms)
1747
+ Started GET "/rollout/features" for 127.0.0.1 at 2014-11-11 17:53:23 -0800
1748
+ Processing by RolloutControl::FeaturesController#index as HTML
1749
+ Completed 200 OK in 0ms (Views: 0.0ms)
1750
+ --------------------------------------------------
1751
+ RolloutControlTest: test_remove_group_from_feature
1752
+ --------------------------------------------------
1753
+ Started DELETE "/rollout/features/extra_sharp_knives/groups/experienced_chefs" for 127.0.0.1 at 2014-11-11 17:53:23 -0800
1754
+ Processing by RolloutControl::GroupsController#destroy as HTML
1755
+ Parameters: {"feature_id"=>"extra_sharp_knives", "id"=>"experienced_chefs"}
1756
+ Completed 204 No Content in 0ms
1757
+ -------------------------------------------------
1758
+ RolloutControlTest: test_remove_user_from_feature
1759
+ -------------------------------------------------
1760
+ Started DELETE "/rollout/features/potato_gun/users/45" for 127.0.0.1 at 2014-11-11 17:53:23 -0800
1761
+ Processing by RolloutControl::UsersController#destroy as HTML
1762
+ Parameters: {"feature_id"=>"potato_gun", "id"=>"45"}
1763
+ Completed 204 No Content in 0ms
1764
+ -------------------------------------
1765
+ RolloutControlTest: test_show_feature
1766
+ -------------------------------------
1767
+ Started GET "/rollout/features/kittens" for 127.0.0.1 at 2014-11-11 17:53:23 -0800
1768
+ Processing by RolloutControl::FeaturesController#show as HTML
1769
+ Parameters: {"id"=>"kittens"}
1770
+ Completed 200 OK in 0ms (Views: 0.1ms)
1771
+ Started GET "/rollout/features/kittens" for 127.0.0.1 at 2014-11-11 17:53:23 -0800
1772
+ Processing by RolloutControl::FeaturesController#show as HTML
1773
+ Parameters: {"id"=>"kittens"}
1774
+ Completed 200 OK in 0ms (Views: 0.1ms)
1775
+ Started GET "/rollout/features/kittens" for 127.0.0.1 at 2014-11-11 17:53:23 -0800
1776
+ Processing by RolloutControl::FeaturesController#show as HTML
1777
+ Parameters: {"id"=>"kittens"}
1778
+ Completed 200 OK in 0ms (Views: 0.1ms)
1779
+ --------------------------------------------------
1780
+ RolloutControlTest: test_update_feature_percentage
1781
+ --------------------------------------------------
1782
+ Started PATCH "/rollout/features/kittens" for 127.0.0.1 at 2014-11-11 17:53:23 -0800
1783
+ Processing by RolloutControl::FeaturesController#update as HTML
1784
+ Parameters: {"percentage"=>"65", "id"=>"kittens"}
1785
+ Completed 204 No Content in 0ms
1786
+ ---------------------------------------------
1787
+ RolloutControlTest: test_add_group_to_feature
1788
+ ---------------------------------------------
1789
+ Started POST "/rollout/features/extra_sharp_knives/groups" for 127.0.0.1 at 2014-11-11 18:22:46 -0800
1790
+ Processing by RolloutControl::GroupsController#create as HTML
1791
+ Parameters: {"group"=>"experienced_chefs", "feature_id"=>"extra_sharp_knives"}
1792
+ Completed 204 No Content in 0ms
1793
+ --------------------------------------------
1794
+ RolloutControlTest: test_add_user_to_feature
1795
+ --------------------------------------------
1796
+ Started POST "/rollout/features/potato_gun/users" for 127.0.0.1 at 2014-11-11 18:22:46 -0800
1797
+ Processing by RolloutControl::UsersController#create as HTML
1798
+ Parameters: {"user_id"=>"45", "feature_id"=>"potato_gun"}
1799
+ Completed 204 No Content in 0ms
1800
+ ------------------------------------------------------------------------------
1801
+ RolloutControlTest: test_attempt_to_activate_user_to_feature_without_a_user_id
1802
+ ------------------------------------------------------------------------------
1803
+ Started POST "/rollout/features/potato_gun/users" for 127.0.0.1 at 2014-11-11 18:22:46 -0800
1804
+ Processing by RolloutControl::UsersController#create as HTML
1805
+ Parameters: {"feature_id"=>"potato_gun"}
1806
+ Completed 400 Bad Request in 0ms
1807
+ -----------------------------------------------------------------------------
1808
+ RolloutControlTest: test_attempt_to_add_group_to_feature_without_a_group_name
1809
+ -----------------------------------------------------------------------------
1810
+ Started POST "/rollout/features/extra_sharp_knives/groups" for 127.0.0.1 at 2014-11-11 18:22:46 -0800
1811
+ Processing by RolloutControl::GroupsController#create as HTML
1812
+ Parameters: {"feature_id"=>"extra_sharp_knives"}
1813
+ Completed 400 Bad Request in 0ms
1814
+ --------------------------------------------
1815
+ RolloutControlTest: test_list_empty_features
1816
+ --------------------------------------------
1817
+ Started GET "/rollout/features" for 127.0.0.1 at 2014-11-11 18:22:46 -0800
1818
+ Processing by RolloutControl::FeaturesController#index as HTML
1819
+ Completed 200 OK in 0ms (Views: 0.1ms)
1820
+ -----------------------------------------------
1821
+ RolloutControlTest: test_list_existing_features
1822
+ -----------------------------------------------
1823
+ Started GET "/rollout/features" for 127.0.0.1 at 2014-11-11 18:22:46 -0800
1824
+ Processing by RolloutControl::FeaturesController#index as HTML
1825
+ Completed 200 OK in 0ms (Views: 0.0ms)
1826
+ Started GET "/rollout/features" for 127.0.0.1 at 2014-11-11 18:22:46 -0800
1827
+ Processing by RolloutControl::FeaturesController#index as HTML
1828
+ Completed 200 OK in 0ms (Views: 0.0ms)
1829
+ --------------------------------------------------
1830
+ RolloutControlTest: test_remove_group_from_feature
1831
+ --------------------------------------------------
1832
+ Started DELETE "/rollout/features/extra_sharp_knives/groups/experienced_chefs" for 127.0.0.1 at 2014-11-11 18:22:46 -0800
1833
+ Processing by RolloutControl::GroupsController#destroy as HTML
1834
+ Parameters: {"feature_id"=>"extra_sharp_knives", "id"=>"experienced_chefs"}
1835
+ Completed 204 No Content in 0ms
1836
+ -------------------------------------------------
1837
+ RolloutControlTest: test_remove_user_from_feature
1838
+ -------------------------------------------------
1839
+ Started DELETE "/rollout/features/potato_gun/users/45" for 127.0.0.1 at 2014-11-11 18:22:46 -0800
1840
+ Processing by RolloutControl::UsersController#destroy as HTML
1841
+ Parameters: {"feature_id"=>"potato_gun", "id"=>"45"}
1842
+ Completed 204 No Content in 0ms
1843
+ -------------------------------------
1844
+ RolloutControlTest: test_show_feature
1845
+ -------------------------------------
1846
+ Started GET "/rollout/features/kittens" for 127.0.0.1 at 2014-11-11 18:22:46 -0800
1847
+ Processing by RolloutControl::FeaturesController#show as HTML
1848
+ Parameters: {"id"=>"kittens"}
1849
+ Completed 200 OK in 0ms (Views: 0.1ms)
1850
+ Started GET "/rollout/features/kittens" for 127.0.0.1 at 2014-11-11 18:22:46 -0800
1851
+ Processing by RolloutControl::FeaturesController#show as HTML
1852
+ Parameters: {"id"=>"kittens"}
1853
+ Completed 200 OK in 0ms (Views: 0.1ms)
1854
+ Started GET "/rollout/features/kittens" for 127.0.0.1 at 2014-11-11 18:22:46 -0800
1855
+ Processing by RolloutControl::FeaturesController#show as HTML
1856
+ Parameters: {"id"=>"kittens"}
1857
+ Completed 200 OK in 0ms (Views: 0.1ms)
1858
+ --------------------------------------------------
1859
+ RolloutControlTest: test_update_feature_percentage
1860
+ --------------------------------------------------
1861
+ Started PATCH "/rollout/features/kittens" for 127.0.0.1 at 2014-11-11 18:22:46 -0800
1862
+ Processing by RolloutControl::FeaturesController#update as HTML
1863
+ Parameters: {"percentage"=>"65", "id"=>"kittens"}
1864
+ Completed 204 No Content in 0ms
1865
+ ------------------------------------------------
1866
+ RolloutControl::FeaturesControllerTest: test_wat
1867
+ ------------------------------------------------
1868
+ ---------------------------------------------
1869
+ RolloutControlTest: test_add_group_to_feature
1870
+ ---------------------------------------------
1871
+ Started POST "/rollout/features/extra_sharp_knives/groups" for 127.0.0.1 at 2014-11-11 19:25:48 -0800
1872
+ Processing by RolloutControl::GroupsController#create as HTML
1873
+ Parameters: {"group"=>"experienced_chefs", "feature_id"=>"extra_sharp_knives"}
1874
+ Completed 204 No Content in 0ms
1875
+ --------------------------------------------
1876
+ RolloutControlTest: test_add_user_to_feature
1877
+ --------------------------------------------
1878
+ Started POST "/rollout/features/potato_gun/users" for 127.0.0.1 at 2014-11-11 19:25:48 -0800
1879
+ Processing by RolloutControl::UsersController#create as HTML
1880
+ Parameters: {"user_id"=>"45", "feature_id"=>"potato_gun"}
1881
+ Completed 204 No Content in 0ms
1882
+ ------------------------------------------------------------------------------
1883
+ RolloutControlTest: test_attempt_to_activate_user_to_feature_without_a_user_id
1884
+ ------------------------------------------------------------------------------
1885
+ Started POST "/rollout/features/potato_gun/users" for 127.0.0.1 at 2014-11-11 19:25:48 -0800
1886
+ Processing by RolloutControl::UsersController#create as HTML
1887
+ Parameters: {"feature_id"=>"potato_gun"}
1888
+ Completed 400 Bad Request in 0ms
1889
+ -----------------------------------------------------------------------------
1890
+ RolloutControlTest: test_attempt_to_add_group_to_feature_without_a_group_name
1891
+ -----------------------------------------------------------------------------
1892
+ Started POST "/rollout/features/extra_sharp_knives/groups" for 127.0.0.1 at 2014-11-11 19:25:48 -0800
1893
+ Processing by RolloutControl::GroupsController#create as HTML
1894
+ Parameters: {"feature_id"=>"extra_sharp_knives"}
1895
+ Completed 400 Bad Request in 0ms
1896
+ --------------------------------------------
1897
+ RolloutControlTest: test_list_empty_features
1898
+ --------------------------------------------
1899
+ Started GET "/rollout/features" for 127.0.0.1 at 2014-11-11 19:25:48 -0800
1900
+ Processing by RolloutControl::FeaturesController#index as HTML
1901
+ Completed 200 OK in 0ms (Views: 0.1ms)
1902
+ -----------------------------------------------
1903
+ RolloutControlTest: test_list_existing_features
1904
+ -----------------------------------------------
1905
+ Started GET "/rollout/features" for 127.0.0.1 at 2014-11-11 19:25:48 -0800
1906
+ Processing by RolloutControl::FeaturesController#index as HTML
1907
+ Completed 200 OK in 0ms (Views: 0.1ms)
1908
+ Started GET "/rollout/features" for 127.0.0.1 at 2014-11-11 19:25:48 -0800
1909
+ Processing by RolloutControl::FeaturesController#index as HTML
1910
+ Completed 200 OK in 0ms (Views: 0.0ms)
1911
+ --------------------------------------------------
1912
+ RolloutControlTest: test_remove_group_from_feature
1913
+ --------------------------------------------------
1914
+ Started DELETE "/rollout/features/extra_sharp_knives/groups/experienced_chefs" for 127.0.0.1 at 2014-11-11 19:25:48 -0800
1915
+ Processing by RolloutControl::GroupsController#destroy as HTML
1916
+ Parameters: {"feature_id"=>"extra_sharp_knives", "id"=>"experienced_chefs"}
1917
+ Completed 204 No Content in 0ms
1918
+ -------------------------------------------------
1919
+ RolloutControlTest: test_remove_user_from_feature
1920
+ -------------------------------------------------
1921
+ Started DELETE "/rollout/features/potato_gun/users/45" for 127.0.0.1 at 2014-11-11 19:25:48 -0800
1922
+ Processing by RolloutControl::UsersController#destroy as HTML
1923
+ Parameters: {"feature_id"=>"potato_gun", "id"=>"45"}
1924
+ Completed 204 No Content in 0ms
1925
+ -------------------------------------
1926
+ RolloutControlTest: test_show_feature
1927
+ -------------------------------------
1928
+ Started GET "/rollout/features/kittens" for 127.0.0.1 at 2014-11-11 19:25:48 -0800
1929
+ Processing by RolloutControl::FeaturesController#show as HTML
1930
+ Parameters: {"id"=>"kittens"}
1931
+ Completed 200 OK in 0ms (Views: 0.1ms)
1932
+ Started GET "/rollout/features/kittens" for 127.0.0.1 at 2014-11-11 19:25:48 -0800
1933
+ Processing by RolloutControl::FeaturesController#show as HTML
1934
+ Parameters: {"id"=>"kittens"}
1935
+ Completed 200 OK in 0ms (Views: 0.1ms)
1936
+ Started GET "/rollout/features/kittens" for 127.0.0.1 at 2014-11-11 19:25:48 -0800
1937
+ Processing by RolloutControl::FeaturesController#show as HTML
1938
+ Parameters: {"id"=>"kittens"}
1939
+ Completed 200 OK in 0ms (Views: 0.1ms)
1940
+ --------------------------------------------------
1941
+ RolloutControlTest: test_update_feature_percentage
1942
+ --------------------------------------------------
1943
+ Started PATCH "/rollout/features/kittens" for 127.0.0.1 at 2014-11-11 19:25:48 -0800
1944
+ Processing by RolloutControl::FeaturesController#update as HTML
1945
+ Parameters: {"percentage"=>"65", "id"=>"kittens"}
1946
+ Completed 204 No Content in 0ms
1947
+ ------------------------------------------------
1948
+ RolloutControl::FeaturesControllerTest: test_wat
1949
+ ------------------------------------------------
1950
+ ------------------------------------------------
1951
+ RolloutControl::FeaturesControllerTest: test_wat
1952
+ ------------------------------------------------
1953
+ ---------------------------------------------
1954
+ RolloutControlTest: test_add_group_to_feature
1955
+ ---------------------------------------------
1956
+ Started POST "/rollout/features/extra_sharp_knives/groups" for 127.0.0.1 at 2014-11-11 19:32:41 -0800
1957
+ Processing by RolloutControl::GroupsController#create as HTML
1958
+ Parameters: {"group"=>"experienced_chefs", "feature_id"=>"extra_sharp_knives"}
1959
+ Completed 204 No Content in 0ms
1960
+ --------------------------------------------
1961
+ RolloutControlTest: test_add_user_to_feature
1962
+ --------------------------------------------
1963
+ Started POST "/rollout/features/potato_gun/users" for 127.0.0.1 at 2014-11-11 19:32:41 -0800
1964
+ Processing by RolloutControl::UsersController#create as HTML
1965
+ Parameters: {"user_id"=>"45", "feature_id"=>"potato_gun"}
1966
+ Completed 204 No Content in 0ms
1967
+ ------------------------------------------------------------------------------
1968
+ RolloutControlTest: test_attempt_to_activate_user_to_feature_without_a_user_id
1969
+ ------------------------------------------------------------------------------
1970
+ Started POST "/rollout/features/potato_gun/users" for 127.0.0.1 at 2014-11-11 19:32:41 -0800
1971
+ Processing by RolloutControl::UsersController#create as HTML
1972
+ Parameters: {"feature_id"=>"potato_gun"}
1973
+ Completed 400 Bad Request in 0ms
1974
+ -----------------------------------------------------------------------------
1975
+ RolloutControlTest: test_attempt_to_add_group_to_feature_without_a_group_name
1976
+ -----------------------------------------------------------------------------
1977
+ Started POST "/rollout/features/extra_sharp_knives/groups" for 127.0.0.1 at 2014-11-11 19:32:41 -0800
1978
+ Processing by RolloutControl::GroupsController#create as HTML
1979
+ Parameters: {"feature_id"=>"extra_sharp_knives"}
1980
+ Completed 400 Bad Request in 0ms
1981
+ --------------------------------------------
1982
+ RolloutControlTest: test_list_empty_features
1983
+ --------------------------------------------
1984
+ Started GET "/rollout/features" for 127.0.0.1 at 2014-11-11 19:32:41 -0800
1985
+ Processing by RolloutControl::FeaturesController#index as HTML
1986
+ Completed 200 OK in 0ms (Views: 0.1ms)
1987
+ -----------------------------------------------
1988
+ RolloutControlTest: test_list_existing_features
1989
+ -----------------------------------------------
1990
+ Started GET "/rollout/features" for 127.0.0.1 at 2014-11-11 19:32:41 -0800
1991
+ Processing by RolloutControl::FeaturesController#index as HTML
1992
+ Completed 200 OK in 0ms (Views: 0.0ms)
1993
+ Started GET "/rollout/features" for 127.0.0.1 at 2014-11-11 19:32:41 -0800
1994
+ Processing by RolloutControl::FeaturesController#index as HTML
1995
+ Completed 200 OK in 0ms (Views: 0.0ms)
1996
+ --------------------------------------------------
1997
+ RolloutControlTest: test_remove_group_from_feature
1998
+ --------------------------------------------------
1999
+ Started DELETE "/rollout/features/extra_sharp_knives/groups/experienced_chefs" for 127.0.0.1 at 2014-11-11 19:32:41 -0800
2000
+ Processing by RolloutControl::GroupsController#destroy as HTML
2001
+ Parameters: {"feature_id"=>"extra_sharp_knives", "id"=>"experienced_chefs"}
2002
+ Completed 204 No Content in 0ms
2003
+ -------------------------------------------------
2004
+ RolloutControlTest: test_remove_user_from_feature
2005
+ -------------------------------------------------
2006
+ Started DELETE "/rollout/features/potato_gun/users/45" for 127.0.0.1 at 2014-11-11 19:32:41 -0800
2007
+ Processing by RolloutControl::UsersController#destroy as HTML
2008
+ Parameters: {"feature_id"=>"potato_gun", "id"=>"45"}
2009
+ Completed 204 No Content in 0ms
2010
+ -------------------------------------
2011
+ RolloutControlTest: test_show_feature
2012
+ -------------------------------------
2013
+ Started GET "/rollout/features/kittens" for 127.0.0.1 at 2014-11-11 19:32:41 -0800
2014
+ Processing by RolloutControl::FeaturesController#show as HTML
2015
+ Parameters: {"id"=>"kittens"}
2016
+ Completed 200 OK in 0ms (Views: 0.1ms)
2017
+ Started GET "/rollout/features/kittens" for 127.0.0.1 at 2014-11-11 19:32:41 -0800
2018
+ Processing by RolloutControl::FeaturesController#show as HTML
2019
+ Parameters: {"id"=>"kittens"}
2020
+ Completed 200 OK in 0ms (Views: 0.1ms)
2021
+ Started GET "/rollout/features/kittens" for 127.0.0.1 at 2014-11-11 19:32:41 -0800
2022
+ Processing by RolloutControl::FeaturesController#show as HTML
2023
+ Parameters: {"id"=>"kittens"}
2024
+ Completed 200 OK in 0ms (Views: 0.1ms)
2025
+ --------------------------------------------------
2026
+ RolloutControlTest: test_update_feature_percentage
2027
+ --------------------------------------------------
2028
+ Started PATCH "/rollout/features/kittens" for 127.0.0.1 at 2014-11-11 19:32:41 -0800
2029
+ Processing by RolloutControl::FeaturesController#update as HTML
2030
+ Parameters: {"percentage"=>"65", "id"=>"kittens"}
2031
+ Completed 204 No Content in 0ms
2032
+ ---------------------------------------------
2033
+ RolloutControlTest: test_add_group_to_feature
2034
+ ---------------------------------------------
2035
+ Started POST "/rollout/features/extra_sharp_knives/groups" for 127.0.0.1 at 2014-11-11 19:33:22 -0800
2036
+ --------------------------------------------
2037
+ RolloutControlTest: test_add_user_to_feature
2038
+ --------------------------------------------
2039
+ Started POST "/rollout/features/potato_gun/users" for 127.0.0.1 at 2014-11-11 19:33:22 -0800
2040
+ ------------------------------------------------------------------------------
2041
+ RolloutControlTest: test_attempt_to_activate_user_to_feature_without_a_user_id
2042
+ ------------------------------------------------------------------------------
2043
+ Started POST "/rollout/features/potato_gun/users" for 127.0.0.1 at 2014-11-11 19:33:22 -0800
2044
+ -----------------------------------------------------------------------------
2045
+ RolloutControlTest: test_attempt_to_add_group_to_feature_without_a_group_name
2046
+ -----------------------------------------------------------------------------
2047
+ Started POST "/rollout/features/extra_sharp_knives/groups" for 127.0.0.1 at 2014-11-11 19:33:22 -0800
2048
+ --------------------------------------------
2049
+ RolloutControlTest: test_list_empty_features
2050
+ --------------------------------------------
2051
+ Started GET "/rollout/features" for 127.0.0.1 at 2014-11-11 19:33:22 -0800
2052
+ -----------------------------------------------
2053
+ RolloutControlTest: test_list_existing_features
2054
+ -----------------------------------------------
2055
+ Started GET "/rollout/features" for 127.0.0.1 at 2014-11-11 19:33:22 -0800
2056
+ --------------------------------------------------
2057
+ RolloutControlTest: test_remove_group_from_feature
2058
+ --------------------------------------------------
2059
+ Started DELETE "/rollout/features/extra_sharp_knives/groups/experienced_chefs" for 127.0.0.1 at 2014-11-11 19:33:22 -0800
2060
+ -------------------------------------------------
2061
+ RolloutControlTest: test_remove_user_from_feature
2062
+ -------------------------------------------------
2063
+ Started DELETE "/rollout/features/potato_gun/users/45" for 127.0.0.1 at 2014-11-11 19:33:22 -0800
2064
+ -------------------------------------
2065
+ RolloutControlTest: test_show_feature
2066
+ -------------------------------------
2067
+ Started GET "/rollout/features/kittens" for 127.0.0.1 at 2014-11-11 19:33:22 -0800
2068
+ --------------------------------------------------
2069
+ RolloutControlTest: test_update_feature_percentage
2070
+ --------------------------------------------------
2071
+ Started PATCH "/rollout/features/kittens" for 127.0.0.1 at 2014-11-11 19:33:22 -0800
2072
+ ------------------------------------------------
2073
+ RolloutControl::FeaturesControllerTest: test_wat
2074
+ ------------------------------------------------
2075
+ ------------------------------------------------
2076
+ RolloutControl::FeaturesControllerTest: test_wat
2077
+ ------------------------------------------------
2078
+ ---------------------------------------------
2079
+ RolloutControlTest: test_add_group_to_feature
2080
+ ---------------------------------------------
2081
+ Started POST "/rollout/features/extra_sharp_knives/groups" for 127.0.0.1 at 2014-11-11 19:33:37 -0800
2082
+ --------------------------------------------
2083
+ RolloutControlTest: test_add_user_to_feature
2084
+ --------------------------------------------
2085
+ Started POST "/rollout/features/potato_gun/users" for 127.0.0.1 at 2014-11-11 19:33:37 -0800
2086
+ ------------------------------------------------------------------------------
2087
+ RolloutControlTest: test_attempt_to_activate_user_to_feature_without_a_user_id
2088
+ ------------------------------------------------------------------------------
2089
+ Started POST "/rollout/features/potato_gun/users" for 127.0.0.1 at 2014-11-11 19:33:37 -0800
2090
+ -----------------------------------------------------------------------------
2091
+ RolloutControlTest: test_attempt_to_add_group_to_feature_without_a_group_name
2092
+ -----------------------------------------------------------------------------
2093
+ Started POST "/rollout/features/extra_sharp_knives/groups" for 127.0.0.1 at 2014-11-11 19:33:37 -0800
2094
+ --------------------------------------------
2095
+ RolloutControlTest: test_list_empty_features
2096
+ --------------------------------------------
2097
+ Started GET "/rollout/features" for 127.0.0.1 at 2014-11-11 19:33:37 -0800
2098
+ -----------------------------------------------
2099
+ RolloutControlTest: test_list_existing_features
2100
+ -----------------------------------------------
2101
+ Started GET "/rollout/features" for 127.0.0.1 at 2014-11-11 19:33:37 -0800
2102
+ --------------------------------------------------
2103
+ RolloutControlTest: test_remove_group_from_feature
2104
+ --------------------------------------------------
2105
+ Started DELETE "/rollout/features/extra_sharp_knives/groups/experienced_chefs" for 127.0.0.1 at 2014-11-11 19:33:37 -0800
2106
+ -------------------------------------------------
2107
+ RolloutControlTest: test_remove_user_from_feature
2108
+ -------------------------------------------------
2109
+ Started DELETE "/rollout/features/potato_gun/users/45" for 127.0.0.1 at 2014-11-11 19:33:37 -0800
2110
+ -------------------------------------
2111
+ RolloutControlTest: test_show_feature
2112
+ -------------------------------------
2113
+ Started GET "/rollout/features/kittens" for 127.0.0.1 at 2014-11-11 19:33:37 -0800
2114
+ --------------------------------------------------
2115
+ RolloutControlTest: test_update_feature_percentage
2116
+ --------------------------------------------------
2117
+ Started PATCH "/rollout/features/kittens" for 127.0.0.1 at 2014-11-11 19:33:37 -0800
2118
+ ---------------------------------------------
2119
+ RolloutControlTest: test_add_group_to_feature
2120
+ ---------------------------------------------
2121
+ Started POST "/rollout/features/extra_sharp_knives/groups" for 127.0.0.1 at 2014-11-11 19:34:04 -0800
2122
+ --------------------------------------------
2123
+ RolloutControlTest: test_add_user_to_feature
2124
+ --------------------------------------------
2125
+ Started POST "/rollout/features/potato_gun/users" for 127.0.0.1 at 2014-11-11 19:34:04 -0800
2126
+ ------------------------------------------------------------------------------
2127
+ RolloutControlTest: test_attempt_to_activate_user_to_feature_without_a_user_id
2128
+ ------------------------------------------------------------------------------
2129
+ Started POST "/rollout/features/potato_gun/users" for 127.0.0.1 at 2014-11-11 19:34:04 -0800
2130
+ -----------------------------------------------------------------------------
2131
+ RolloutControlTest: test_attempt_to_add_group_to_feature_without_a_group_name
2132
+ -----------------------------------------------------------------------------
2133
+ Started POST "/rollout/features/extra_sharp_knives/groups" for 127.0.0.1 at 2014-11-11 19:34:04 -0800
2134
+ --------------------------------------------
2135
+ RolloutControlTest: test_list_empty_features
2136
+ --------------------------------------------
2137
+ Started GET "/rollout/features" for 127.0.0.1 at 2014-11-11 19:34:04 -0800
2138
+ -----------------------------------------------
2139
+ RolloutControlTest: test_list_existing_features
2140
+ -----------------------------------------------
2141
+ Started GET "/rollout/features" for 127.0.0.1 at 2014-11-11 19:34:04 -0800
2142
+ --------------------------------------------------
2143
+ RolloutControlTest: test_remove_group_from_feature
2144
+ --------------------------------------------------
2145
+ Started DELETE "/rollout/features/extra_sharp_knives/groups/experienced_chefs" for 127.0.0.1 at 2014-11-11 19:34:04 -0800
2146
+ -------------------------------------------------
2147
+ RolloutControlTest: test_remove_user_from_feature
2148
+ -------------------------------------------------
2149
+ Started DELETE "/rollout/features/potato_gun/users/45" for 127.0.0.1 at 2014-11-11 19:34:04 -0800
2150
+ -------------------------------------
2151
+ RolloutControlTest: test_show_feature
2152
+ -------------------------------------
2153
+ Started GET "/rollout/features/kittens" for 127.0.0.1 at 2014-11-11 19:34:04 -0800
2154
+ --------------------------------------------------
2155
+ RolloutControlTest: test_update_feature_percentage
2156
+ --------------------------------------------------
2157
+ Started PATCH "/rollout/features/kittens" for 127.0.0.1 at 2014-11-11 19:34:04 -0800
2158
+ ------------------------------------------------
2159
+ RolloutControl::FeaturesControllerTest: test_wat
2160
+ ------------------------------------------------
2161
+ ---------------------------------------------
2162
+ RolloutControlTest: test_add_group_to_feature
2163
+ ---------------------------------------------
2164
+ Started POST "/rollout/features/extra_sharp_knives/groups" for 127.0.0.1 at 2014-11-11 19:34:09 -0800
2165
+ --------------------------------------------
2166
+ RolloutControlTest: test_add_user_to_feature
2167
+ --------------------------------------------
2168
+ Started POST "/rollout/features/potato_gun/users" for 127.0.0.1 at 2014-11-11 19:34:09 -0800
2169
+ ------------------------------------------------------------------------------
2170
+ RolloutControlTest: test_attempt_to_activate_user_to_feature_without_a_user_id
2171
+ ------------------------------------------------------------------------------
2172
+ Started POST "/rollout/features/potato_gun/users" for 127.0.0.1 at 2014-11-11 19:34:09 -0800
2173
+ -----------------------------------------------------------------------------
2174
+ RolloutControlTest: test_attempt_to_add_group_to_feature_without_a_group_name
2175
+ -----------------------------------------------------------------------------
2176
+ Started POST "/rollout/features/extra_sharp_knives/groups" for 127.0.0.1 at 2014-11-11 19:34:09 -0800
2177
+ --------------------------------------------
2178
+ RolloutControlTest: test_list_empty_features
2179
+ --------------------------------------------
2180
+ Started GET "/rollout/features" for 127.0.0.1 at 2014-11-11 19:34:09 -0800
2181
+ -----------------------------------------------
2182
+ RolloutControlTest: test_list_existing_features
2183
+ -----------------------------------------------
2184
+ Started GET "/rollout/features" for 127.0.0.1 at 2014-11-11 19:34:09 -0800
2185
+ --------------------------------------------------
2186
+ RolloutControlTest: test_remove_group_from_feature
2187
+ --------------------------------------------------
2188
+ Started DELETE "/rollout/features/extra_sharp_knives/groups/experienced_chefs" for 127.0.0.1 at 2014-11-11 19:34:09 -0800
2189
+ -------------------------------------------------
2190
+ RolloutControlTest: test_remove_user_from_feature
2191
+ -------------------------------------------------
2192
+ Started DELETE "/rollout/features/potato_gun/users/45" for 127.0.0.1 at 2014-11-11 19:34:09 -0800
2193
+ -------------------------------------
2194
+ RolloutControlTest: test_show_feature
2195
+ -------------------------------------
2196
+ Started GET "/rollout/features/kittens" for 127.0.0.1 at 2014-11-11 19:34:09 -0800
2197
+ --------------------------------------------------
2198
+ RolloutControlTest: test_update_feature_percentage
2199
+ --------------------------------------------------
2200
+ Started PATCH "/rollout/features/kittens" for 127.0.0.1 at 2014-11-11 19:34:09 -0800
2201
+ ------------------------------------------------
2202
+ RolloutControl::FeaturesControllerTest: test_wat
2203
+ ------------------------------------------------
2204
+ ------------------------------------------------
2205
+ RolloutControl::FeaturesControllerTest: test_wat
2206
+ ------------------------------------------------
2207
+ ---------------------------------------------
2208
+ RolloutControlTest: test_add_group_to_feature
2209
+ ---------------------------------------------
2210
+ Started POST "/rollout/features/extra_sharp_knives/groups" for 127.0.0.1 at 2014-11-11 19:36:00 -0800
2211
+ --------------------------------------------
2212
+ RolloutControlTest: test_add_user_to_feature
2213
+ --------------------------------------------
2214
+ Started POST "/rollout/features/potato_gun/users" for 127.0.0.1 at 2014-11-11 19:36:00 -0800
2215
+ ------------------------------------------------------------------------------
2216
+ RolloutControlTest: test_attempt_to_activate_user_to_feature_without_a_user_id
2217
+ ------------------------------------------------------------------------------
2218
+ Started POST "/rollout/features/potato_gun/users" for 127.0.0.1 at 2014-11-11 19:36:00 -0800
2219
+ -----------------------------------------------------------------------------
2220
+ RolloutControlTest: test_attempt_to_add_group_to_feature_without_a_group_name
2221
+ -----------------------------------------------------------------------------
2222
+ Started POST "/rollout/features/extra_sharp_knives/groups" for 127.0.0.1 at 2014-11-11 19:36:00 -0800
2223
+ --------------------------------------------
2224
+ RolloutControlTest: test_list_empty_features
2225
+ --------------------------------------------
2226
+ Started GET "/rollout/features" for 127.0.0.1 at 2014-11-11 19:36:00 -0800
2227
+ -----------------------------------------------
2228
+ RolloutControlTest: test_list_existing_features
2229
+ -----------------------------------------------
2230
+ Started GET "/rollout/features" for 127.0.0.1 at 2014-11-11 19:36:00 -0800
2231
+ --------------------------------------------------
2232
+ RolloutControlTest: test_remove_group_from_feature
2233
+ --------------------------------------------------
2234
+ Started DELETE "/rollout/features/extra_sharp_knives/groups/experienced_chefs" for 127.0.0.1 at 2014-11-11 19:36:00 -0800
2235
+ -------------------------------------------------
2236
+ RolloutControlTest: test_remove_user_from_feature
2237
+ -------------------------------------------------
2238
+ Started DELETE "/rollout/features/potato_gun/users/45" for 127.0.0.1 at 2014-11-11 19:36:00 -0800
2239
+ -------------------------------------
2240
+ RolloutControlTest: test_show_feature
2241
+ -------------------------------------
2242
+ Started GET "/rollout/features/kittens" for 127.0.0.1 at 2014-11-11 19:36:00 -0800
2243
+ --------------------------------------------------
2244
+ RolloutControlTest: test_update_feature_percentage
2245
+ --------------------------------------------------
2246
+ Started PATCH "/rollout/features/kittens" for 127.0.0.1 at 2014-11-11 19:36:00 -0800
2247
+ ------------------------------------------------
2248
+ RolloutControl::FeaturesControllerTest: test_wat
2249
+ ------------------------------------------------
2250
+ ---------------------------------------------
2251
+ RolloutControlTest: test_add_group_to_feature
2252
+ ---------------------------------------------
2253
+ Started POST "/rollout/features/extra_sharp_knives/groups" for 127.0.0.1 at 2014-11-11 19:37:36 -0800
2254
+ --------------------------------------------
2255
+ RolloutControlTest: test_add_user_to_feature
2256
+ --------------------------------------------
2257
+ Started POST "/rollout/features/potato_gun/users" for 127.0.0.1 at 2014-11-11 19:37:36 -0800
2258
+ ------------------------------------------------------------------------------
2259
+ RolloutControlTest: test_attempt_to_activate_user_to_feature_without_a_user_id
2260
+ ------------------------------------------------------------------------------
2261
+ Started POST "/rollout/features/potato_gun/users" for 127.0.0.1 at 2014-11-11 19:37:36 -0800
2262
+ -----------------------------------------------------------------------------
2263
+ RolloutControlTest: test_attempt_to_add_group_to_feature_without_a_group_name
2264
+ -----------------------------------------------------------------------------
2265
+ Started POST "/rollout/features/extra_sharp_knives/groups" for 127.0.0.1 at 2014-11-11 19:37:36 -0800
2266
+ --------------------------------------------
2267
+ RolloutControlTest: test_list_empty_features
2268
+ --------------------------------------------
2269
+ Started GET "/rollout/features" for 127.0.0.1 at 2014-11-11 19:37:36 -0800
2270
+ -----------------------------------------------
2271
+ RolloutControlTest: test_list_existing_features
2272
+ -----------------------------------------------
2273
+ Started GET "/rollout/features" for 127.0.0.1 at 2014-11-11 19:37:36 -0800
2274
+ --------------------------------------------------
2275
+ RolloutControlTest: test_remove_group_from_feature
2276
+ --------------------------------------------------
2277
+ Started DELETE "/rollout/features/extra_sharp_knives/groups/experienced_chefs" for 127.0.0.1 at 2014-11-11 19:37:36 -0800
2278
+ -------------------------------------------------
2279
+ RolloutControlTest: test_remove_user_from_feature
2280
+ -------------------------------------------------
2281
+ Started DELETE "/rollout/features/potato_gun/users/45" for 127.0.0.1 at 2014-11-11 19:37:36 -0800
2282
+ -------------------------------------
2283
+ RolloutControlTest: test_show_feature
2284
+ -------------------------------------
2285
+ Started GET "/rollout/features/kittens" for 127.0.0.1 at 2014-11-11 19:37:36 -0800
2286
+ --------------------------------------------------
2287
+ RolloutControlTest: test_update_feature_percentage
2288
+ --------------------------------------------------
2289
+ Started PATCH "/rollout/features/kittens" for 127.0.0.1 at 2014-11-11 19:37:36 -0800
2290
+ ------------------------------------------------
2291
+ RolloutControl::FeaturesControllerTest: test_wat
2292
+ ------------------------------------------------
2293
+ ---------------------------------------------
2294
+ RolloutControlTest: test_add_group_to_feature
2295
+ ---------------------------------------------
2296
+ Started POST "/rollout/features/extra_sharp_knives/groups" for 127.0.0.1 at 2014-11-11 19:40:45 -0800
2297
+ Processing by RolloutControl::GroupsController#create as HTML
2298
+ Parameters: {"group"=>"experienced_chefs", "feature_id"=>"extra_sharp_knives"}
2299
+ Completed 204 No Content in 0ms
2300
+ --------------------------------------------
2301
+ RolloutControlTest: test_add_user_to_feature
2302
+ --------------------------------------------
2303
+ Started POST "/rollout/features/potato_gun/users" for 127.0.0.1 at 2014-11-11 19:40:45 -0800
2304
+ Processing by RolloutControl::UsersController#create as HTML
2305
+ Parameters: {"user_id"=>"45", "feature_id"=>"potato_gun"}
2306
+ Completed 204 No Content in 0ms
2307
+ ------------------------------------------------------------------------------
2308
+ RolloutControlTest: test_attempt_to_activate_user_to_feature_without_a_user_id
2309
+ ------------------------------------------------------------------------------
2310
+ Started POST "/rollout/features/potato_gun/users" for 127.0.0.1 at 2014-11-11 19:40:45 -0800
2311
+ Processing by RolloutControl::UsersController#create as HTML
2312
+ Parameters: {"feature_id"=>"potato_gun"}
2313
+ Completed 400 Bad Request in 0ms
2314
+ -----------------------------------------------------------------------------
2315
+ RolloutControlTest: test_attempt_to_add_group_to_feature_without_a_group_name
2316
+ -----------------------------------------------------------------------------
2317
+ Started POST "/rollout/features/extra_sharp_knives/groups" for 127.0.0.1 at 2014-11-11 19:40:45 -0800
2318
+ Processing by RolloutControl::GroupsController#create as HTML
2319
+ Parameters: {"feature_id"=>"extra_sharp_knives"}
2320
+ Completed 400 Bad Request in 0ms
2321
+ --------------------------------------------
2322
+ RolloutControlTest: test_list_empty_features
2323
+ --------------------------------------------
2324
+ Started GET "/rollout/features" for 127.0.0.1 at 2014-11-11 19:40:45 -0800
2325
+ Processing by RolloutControl::FeaturesController#index as HTML
2326
+ Completed 200 OK in 0ms (Views: 0.1ms)
2327
+ -----------------------------------------------
2328
+ RolloutControlTest: test_list_existing_features
2329
+ -----------------------------------------------
2330
+ Started GET "/rollout/features" for 127.0.0.1 at 2014-11-11 19:40:45 -0800
2331
+ Processing by RolloutControl::FeaturesController#index as HTML
2332
+ Completed 200 OK in 0ms (Views: 0.1ms)
2333
+ Started GET "/rollout/features" for 127.0.0.1 at 2014-11-11 19:40:45 -0800
2334
+ Processing by RolloutControl::FeaturesController#index as HTML
2335
+ Completed 200 OK in 0ms (Views: 0.0ms)
2336
+ --------------------------------------------------
2337
+ RolloutControlTest: test_remove_group_from_feature
2338
+ --------------------------------------------------
2339
+ Started DELETE "/rollout/features/extra_sharp_knives/groups/experienced_chefs" for 127.0.0.1 at 2014-11-11 19:40:45 -0800
2340
+ Processing by RolloutControl::GroupsController#destroy as HTML
2341
+ Parameters: {"feature_id"=>"extra_sharp_knives", "id"=>"experienced_chefs"}
2342
+ Completed 204 No Content in 0ms
2343
+ -------------------------------------------------
2344
+ RolloutControlTest: test_remove_user_from_feature
2345
+ -------------------------------------------------
2346
+ Started DELETE "/rollout/features/potato_gun/users/45" for 127.0.0.1 at 2014-11-11 19:40:45 -0800
2347
+ Processing by RolloutControl::UsersController#destroy as HTML
2348
+ Parameters: {"feature_id"=>"potato_gun", "id"=>"45"}
2349
+ Completed 204 No Content in 0ms
2350
+ -------------------------------------
2351
+ RolloutControlTest: test_show_feature
2352
+ -------------------------------------
2353
+ Started GET "/rollout/features/kittens" for 127.0.0.1 at 2014-11-11 19:40:45 -0800
2354
+ Processing by RolloutControl::FeaturesController#show as HTML
2355
+ Parameters: {"id"=>"kittens"}
2356
+ Completed 200 OK in 0ms (Views: 0.1ms)
2357
+ Started GET "/rollout/features/kittens" for 127.0.0.1 at 2014-11-11 19:40:45 -0800
2358
+ Processing by RolloutControl::FeaturesController#show as HTML
2359
+ Parameters: {"id"=>"kittens"}
2360
+ Completed 200 OK in 0ms (Views: 0.1ms)
2361
+ Started GET "/rollout/features/kittens" for 127.0.0.1 at 2014-11-11 19:40:45 -0800
2362
+ Processing by RolloutControl::FeaturesController#show as HTML
2363
+ Parameters: {"id"=>"kittens"}
2364
+ Completed 200 OK in 0ms (Views: 0.1ms)
2365
+ --------------------------------------------------
2366
+ RolloutControlTest: test_update_feature_percentage
2367
+ --------------------------------------------------
2368
+ Started PATCH "/rollout/features/kittens" for 127.0.0.1 at 2014-11-11 19:40:45 -0800
2369
+ Processing by RolloutControl::FeaturesController#update as HTML
2370
+ Parameters: {"percentage"=>"65", "id"=>"kittens"}
2371
+ Completed 204 No Content in 0ms
2372
+ ------------------------------------------------
2373
+ RolloutControl::FeaturesControllerTest: test_wat
2374
+ ------------------------------------------------
2375
+ ---------------------------------------------
2376
+ RolloutControlTest: test_add_group_to_feature
2377
+ ---------------------------------------------
2378
+ --------------------------------------------
2379
+ RolloutControlTest: test_add_user_to_feature
2380
+ --------------------------------------------
2381
+ ------------------------------------------------------------------------------
2382
+ RolloutControlTest: test_attempt_to_activate_user_to_feature_without_a_user_id
2383
+ ------------------------------------------------------------------------------
2384
+ -----------------------------------------------------------------------------
2385
+ RolloutControlTest: test_attempt_to_add_group_to_feature_without_a_group_name
2386
+ -----------------------------------------------------------------------------
2387
+ --------------------------------------------
2388
+ RolloutControlTest: test_list_empty_features
2389
+ --------------------------------------------
2390
+ -----------------------------------------------
2391
+ RolloutControlTest: test_list_existing_features
2392
+ -----------------------------------------------
2393
+ --------------------------------------------------
2394
+ RolloutControlTest: test_remove_group_from_feature
2395
+ --------------------------------------------------
2396
+ -------------------------------------------------
2397
+ RolloutControlTest: test_remove_user_from_feature
2398
+ -------------------------------------------------
2399
+ -------------------------------------
2400
+ RolloutControlTest: test_show_feature
2401
+ -------------------------------------
2402
+ --------------------------------------------------
2403
+ RolloutControlTest: test_update_feature_percentage
2404
+ --------------------------------------------------
2405
+ ------------------------------------------------
2406
+ RolloutControl::FeaturesControllerTest: test_wat
2407
+ ------------------------------------------------
2408
+ ---------------------------------------------
2409
+ RolloutControlTest: test_add_group_to_feature
2410
+ ---------------------------------------------
2411
+ Started POST "/rollout/features/extra_sharp_knives/groups" for 127.0.0.1 at 2014-11-11 19:41:41 -0800
2412
+ Processing by RolloutControl::GroupsController#create as HTML
2413
+ Parameters: {"group"=>"experienced_chefs", "feature_id"=>"extra_sharp_knives"}
2414
+ Completed 204 No Content in 0ms
2415
+ --------------------------------------------
2416
+ RolloutControlTest: test_add_user_to_feature
2417
+ --------------------------------------------
2418
+ Started POST "/rollout/features/potato_gun/users" for 127.0.0.1 at 2014-11-11 19:41:41 -0800
2419
+ Processing by RolloutControl::UsersController#create as HTML
2420
+ Parameters: {"user_id"=>"45", "feature_id"=>"potato_gun"}
2421
+ Completed 204 No Content in 0ms
2422
+ ------------------------------------------------------------------------------
2423
+ RolloutControlTest: test_attempt_to_activate_user_to_feature_without_a_user_id
2424
+ ------------------------------------------------------------------------------
2425
+ Started POST "/rollout/features/potato_gun/users" for 127.0.0.1 at 2014-11-11 19:41:41 -0800
2426
+ Processing by RolloutControl::UsersController#create as HTML
2427
+ Parameters: {"feature_id"=>"potato_gun"}
2428
+ Completed 400 Bad Request in 0ms
2429
+ -----------------------------------------------------------------------------
2430
+ RolloutControlTest: test_attempt_to_add_group_to_feature_without_a_group_name
2431
+ -----------------------------------------------------------------------------
2432
+ Started POST "/rollout/features/extra_sharp_knives/groups" for 127.0.0.1 at 2014-11-11 19:41:41 -0800
2433
+ Processing by RolloutControl::GroupsController#create as HTML
2434
+ Parameters: {"feature_id"=>"extra_sharp_knives"}
2435
+ Completed 400 Bad Request in 0ms
2436
+ --------------------------------------------
2437
+ RolloutControlTest: test_list_empty_features
2438
+ --------------------------------------------
2439
+ Started GET "/rollout/features" for 127.0.0.1 at 2014-11-11 19:41:41 -0800
2440
+ Processing by RolloutControl::FeaturesController#index as HTML
2441
+ Completed 200 OK in 0ms (Views: 0.1ms)
2442
+ -----------------------------------------------
2443
+ RolloutControlTest: test_list_existing_features
2444
+ -----------------------------------------------
2445
+ Started GET "/rollout/features" for 127.0.0.1 at 2014-11-11 19:41:41 -0800
2446
+ Processing by RolloutControl::FeaturesController#index as HTML
2447
+ Completed 200 OK in 0ms (Views: 0.0ms)
2448
+ Started GET "/rollout/features" for 127.0.0.1 at 2014-11-11 19:41:41 -0800
2449
+ Processing by RolloutControl::FeaturesController#index as HTML
2450
+ Completed 200 OK in 0ms (Views: 0.0ms)
2451
+ --------------------------------------------------
2452
+ RolloutControlTest: test_remove_group_from_feature
2453
+ --------------------------------------------------
2454
+ Started DELETE "/rollout/features/extra_sharp_knives/groups/experienced_chefs" for 127.0.0.1 at 2014-11-11 19:41:41 -0800
2455
+ Processing by RolloutControl::GroupsController#destroy as HTML
2456
+ Parameters: {"feature_id"=>"extra_sharp_knives", "id"=>"experienced_chefs"}
2457
+ Completed 204 No Content in 0ms
2458
+ -------------------------------------------------
2459
+ RolloutControlTest: test_remove_user_from_feature
2460
+ -------------------------------------------------
2461
+ Started DELETE "/rollout/features/potato_gun/users/45" for 127.0.0.1 at 2014-11-11 19:41:41 -0800
2462
+ Processing by RolloutControl::UsersController#destroy as HTML
2463
+ Parameters: {"feature_id"=>"potato_gun", "id"=>"45"}
2464
+ Completed 204 No Content in 0ms
2465
+ -------------------------------------
2466
+ RolloutControlTest: test_show_feature
2467
+ -------------------------------------
2468
+ Started GET "/rollout/features/kittens" for 127.0.0.1 at 2014-11-11 19:41:41 -0800
2469
+ Processing by RolloutControl::FeaturesController#show as HTML
2470
+ Parameters: {"id"=>"kittens"}
2471
+ Completed 200 OK in 0ms (Views: 0.1ms)
2472
+ Started GET "/rollout/features/kittens" for 127.0.0.1 at 2014-11-11 19:41:41 -0800
2473
+ Processing by RolloutControl::FeaturesController#show as HTML
2474
+ Parameters: {"id"=>"kittens"}
2475
+ Completed 200 OK in 0ms (Views: 0.1ms)
2476
+ Started GET "/rollout/features/kittens" for 127.0.0.1 at 2014-11-11 19:41:41 -0800
2477
+ Processing by RolloutControl::FeaturesController#show as HTML
2478
+ Parameters: {"id"=>"kittens"}
2479
+ Completed 200 OK in 0ms (Views: 0.1ms)
2480
+ --------------------------------------------------
2481
+ RolloutControlTest: test_update_feature_percentage
2482
+ --------------------------------------------------
2483
+ Started PATCH "/rollout/features/kittens" for 127.0.0.1 at 2014-11-11 19:41:41 -0800
2484
+ Processing by RolloutControl::FeaturesController#update as HTML
2485
+ Parameters: {"percentage"=>"65", "id"=>"kittens"}
2486
+ Completed 204 No Content in 0ms
2487
+ ---------------------------------------------
2488
+ RolloutControlTest: test_add_group_to_feature
2489
+ ---------------------------------------------
2490
+ Started POST "/rollout/features/extra_sharp_knives/groups" for 127.0.0.1 at 2014-11-11 19:44:34 -0800
2491
+ Processing by RolloutControl::GroupsController#create as HTML
2492
+ Parameters: {"group"=>"experienced_chefs", "feature_id"=>"extra_sharp_knives"}
2493
+ Completed 204 No Content in 0ms
2494
+ --------------------------------------------
2495
+ RolloutControlTest: test_add_user_to_feature
2496
+ --------------------------------------------
2497
+ Started POST "/rollout/features/potato_gun/users" for 127.0.0.1 at 2014-11-11 19:44:34 -0800
2498
+ Processing by RolloutControl::UsersController#create as HTML
2499
+ Parameters: {"user_id"=>"45", "feature_id"=>"potato_gun"}
2500
+ Completed 204 No Content in 0ms
2501
+ ------------------------------------------------------------------------------
2502
+ RolloutControlTest: test_attempt_to_activate_user_to_feature_without_a_user_id
2503
+ ------------------------------------------------------------------------------
2504
+ Started POST "/rollout/features/potato_gun/users" for 127.0.0.1 at 2014-11-11 19:44:34 -0800
2505
+ Processing by RolloutControl::UsersController#create as HTML
2506
+ Parameters: {"feature_id"=>"potato_gun"}
2507
+ Completed 400 Bad Request in 0ms
2508
+ -----------------------------------------------------------------------------
2509
+ RolloutControlTest: test_attempt_to_add_group_to_feature_without_a_group_name
2510
+ -----------------------------------------------------------------------------
2511
+ Started POST "/rollout/features/extra_sharp_knives/groups" for 127.0.0.1 at 2014-11-11 19:44:34 -0800
2512
+ Processing by RolloutControl::GroupsController#create as HTML
2513
+ Parameters: {"feature_id"=>"extra_sharp_knives"}
2514
+ Completed 400 Bad Request in 0ms
2515
+ --------------------------------------------
2516
+ RolloutControlTest: test_list_empty_features
2517
+ --------------------------------------------
2518
+ Started GET "/rollout/features" for 127.0.0.1 at 2014-11-11 19:44:34 -0800
2519
+ Processing by RolloutControl::FeaturesController#index as HTML
2520
+ Completed 200 OK in 0ms (Views: 0.1ms)
2521
+ -----------------------------------------------
2522
+ RolloutControlTest: test_list_existing_features
2523
+ -----------------------------------------------
2524
+ Started GET "/rollout/features" for 127.0.0.1 at 2014-11-11 19:44:34 -0800
2525
+ Processing by RolloutControl::FeaturesController#index as HTML
2526
+ Completed 200 OK in 0ms (Views: 0.0ms)
2527
+ Started GET "/rollout/features" for 127.0.0.1 at 2014-11-11 19:44:34 -0800
2528
+ Processing by RolloutControl::FeaturesController#index as HTML
2529
+ Completed 200 OK in 0ms (Views: 0.0ms)
2530
+ --------------------------------------------------
2531
+ RolloutControlTest: test_remove_group_from_feature
2532
+ --------------------------------------------------
2533
+ Started DELETE "/rollout/features/extra_sharp_knives/groups/experienced_chefs" for 127.0.0.1 at 2014-11-11 19:44:34 -0800
2534
+ Processing by RolloutControl::GroupsController#destroy as HTML
2535
+ Parameters: {"feature_id"=>"extra_sharp_knives", "id"=>"experienced_chefs"}
2536
+ Completed 204 No Content in 0ms
2537
+ -------------------------------------------------
2538
+ RolloutControlTest: test_remove_user_from_feature
2539
+ -------------------------------------------------
2540
+ Started DELETE "/rollout/features/potato_gun/users/45" for 127.0.0.1 at 2014-11-11 19:44:34 -0800
2541
+ Processing by RolloutControl::UsersController#destroy as HTML
2542
+ Parameters: {"feature_id"=>"potato_gun", "id"=>"45"}
2543
+ Completed 204 No Content in 0ms
2544
+ -------------------------------------
2545
+ RolloutControlTest: test_show_feature
2546
+ -------------------------------------
2547
+ Started GET "/rollout/features/kittens" for 127.0.0.1 at 2014-11-11 19:44:34 -0800
2548
+ Processing by RolloutControl::FeaturesController#show as HTML
2549
+ Parameters: {"id"=>"kittens"}
2550
+ Completed 200 OK in 0ms (Views: 0.1ms)
2551
+ Started GET "/rollout/features/kittens" for 127.0.0.1 at 2014-11-11 19:44:34 -0800
2552
+ Processing by RolloutControl::FeaturesController#show as HTML
2553
+ Parameters: {"id"=>"kittens"}
2554
+ Completed 200 OK in 0ms (Views: 0.1ms)
2555
+ Started GET "/rollout/features/kittens" for 127.0.0.1 at 2014-11-11 19:44:34 -0800
2556
+ Processing by RolloutControl::FeaturesController#show as HTML
2557
+ Parameters: {"id"=>"kittens"}
2558
+ Completed 200 OK in 0ms (Views: 0.1ms)
2559
+ --------------------------------------------------
2560
+ RolloutControlTest: test_update_feature_percentage
2561
+ --------------------------------------------------
2562
+ Started PATCH "/rollout/features/kittens" for 127.0.0.1 at 2014-11-11 19:44:34 -0800
2563
+ Processing by RolloutControl::FeaturesController#update as HTML
2564
+ Parameters: {"percentage"=>"65", "id"=>"kittens"}
2565
+ Completed 204 No Content in 0ms
2566
+ ------------------------------------------------
2567
+ RolloutControl::FeaturesControllerTest: test_wat
2568
+ ------------------------------------------------
2569
+ ------------------------------------------------
2570
+ RolloutControl::FeaturesControllerTest: test_wat
2571
+ ------------------------------------------------
2572
+ ---------------------------------------------
2573
+ RolloutControlTest: test_add_group_to_feature
2574
+ ---------------------------------------------
2575
+ Started POST "/rollout/features/extra_sharp_knives/groups" for 127.0.0.1 at 2014-11-12 11:55:17 -0800
2576
+ Processing by RolloutControl::GroupsController#create as HTML
2577
+ Parameters: {"group"=>"experienced_chefs", "feature_id"=>"extra_sharp_knives"}
2578
+ Completed 204 No Content in 0ms
2579
+ --------------------------------------------
2580
+ RolloutControlTest: test_add_user_to_feature
2581
+ --------------------------------------------
2582
+ Started POST "/rollout/features/potato_gun/users" for 127.0.0.1 at 2014-11-12 11:55:17 -0800
2583
+ Processing by RolloutControl::UsersController#create as HTML
2584
+ Parameters: {"user_id"=>"45", "feature_id"=>"potato_gun"}
2585
+ Completed 204 No Content in 0ms
2586
+ ------------------------------------------------------------------------------
2587
+ RolloutControlTest: test_attempt_to_activate_user_to_feature_without_a_user_id
2588
+ ------------------------------------------------------------------------------
2589
+ Started POST "/rollout/features/potato_gun/users" for 127.0.0.1 at 2014-11-12 11:55:17 -0800
2590
+ Processing by RolloutControl::UsersController#create as HTML
2591
+ Parameters: {"feature_id"=>"potato_gun"}
2592
+ Completed 400 Bad Request in 0ms
2593
+ -----------------------------------------------------------------------------
2594
+ RolloutControlTest: test_attempt_to_add_group_to_feature_without_a_group_name
2595
+ -----------------------------------------------------------------------------
2596
+ Started POST "/rollout/features/extra_sharp_knives/groups" for 127.0.0.1 at 2014-11-12 11:55:17 -0800
2597
+ Processing by RolloutControl::GroupsController#create as HTML
2598
+ Parameters: {"feature_id"=>"extra_sharp_knives"}
2599
+ Completed 400 Bad Request in 0ms
2600
+ --------------------------------------------
2601
+ RolloutControlTest: test_list_empty_features
2602
+ --------------------------------------------
2603
+ Started GET "/rollout/features" for 127.0.0.1 at 2014-11-12 11:55:17 -0800
2604
+ Processing by RolloutControl::FeaturesController#index as HTML
2605
+ Completed 200 OK in 0ms (Views: 0.1ms)
2606
+ -----------------------------------------------
2607
+ RolloutControlTest: test_list_existing_features
2608
+ -----------------------------------------------
2609
+ Started GET "/rollout/features" for 127.0.0.1 at 2014-11-12 11:55:17 -0800
2610
+ Processing by RolloutControl::FeaturesController#index as HTML
2611
+ Completed 200 OK in 0ms (Views: 0.0ms)
2612
+ --------------------------------------------------
2613
+ RolloutControlTest: test_remove_group_from_feature
2614
+ --------------------------------------------------
2615
+ Started DELETE "/rollout/features/extra_sharp_knives/groups/experienced_chefs" for 127.0.0.1 at 2014-11-12 11:55:17 -0800
2616
+ Processing by RolloutControl::GroupsController#destroy as HTML
2617
+ Parameters: {"feature_id"=>"extra_sharp_knives", "id"=>"experienced_chefs"}
2618
+ Completed 204 No Content in 0ms
2619
+ -------------------------------------------------
2620
+ RolloutControlTest: test_remove_user_from_feature
2621
+ -------------------------------------------------
2622
+ Started DELETE "/rollout/features/potato_gun/users/45" for 127.0.0.1 at 2014-11-12 11:55:17 -0800
2623
+ Processing by RolloutControl::UsersController#destroy as HTML
2624
+ Parameters: {"feature_id"=>"potato_gun", "id"=>"45"}
2625
+ Completed 204 No Content in 0ms
2626
+ -------------------------------------
2627
+ RolloutControlTest: test_show_feature
2628
+ -------------------------------------
2629
+ Started GET "/rollout/features/kittens" for 127.0.0.1 at 2014-11-12 11:55:17 -0800
2630
+ Processing by RolloutControl::FeaturesController#show as HTML
2631
+ Parameters: {"id"=>"kittens"}
2632
+ Completed 200 OK in 0ms (Views: 0.2ms)
2633
+ Started GET "/rollout/features/kittens" for 127.0.0.1 at 2014-11-12 11:55:17 -0800
2634
+ Processing by RolloutControl::FeaturesController#show as HTML
2635
+ Parameters: {"id"=>"kittens"}
2636
+ Completed 200 OK in 0ms (Views: 0.1ms)
2637
+ Started GET "/rollout/features/kittens" for 127.0.0.1 at 2014-11-12 11:55:17 -0800
2638
+ Processing by RolloutControl::FeaturesController#show as HTML
2639
+ Parameters: {"id"=>"kittens"}
2640
+ Completed 200 OK in 0ms (Views: 0.1ms)
2641
+ --------------------------------------------------
2642
+ RolloutControlTest: test_update_feature_percentage
2643
+ --------------------------------------------------
2644
+ Started PATCH "/rollout/features/kittens" for 127.0.0.1 at 2014-11-12 11:55:17 -0800
2645
+ Processing by RolloutControl::FeaturesController#update as HTML
2646
+ Parameters: {"percentage"=>"65", "id"=>"kittens"}
2647
+ Completed 204 No Content in 0ms
2648
+ ------------------------------------------------
2649
+ RolloutControl::FeaturesControllerTest: test_wat
2650
+ ------------------------------------------------
2651
+ ---------------------------------------------
2652
+ RolloutControlTest: test_add_group_to_feature
2653
+ ---------------------------------------------
2654
+ Started POST "/rollout/features/extra_sharp_knives/groups" for 127.0.0.1 at 2014-11-12 11:58:18 -0800
2655
+ Processing by RolloutControl::GroupsController#create as HTML
2656
+ Parameters: {"group"=>"experienced_chefs", "feature_id"=>"extra_sharp_knives"}
2657
+ Completed 204 No Content in 0ms
2658
+ --------------------------------------------
2659
+ RolloutControlTest: test_add_user_to_feature
2660
+ --------------------------------------------
2661
+ Started POST "/rollout/features/potato_gun/users" for 127.0.0.1 at 2014-11-12 11:58:18 -0800
2662
+ Processing by RolloutControl::UsersController#create as HTML
2663
+ Parameters: {"user_id"=>"45", "feature_id"=>"potato_gun"}
2664
+ Completed 204 No Content in 0ms
2665
+ ------------------------------------------------------------------------------
2666
+ RolloutControlTest: test_attempt_to_activate_user_to_feature_without_a_user_id
2667
+ ------------------------------------------------------------------------------
2668
+ Started POST "/rollout/features/potato_gun/users" for 127.0.0.1 at 2014-11-12 11:58:18 -0800
2669
+ Processing by RolloutControl::UsersController#create as HTML
2670
+ Parameters: {"feature_id"=>"potato_gun"}
2671
+ Completed 400 Bad Request in 0ms
2672
+ -----------------------------------------------------------------------------
2673
+ RolloutControlTest: test_attempt_to_add_group_to_feature_without_a_group_name
2674
+ -----------------------------------------------------------------------------
2675
+ Started POST "/rollout/features/extra_sharp_knives/groups" for 127.0.0.1 at 2014-11-12 11:58:18 -0800
2676
+ Processing by RolloutControl::GroupsController#create as HTML
2677
+ Parameters: {"feature_id"=>"extra_sharp_knives"}
2678
+ Completed 400 Bad Request in 0ms
2679
+ --------------------------------------------
2680
+ RolloutControlTest: test_list_empty_features
2681
+ --------------------------------------------
2682
+ Started GET "/rollout/features" for 127.0.0.1 at 2014-11-12 11:58:18 -0800
2683
+ Processing by RolloutControl::FeaturesController#index as HTML
2684
+ Completed 200 OK in 0ms (Views: 0.1ms)
2685
+ -----------------------------------------------
2686
+ RolloutControlTest: test_list_existing_features
2687
+ -----------------------------------------------
2688
+ Started GET "/rollout/features" for 127.0.0.1 at 2014-11-12 11:58:18 -0800
2689
+ Processing by RolloutControl::FeaturesController#index as HTML
2690
+ Completed 500 Internal Server Error in 0ms
2691
+ --------------------------------------------------
2692
+ RolloutControlTest: test_remove_group_from_feature
2693
+ --------------------------------------------------
2694
+ Started DELETE "/rollout/features/extra_sharp_knives/groups/experienced_chefs" for 127.0.0.1 at 2014-11-12 11:58:18 -0800
2695
+ Processing by RolloutControl::GroupsController#destroy as HTML
2696
+ Parameters: {"feature_id"=>"extra_sharp_knives", "id"=>"experienced_chefs"}
2697
+ Completed 204 No Content in 0ms
2698
+ -------------------------------------------------
2699
+ RolloutControlTest: test_remove_user_from_feature
2700
+ -------------------------------------------------
2701
+ Started DELETE "/rollout/features/potato_gun/users/45" for 127.0.0.1 at 2014-11-12 11:58:18 -0800
2702
+ Processing by RolloutControl::UsersController#destroy as HTML
2703
+ Parameters: {"feature_id"=>"potato_gun", "id"=>"45"}
2704
+ Completed 204 No Content in 0ms
2705
+ -------------------------------------
2706
+ RolloutControlTest: test_show_feature
2707
+ -------------------------------------
2708
+ Started GET "/rollout/features/kittens" for 127.0.0.1 at 2014-11-12 11:58:18 -0800
2709
+ Processing by RolloutControl::FeaturesController#show as HTML
2710
+ Parameters: {"id"=>"kittens"}
2711
+ Completed 200 OK in 0ms (Views: 0.1ms)
2712
+ Started GET "/rollout/features/kittens" for 127.0.0.1 at 2014-11-12 11:58:18 -0800
2713
+ Processing by RolloutControl::FeaturesController#show as HTML
2714
+ Parameters: {"id"=>"kittens"}
2715
+ Completed 200 OK in 0ms (Views: 0.1ms)
2716
+ Started GET "/rollout/features/kittens" for 127.0.0.1 at 2014-11-12 11:58:18 -0800
2717
+ Processing by RolloutControl::FeaturesController#show as HTML
2718
+ Parameters: {"id"=>"kittens"}
2719
+ Completed 200 OK in 0ms (Views: 0.1ms)
2720
+ --------------------------------------------------
2721
+ RolloutControlTest: test_update_feature_percentage
2722
+ --------------------------------------------------
2723
+ Started PATCH "/rollout/features/kittens" for 127.0.0.1 at 2014-11-12 11:58:18 -0800
2724
+ Processing by RolloutControl::FeaturesController#update as HTML
2725
+ Parameters: {"percentage"=>"65", "id"=>"kittens"}
2726
+ Completed 204 No Content in 0ms
2727
+ ---------------------------------------------
2728
+ RolloutControlTest: test_add_group_to_feature
2729
+ ---------------------------------------------
2730
+ Started POST "/rollout/features/extra_sharp_knives/groups" for 127.0.0.1 at 2014-11-12 11:58:48 -0800
2731
+ Processing by RolloutControl::GroupsController#create as HTML
2732
+ Parameters: {"group"=>"experienced_chefs", "feature_id"=>"extra_sharp_knives"}
2733
+ Completed 204 No Content in 0ms
2734
+ --------------------------------------------
2735
+ RolloutControlTest: test_add_user_to_feature
2736
+ --------------------------------------------
2737
+ Started POST "/rollout/features/potato_gun/users" for 127.0.0.1 at 2014-11-12 11:58:48 -0800
2738
+ Processing by RolloutControl::UsersController#create as HTML
2739
+ Parameters: {"user_id"=>"45", "feature_id"=>"potato_gun"}
2740
+ Completed 204 No Content in 0ms
2741
+ ------------------------------------------------------------------------------
2742
+ RolloutControlTest: test_attempt_to_activate_user_to_feature_without_a_user_id
2743
+ ------------------------------------------------------------------------------
2744
+ Started POST "/rollout/features/potato_gun/users" for 127.0.0.1 at 2014-11-12 11:58:48 -0800
2745
+ Processing by RolloutControl::UsersController#create as HTML
2746
+ Parameters: {"feature_id"=>"potato_gun"}
2747
+ Completed 400 Bad Request in 0ms
2748
+ -----------------------------------------------------------------------------
2749
+ RolloutControlTest: test_attempt_to_add_group_to_feature_without_a_group_name
2750
+ -----------------------------------------------------------------------------
2751
+ Started POST "/rollout/features/extra_sharp_knives/groups" for 127.0.0.1 at 2014-11-12 11:58:48 -0800
2752
+ Processing by RolloutControl::GroupsController#create as HTML
2753
+ Parameters: {"feature_id"=>"extra_sharp_knives"}
2754
+ Completed 400 Bad Request in 0ms
2755
+ --------------------------------------------
2756
+ RolloutControlTest: test_list_empty_features
2757
+ --------------------------------------------
2758
+ Started GET "/rollout/features" for 127.0.0.1 at 2014-11-12 11:58:48 -0800
2759
+ Processing by RolloutControl::FeaturesController#index as HTML
2760
+ Completed 200 OK in 0ms (Views: 0.1ms)
2761
+ -----------------------------------------------
2762
+ RolloutControlTest: test_list_existing_features
2763
+ -----------------------------------------------
2764
+ Started GET "/rollout/features" for 127.0.0.1 at 2014-11-12 11:58:48 -0800
2765
+ Processing by RolloutControl::FeaturesController#index as HTML
2766
+ Completed 200 OK in 0ms (Views: 0.0ms)
2767
+ --------------------------------------------------
2768
+ RolloutControlTest: test_remove_group_from_feature
2769
+ --------------------------------------------------
2770
+ Started DELETE "/rollout/features/extra_sharp_knives/groups/experienced_chefs" for 127.0.0.1 at 2014-11-12 11:58:48 -0800
2771
+ Processing by RolloutControl::GroupsController#destroy as HTML
2772
+ Parameters: {"feature_id"=>"extra_sharp_knives", "id"=>"experienced_chefs"}
2773
+ Completed 204 No Content in 0ms
2774
+ -------------------------------------------------
2775
+ RolloutControlTest: test_remove_user_from_feature
2776
+ -------------------------------------------------
2777
+ Started DELETE "/rollout/features/potato_gun/users/45" for 127.0.0.1 at 2014-11-12 11:58:48 -0800
2778
+ Processing by RolloutControl::UsersController#destroy as HTML
2779
+ Parameters: {"feature_id"=>"potato_gun", "id"=>"45"}
2780
+ Completed 204 No Content in 0ms
2781
+ -------------------------------------
2782
+ RolloutControlTest: test_show_feature
2783
+ -------------------------------------
2784
+ Started GET "/rollout/features/kittens" for 127.0.0.1 at 2014-11-12 11:58:48 -0800
2785
+ Processing by RolloutControl::FeaturesController#show as HTML
2786
+ Parameters: {"id"=>"kittens"}
2787
+ Completed 200 OK in 0ms (Views: 0.1ms)
2788
+ Started GET "/rollout/features/kittens" for 127.0.0.1 at 2014-11-12 11:58:48 -0800
2789
+ Processing by RolloutControl::FeaturesController#show as HTML
2790
+ Parameters: {"id"=>"kittens"}
2791
+ Completed 200 OK in 0ms (Views: 0.1ms)
2792
+ Started GET "/rollout/features/kittens" for 127.0.0.1 at 2014-11-12 11:58:48 -0800
2793
+ Processing by RolloutControl::FeaturesController#show as HTML
2794
+ Parameters: {"id"=>"kittens"}
2795
+ Completed 200 OK in 0ms (Views: 0.1ms)
2796
+ --------------------------------------------------
2797
+ RolloutControlTest: test_update_feature_percentage
2798
+ --------------------------------------------------
2799
+ Started PATCH "/rollout/features/kittens" for 127.0.0.1 at 2014-11-12 11:58:48 -0800
2800
+ Processing by RolloutControl::FeaturesController#update as HTML
2801
+ Parameters: {"percentage"=>"65", "id"=>"kittens"}
2802
+ Completed 204 No Content in 0ms
2803
+ ------------------------------------------------
2804
+ RolloutControl::FeaturesControllerTest: test_wat
2805
+ ------------------------------------------------
2806
+ ------------------------------------------------
2807
+ RolloutControl::FeaturesControllerTest: test_wat
2808
+ ------------------------------------------------
2809
+ ---------------------------------------------
2810
+ RolloutControlTest: test_add_group_to_feature
2811
+ ---------------------------------------------
2812
+ Started POST "/rollout/features/extra_sharp_knives/groups" for 127.0.0.1 at 2014-11-12 11:59:16 -0800
2813
+ Processing by RolloutControl::GroupsController#create as HTML
2814
+ Parameters: {"group"=>"experienced_chefs", "feature_id"=>"extra_sharp_knives"}
2815
+ Completed 204 No Content in 0ms
2816
+ --------------------------------------------
2817
+ RolloutControlTest: test_add_user_to_feature
2818
+ --------------------------------------------
2819
+ Started POST "/rollout/features/potato_gun/users" for 127.0.0.1 at 2014-11-12 11:59:16 -0800
2820
+ Processing by RolloutControl::UsersController#create as HTML
2821
+ Parameters: {"user_id"=>"45", "feature_id"=>"potato_gun"}
2822
+ Completed 204 No Content in 0ms
2823
+ ------------------------------------------------------------------------------
2824
+ RolloutControlTest: test_attempt_to_activate_user_to_feature_without_a_user_id
2825
+ ------------------------------------------------------------------------------
2826
+ Started POST "/rollout/features/potato_gun/users" for 127.0.0.1 at 2014-11-12 11:59:16 -0800
2827
+ Processing by RolloutControl::UsersController#create as HTML
2828
+ Parameters: {"feature_id"=>"potato_gun"}
2829
+ Completed 400 Bad Request in 0ms
2830
+ -----------------------------------------------------------------------------
2831
+ RolloutControlTest: test_attempt_to_add_group_to_feature_without_a_group_name
2832
+ -----------------------------------------------------------------------------
2833
+ Started POST "/rollout/features/extra_sharp_knives/groups" for 127.0.0.1 at 2014-11-12 11:59:16 -0800
2834
+ Processing by RolloutControl::GroupsController#create as HTML
2835
+ Parameters: {"feature_id"=>"extra_sharp_knives"}
2836
+ Completed 400 Bad Request in 0ms
2837
+ --------------------------------------------
2838
+ RolloutControlTest: test_list_empty_features
2839
+ --------------------------------------------
2840
+ Started GET "/rollout/features" for 127.0.0.1 at 2014-11-12 11:59:16 -0800
2841
+ Processing by RolloutControl::FeaturesController#index as HTML
2842
+ Completed 200 OK in 0ms (Views: 0.1ms)
2843
+ -----------------------------------------------
2844
+ RolloutControlTest: test_list_existing_features
2845
+ -----------------------------------------------
2846
+ Started GET "/rollout/features" for 127.0.0.1 at 2014-11-12 11:59:16 -0800
2847
+ Processing by RolloutControl::FeaturesController#index as HTML
2848
+ Completed 200 OK in 0ms (Views: 0.0ms)
2849
+ --------------------------------------------------
2850
+ RolloutControlTest: test_remove_group_from_feature
2851
+ --------------------------------------------------
2852
+ Started DELETE "/rollout/features/extra_sharp_knives/groups/experienced_chefs" for 127.0.0.1 at 2014-11-12 11:59:16 -0800
2853
+ Processing by RolloutControl::GroupsController#destroy as HTML
2854
+ Parameters: {"feature_id"=>"extra_sharp_knives", "id"=>"experienced_chefs"}
2855
+ Completed 204 No Content in 0ms
2856
+ -------------------------------------------------
2857
+ RolloutControlTest: test_remove_user_from_feature
2858
+ -------------------------------------------------
2859
+ Started DELETE "/rollout/features/potato_gun/users/45" for 127.0.0.1 at 2014-11-12 11:59:16 -0800
2860
+ Processing by RolloutControl::UsersController#destroy as HTML
2861
+ Parameters: {"feature_id"=>"potato_gun", "id"=>"45"}
2862
+ Completed 204 No Content in 0ms
2863
+ -------------------------------------
2864
+ RolloutControlTest: test_show_feature
2865
+ -------------------------------------
2866
+ Started GET "/rollout/features/kittens" for 127.0.0.1 at 2014-11-12 11:59:16 -0800
2867
+ Processing by RolloutControl::FeaturesController#show as HTML
2868
+ Parameters: {"id"=>"kittens"}
2869
+ Completed 200 OK in 0ms (Views: 0.1ms)
2870
+ Started GET "/rollout/features/kittens" for 127.0.0.1 at 2014-11-12 11:59:16 -0800
2871
+ Processing by RolloutControl::FeaturesController#show as HTML
2872
+ Parameters: {"id"=>"kittens"}
2873
+ Completed 200 OK in 0ms (Views: 0.1ms)
2874
+ Started GET "/rollout/features/kittens" for 127.0.0.1 at 2014-11-12 11:59:16 -0800
2875
+ Processing by RolloutControl::FeaturesController#show as HTML
2876
+ Parameters: {"id"=>"kittens"}
2877
+ Completed 200 OK in 0ms (Views: 0.1ms)
2878
+ --------------------------------------------------
2879
+ RolloutControlTest: test_update_feature_percentage
2880
+ --------------------------------------------------
2881
+ Started PATCH "/rollout/features/kittens" for 127.0.0.1 at 2014-11-12 11:59:16 -0800
2882
+ Processing by RolloutControl::FeaturesController#update as HTML
2883
+ Parameters: {"percentage"=>"65", "id"=>"kittens"}
2884
+ Completed 204 No Content in 0ms
2885
+ ------------------------------------------------
2886
+ RolloutControl::FeaturesControllerTest: test_wat
2887
+ ------------------------------------------------
2888
+ ---------------------------------------------
2889
+ RolloutControlTest: test_add_group_to_feature
2890
+ ---------------------------------------------
2891
+ Started POST "/rollout/features/extra_sharp_knives/groups" for 127.0.0.1 at 2014-11-12 12:00:19 -0800
2892
+ Processing by RolloutControl::GroupsController#create as HTML
2893
+ Parameters: {"group"=>"experienced_chefs", "feature_id"=>"extra_sharp_knives"}
2894
+ Completed 204 No Content in 0ms
2895
+ --------------------------------------------
2896
+ RolloutControlTest: test_add_user_to_feature
2897
+ --------------------------------------------
2898
+ Started POST "/rollout/features/potato_gun/users" for 127.0.0.1 at 2014-11-12 12:00:19 -0800
2899
+ Processing by RolloutControl::UsersController#create as HTML
2900
+ Parameters: {"user_id"=>"45", "feature_id"=>"potato_gun"}
2901
+ Completed 204 No Content in 0ms
2902
+ ------------------------------------------------------------------------------
2903
+ RolloutControlTest: test_attempt_to_activate_user_to_feature_without_a_user_id
2904
+ ------------------------------------------------------------------------------
2905
+ Started POST "/rollout/features/potato_gun/users" for 127.0.0.1 at 2014-11-12 12:00:19 -0800
2906
+ Processing by RolloutControl::UsersController#create as HTML
2907
+ Parameters: {"feature_id"=>"potato_gun"}
2908
+ Completed 400 Bad Request in 0ms
2909
+ -----------------------------------------------------------------------------
2910
+ RolloutControlTest: test_attempt_to_add_group_to_feature_without_a_group_name
2911
+ -----------------------------------------------------------------------------
2912
+ Started POST "/rollout/features/extra_sharp_knives/groups" for 127.0.0.1 at 2014-11-12 12:00:19 -0800
2913
+ Processing by RolloutControl::GroupsController#create as HTML
2914
+ Parameters: {"feature_id"=>"extra_sharp_knives"}
2915
+ Completed 400 Bad Request in 0ms
2916
+ --------------------------------------------
2917
+ RolloutControlTest: test_list_empty_features
2918
+ --------------------------------------------
2919
+ Started GET "/rollout/features" for 127.0.0.1 at 2014-11-12 12:00:19 -0800
2920
+ Processing by RolloutControl::FeaturesController#index as HTML
2921
+ Completed 200 OK in 0ms (Views: 0.1ms)
2922
+ -----------------------------------------------
2923
+ RolloutControlTest: test_list_existing_features
2924
+ -----------------------------------------------
2925
+ Started GET "/rollout/features" for 127.0.0.1 at 2014-11-12 12:00:19 -0800
2926
+ Processing by RolloutControl::FeaturesController#index as HTML
2927
+ Completed 200 OK in 0ms (Views: 0.0ms)
2928
+ --------------------------------------------------
2929
+ RolloutControlTest: test_remove_group_from_feature
2930
+ --------------------------------------------------
2931
+ Started DELETE "/rollout/features/extra_sharp_knives/groups/experienced_chefs" for 127.0.0.1 at 2014-11-12 12:00:19 -0800
2932
+ Processing by RolloutControl::GroupsController#destroy as HTML
2933
+ Parameters: {"feature_id"=>"extra_sharp_knives", "id"=>"experienced_chefs"}
2934
+ Completed 204 No Content in 0ms
2935
+ -------------------------------------------------
2936
+ RolloutControlTest: test_remove_user_from_feature
2937
+ -------------------------------------------------
2938
+ Started DELETE "/rollout/features/potato_gun/users/45" for 127.0.0.1 at 2014-11-12 12:00:19 -0800
2939
+ Processing by RolloutControl::UsersController#destroy as HTML
2940
+ Parameters: {"feature_id"=>"potato_gun", "id"=>"45"}
2941
+ Completed 204 No Content in 0ms
2942
+ -------------------------------------
2943
+ RolloutControlTest: test_show_feature
2944
+ -------------------------------------
2945
+ Started GET "/rollout/features/kittens" for 127.0.0.1 at 2014-11-12 12:00:19 -0800
2946
+ Processing by RolloutControl::FeaturesController#show as HTML
2947
+ Parameters: {"id"=>"kittens"}
2948
+ Completed 200 OK in 0ms (Views: 0.1ms)
2949
+ Started GET "/rollout/features/kittens" for 127.0.0.1 at 2014-11-12 12:00:19 -0800
2950
+ Processing by RolloutControl::FeaturesController#show as HTML
2951
+ Parameters: {"id"=>"kittens"}
2952
+ Completed 200 OK in 0ms (Views: 0.1ms)
2953
+ Started GET "/rollout/features/kittens" for 127.0.0.1 at 2014-11-12 12:00:19 -0800
2954
+ Processing by RolloutControl::FeaturesController#show as HTML
2955
+ Parameters: {"id"=>"kittens"}
2956
+ Completed 200 OK in 0ms (Views: 0.1ms)
2957
+ --------------------------------------------------
2958
+ RolloutControlTest: test_update_feature_percentage
2959
+ --------------------------------------------------
2960
+ Started PATCH "/rollout/features/kittens" for 127.0.0.1 at 2014-11-12 12:00:19 -0800
2961
+ Processing by RolloutControl::FeaturesController#update as HTML
2962
+ Parameters: {"percentage"=>"65", "id"=>"kittens"}
2963
+ Completed 204 No Content in 0ms
2964
+ ------------------------------------------------
2965
+ RolloutControl::FeaturesControllerTest: test_wat
2966
+ ------------------------------------------------
2967
+ ---------------------------------------------
2968
+ RolloutControlTest: test_add_group_to_feature
2969
+ ---------------------------------------------
2970
+ Started POST "/rollout/features/extra_sharp_knives/groups" for 127.0.0.1 at 2014-11-12 12:00:55 -0800
2971
+ Processing by RolloutControl::GroupsController#create as HTML
2972
+ Parameters: {"group"=>"experienced_chefs", "feature_id"=>"extra_sharp_knives"}
2973
+ Completed 204 No Content in 0ms
2974
+ --------------------------------------------
2975
+ RolloutControlTest: test_add_user_to_feature
2976
+ --------------------------------------------
2977
+ Started POST "/rollout/features/potato_gun/users" for 127.0.0.1 at 2014-11-12 12:00:55 -0800
2978
+ Processing by RolloutControl::UsersController#create as HTML
2979
+ Parameters: {"user_id"=>"45", "feature_id"=>"potato_gun"}
2980
+ Completed 204 No Content in 0ms
2981
+ ------------------------------------------------------------------------------
2982
+ RolloutControlTest: test_attempt_to_activate_user_to_feature_without_a_user_id
2983
+ ------------------------------------------------------------------------------
2984
+ Started POST "/rollout/features/potato_gun/users" for 127.0.0.1 at 2014-11-12 12:00:55 -0800
2985
+ Processing by RolloutControl::UsersController#create as HTML
2986
+ Parameters: {"feature_id"=>"potato_gun"}
2987
+ Completed 400 Bad Request in 0ms
2988
+ -----------------------------------------------------------------------------
2989
+ RolloutControlTest: test_attempt_to_add_group_to_feature_without_a_group_name
2990
+ -----------------------------------------------------------------------------
2991
+ Started POST "/rollout/features/extra_sharp_knives/groups" for 127.0.0.1 at 2014-11-12 12:00:55 -0800
2992
+ Processing by RolloutControl::GroupsController#create as HTML
2993
+ Parameters: {"feature_id"=>"extra_sharp_knives"}
2994
+ Completed 400 Bad Request in 0ms
2995
+ --------------------------------------------
2996
+ RolloutControlTest: test_list_empty_features
2997
+ --------------------------------------------
2998
+ Started GET "/rollout/features" for 127.0.0.1 at 2014-11-12 12:00:55 -0800
2999
+ Processing by RolloutControl::FeaturesController#index as HTML
3000
+ Completed 200 OK in 0ms (Views: 0.1ms)
3001
+ -----------------------------------------------
3002
+ RolloutControlTest: test_list_existing_features
3003
+ -----------------------------------------------
3004
+ Started GET "/rollout/features" for 127.0.0.1 at 2014-11-12 12:00:55 -0800
3005
+ Processing by RolloutControl::FeaturesController#index as HTML
3006
+ Completed 200 OK in 0ms (Views: 0.1ms)
3007
+ Started GET "/rollout/features" for 127.0.0.1 at 2014-11-12 12:00:55 -0800
3008
+ Processing by RolloutControl::FeaturesController#index as HTML
3009
+ Completed 200 OK in 0ms (Views: 0.0ms)
3010
+ --------------------------------------------------
3011
+ RolloutControlTest: test_remove_group_from_feature
3012
+ --------------------------------------------------
3013
+ Started DELETE "/rollout/features/extra_sharp_knives/groups/experienced_chefs" for 127.0.0.1 at 2014-11-12 12:00:55 -0800
3014
+ Processing by RolloutControl::GroupsController#destroy as HTML
3015
+ Parameters: {"feature_id"=>"extra_sharp_knives", "id"=>"experienced_chefs"}
3016
+ Completed 204 No Content in 0ms
3017
+ -------------------------------------------------
3018
+ RolloutControlTest: test_remove_user_from_feature
3019
+ -------------------------------------------------
3020
+ Started DELETE "/rollout/features/potato_gun/users/45" for 127.0.0.1 at 2014-11-12 12:00:55 -0800
3021
+ Processing by RolloutControl::UsersController#destroy as HTML
3022
+ Parameters: {"feature_id"=>"potato_gun", "id"=>"45"}
3023
+ Completed 204 No Content in 0ms
3024
+ -------------------------------------
3025
+ RolloutControlTest: test_show_feature
3026
+ -------------------------------------
3027
+ Started GET "/rollout/features/kittens" for 127.0.0.1 at 2014-11-12 12:00:55 -0800
3028
+ Processing by RolloutControl::FeaturesController#show as HTML
3029
+ Parameters: {"id"=>"kittens"}
3030
+ Completed 200 OK in 0ms (Views: 0.1ms)
3031
+ Started GET "/rollout/features/kittens" for 127.0.0.1 at 2014-11-12 12:00:55 -0800
3032
+ Processing by RolloutControl::FeaturesController#show as HTML
3033
+ Parameters: {"id"=>"kittens"}
3034
+ Completed 200 OK in 0ms (Views: 0.1ms)
3035
+ Started GET "/rollout/features/kittens" for 127.0.0.1 at 2014-11-12 12:00:55 -0800
3036
+ Processing by RolloutControl::FeaturesController#show as HTML
3037
+ Parameters: {"id"=>"kittens"}
3038
+ Completed 200 OK in 0ms (Views: 0.1ms)
3039
+ --------------------------------------------------
3040
+ RolloutControlTest: test_update_feature_percentage
3041
+ --------------------------------------------------
3042
+ Started PATCH "/rollout/features/kittens" for 127.0.0.1 at 2014-11-12 12:00:55 -0800
3043
+ Processing by RolloutControl::FeaturesController#update as HTML
3044
+ Parameters: {"percentage"=>"65", "id"=>"kittens"}
3045
+ Completed 204 No Content in 0ms
3046
+ ------------------------------------------------
3047
+ RolloutControl::FeaturesControllerTest: test_wat
3048
+ ------------------------------------------------
3049
+ ---------------------------------------------
3050
+ RolloutControlTest: test_add_group_to_feature
3051
+ ---------------------------------------------
3052
+ Started POST "/rollout/features/extra_sharp_knives/groups" for 127.0.0.1 at 2014-11-12 12:01:07 -0800
3053
+ Processing by RolloutControl::GroupsController#create as HTML
3054
+ Parameters: {"group"=>"experienced_chefs", "feature_id"=>"extra_sharp_knives"}
3055
+ Completed 204 No Content in 0ms
3056
+ --------------------------------------------
3057
+ RolloutControlTest: test_add_user_to_feature
3058
+ --------------------------------------------
3059
+ Started POST "/rollout/features/potato_gun/users" for 127.0.0.1 at 2014-11-12 12:01:07 -0800
3060
+ Processing by RolloutControl::UsersController#create as HTML
3061
+ Parameters: {"user_id"=>"45", "feature_id"=>"potato_gun"}
3062
+ Completed 204 No Content in 0ms
3063
+ ------------------------------------------------------------------------------
3064
+ RolloutControlTest: test_attempt_to_activate_user_to_feature_without_a_user_id
3065
+ ------------------------------------------------------------------------------
3066
+ Started POST "/rollout/features/potato_gun/users" for 127.0.0.1 at 2014-11-12 12:01:07 -0800
3067
+ Processing by RolloutControl::UsersController#create as HTML
3068
+ Parameters: {"feature_id"=>"potato_gun"}
3069
+ Completed 400 Bad Request in 0ms
3070
+ -----------------------------------------------------------------------------
3071
+ RolloutControlTest: test_attempt_to_add_group_to_feature_without_a_group_name
3072
+ -----------------------------------------------------------------------------
3073
+ Started POST "/rollout/features/extra_sharp_knives/groups" for 127.0.0.1 at 2014-11-12 12:01:07 -0800
3074
+ Processing by RolloutControl::GroupsController#create as HTML
3075
+ Parameters: {"feature_id"=>"extra_sharp_knives"}
3076
+ Completed 400 Bad Request in 0ms
3077
+ --------------------------------------------
3078
+ RolloutControlTest: test_list_empty_features
3079
+ --------------------------------------------
3080
+ Started GET "/rollout/features" for 127.0.0.1 at 2014-11-12 12:01:07 -0800
3081
+ Processing by RolloutControl::FeaturesController#index as HTML
3082
+ Completed 200 OK in 0ms (Views: 0.1ms)
3083
+ -----------------------------------------------
3084
+ RolloutControlTest: test_list_existing_features
3085
+ -----------------------------------------------
3086
+ Started GET "/rollout/features" for 127.0.0.1 at 2014-11-12 12:01:07 -0800
3087
+ Processing by RolloutControl::FeaturesController#index as HTML
3088
+ Completed 200 OK in 0ms (Views: 0.0ms)
3089
+ Started GET "/rollout/features" for 127.0.0.1 at 2014-11-12 12:01:07 -0800
3090
+ Processing by RolloutControl::FeaturesController#index as HTML
3091
+ Completed 200 OK in 0ms (Views: 0.0ms)
3092
+ --------------------------------------------------
3093
+ RolloutControlTest: test_remove_group_from_feature
3094
+ --------------------------------------------------
3095
+ Started DELETE "/rollout/features/extra_sharp_knives/groups/experienced_chefs" for 127.0.0.1 at 2014-11-12 12:01:07 -0800
3096
+ Processing by RolloutControl::GroupsController#destroy as HTML
3097
+ Parameters: {"feature_id"=>"extra_sharp_knives", "id"=>"experienced_chefs"}
3098
+ Completed 204 No Content in 0ms
3099
+ -------------------------------------------------
3100
+ RolloutControlTest: test_remove_user_from_feature
3101
+ -------------------------------------------------
3102
+ Started DELETE "/rollout/features/potato_gun/users/45" for 127.0.0.1 at 2014-11-12 12:01:07 -0800
3103
+ Processing by RolloutControl::UsersController#destroy as HTML
3104
+ Parameters: {"feature_id"=>"potato_gun", "id"=>"45"}
3105
+ Completed 204 No Content in 0ms
3106
+ -------------------------------------
3107
+ RolloutControlTest: test_show_feature
3108
+ -------------------------------------
3109
+ Started GET "/rollout/features/kittens" for 127.0.0.1 at 2014-11-12 12:01:07 -0800
3110
+ Processing by RolloutControl::FeaturesController#show as HTML
3111
+ Parameters: {"id"=>"kittens"}
3112
+ Completed 200 OK in 0ms (Views: 0.1ms)
3113
+ Started GET "/rollout/features/kittens" for 127.0.0.1 at 2014-11-12 12:01:07 -0800
3114
+ Processing by RolloutControl::FeaturesController#show as HTML
3115
+ Parameters: {"id"=>"kittens"}
3116
+ Completed 200 OK in 0ms (Views: 0.1ms)
3117
+ Started GET "/rollout/features/kittens" for 127.0.0.1 at 2014-11-12 12:01:07 -0800
3118
+ Processing by RolloutControl::FeaturesController#show as HTML
3119
+ Parameters: {"id"=>"kittens"}
3120
+ Completed 200 OK in 0ms (Views: 0.1ms)
3121
+ --------------------------------------------------
3122
+ RolloutControlTest: test_update_feature_percentage
3123
+ --------------------------------------------------
3124
+ Started PATCH "/rollout/features/kittens" for 127.0.0.1 at 2014-11-12 12:01:07 -0800
3125
+ Processing by RolloutControl::FeaturesController#update as HTML
3126
+ Parameters: {"percentage"=>"65", "id"=>"kittens"}
3127
+ Completed 204 No Content in 0ms
3128
+ ---------------------------------------------
3129
+ RolloutControlTest: test_add_group_to_feature
3130
+ ---------------------------------------------
3131
+ Started POST "/rollout/features/extra_sharp_knives/groups" for 127.0.0.1 at 2014-11-12 12:01:24 -0800
3132
+ Processing by RolloutControl::GroupsController#create as HTML
3133
+ Parameters: {"group"=>"experienced_chefs", "feature_id"=>"extra_sharp_knives"}
3134
+ Completed 204 No Content in 0ms
3135
+ --------------------------------------------
3136
+ RolloutControlTest: test_add_user_to_feature
3137
+ --------------------------------------------
3138
+ Started POST "/rollout/features/potato_gun/users" for 127.0.0.1 at 2014-11-12 12:01:24 -0800
3139
+ Processing by RolloutControl::UsersController#create as HTML
3140
+ Parameters: {"user_id"=>"45", "feature_id"=>"potato_gun"}
3141
+ Completed 204 No Content in 0ms
3142
+ ------------------------------------------------------------------------------
3143
+ RolloutControlTest: test_attempt_to_activate_user_to_feature_without_a_user_id
3144
+ ------------------------------------------------------------------------------
3145
+ Started POST "/rollout/features/potato_gun/users" for 127.0.0.1 at 2014-11-12 12:01:24 -0800
3146
+ Processing by RolloutControl::UsersController#create as HTML
3147
+ Parameters: {"feature_id"=>"potato_gun"}
3148
+ Completed 400 Bad Request in 0ms
3149
+ -----------------------------------------------------------------------------
3150
+ RolloutControlTest: test_attempt_to_add_group_to_feature_without_a_group_name
3151
+ -----------------------------------------------------------------------------
3152
+ Started POST "/rollout/features/extra_sharp_knives/groups" for 127.0.0.1 at 2014-11-12 12:01:24 -0800
3153
+ Processing by RolloutControl::GroupsController#create as HTML
3154
+ Parameters: {"feature_id"=>"extra_sharp_knives"}
3155
+ Completed 400 Bad Request in 0ms
3156
+ --------------------------------------------
3157
+ RolloutControlTest: test_list_empty_features
3158
+ --------------------------------------------
3159
+ Started GET "/rollout/features" for 127.0.0.1 at 2014-11-12 12:01:24 -0800
3160
+ Processing by RolloutControl::FeaturesController#index as HTML
3161
+ Completed 200 OK in 0ms (Views: 0.1ms)
3162
+ -----------------------------------------------
3163
+ RolloutControlTest: test_list_existing_features
3164
+ -----------------------------------------------
3165
+ Started GET "/rollout/features" for 127.0.0.1 at 2014-11-12 12:01:24 -0800
3166
+ Processing by RolloutControl::FeaturesController#index as HTML
3167
+ Completed 200 OK in 0ms (Views: 0.0ms)
3168
+ Started GET "/rollout/features" for 127.0.0.1 at 2014-11-12 12:01:24 -0800
3169
+ Processing by RolloutControl::FeaturesController#index as HTML
3170
+ Completed 200 OK in 0ms (Views: 0.0ms)
3171
+ --------------------------------------------------
3172
+ RolloutControlTest: test_remove_group_from_feature
3173
+ --------------------------------------------------
3174
+ Started DELETE "/rollout/features/extra_sharp_knives/groups/experienced_chefs" for 127.0.0.1 at 2014-11-12 12:01:24 -0800
3175
+ Processing by RolloutControl::GroupsController#destroy as HTML
3176
+ Parameters: {"feature_id"=>"extra_sharp_knives", "id"=>"experienced_chefs"}
3177
+ Completed 204 No Content in 0ms
3178
+ -------------------------------------------------
3179
+ RolloutControlTest: test_remove_user_from_feature
3180
+ -------------------------------------------------
3181
+ Started DELETE "/rollout/features/potato_gun/users/45" for 127.0.0.1 at 2014-11-12 12:01:24 -0800
3182
+ Processing by RolloutControl::UsersController#destroy as HTML
3183
+ Parameters: {"feature_id"=>"potato_gun", "id"=>"45"}
3184
+ Completed 204 No Content in 0ms
3185
+ -------------------------------------
3186
+ RolloutControlTest: test_show_feature
3187
+ -------------------------------------
3188
+ Started GET "/rollout/features/kittens" for 127.0.0.1 at 2014-11-12 12:01:24 -0800
3189
+ Processing by RolloutControl::FeaturesController#show as HTML
3190
+ Parameters: {"id"=>"kittens"}
3191
+ Completed 200 OK in 0ms (Views: 0.1ms)
3192
+ Started GET "/rollout/features/kittens" for 127.0.0.1 at 2014-11-12 12:01:24 -0800
3193
+ Processing by RolloutControl::FeaturesController#show as HTML
3194
+ Parameters: {"id"=>"kittens"}
3195
+ Completed 200 OK in 0ms (Views: 0.1ms)
3196
+ Started GET "/rollout/features/kittens" for 127.0.0.1 at 2014-11-12 12:01:24 -0800
3197
+ Processing by RolloutControl::FeaturesController#show as HTML
3198
+ Parameters: {"id"=>"kittens"}
3199
+ Completed 200 OK in 0ms (Views: 0.1ms)
3200
+ --------------------------------------------------
3201
+ RolloutControlTest: test_update_feature_percentage
3202
+ --------------------------------------------------
3203
+ Started PATCH "/rollout/features/kittens" for 127.0.0.1 at 2014-11-12 12:01:24 -0800
3204
+ Processing by RolloutControl::FeaturesController#update as HTML
3205
+ Parameters: {"percentage"=>"65", "id"=>"kittens"}
3206
+ Completed 204 No Content in 0ms
3207
+ ------------------------------------------------
3208
+ RolloutControl::FeaturesControllerTest: test_wat
3209
+ ------------------------------------------------
3210
+ ------------------------------------------------
3211
+ RolloutControl::FeaturesControllerTest: test_wat
3212
+ ------------------------------------------------
3213
+ ---------------------------------------------
3214
+ RolloutControlTest: test_add_group_to_feature
3215
+ ---------------------------------------------
3216
+ Started POST "/rollout/features/extra_sharp_knives/groups" for 127.0.0.1 at 2014-11-12 12:01:50 -0800
3217
+ Processing by RolloutControl::GroupsController#create as HTML
3218
+ Parameters: {"group"=>"experienced_chefs", "feature_id"=>"extra_sharp_knives"}
3219
+ Completed 204 No Content in 0ms
3220
+ --------------------------------------------
3221
+ RolloutControlTest: test_add_user_to_feature
3222
+ --------------------------------------------
3223
+ Started POST "/rollout/features/potato_gun/users" for 127.0.0.1 at 2014-11-12 12:01:50 -0800
3224
+ Processing by RolloutControl::UsersController#create as HTML
3225
+ Parameters: {"user_id"=>"45", "feature_id"=>"potato_gun"}
3226
+ Completed 204 No Content in 0ms
3227
+ ------------------------------------------------------------------------------
3228
+ RolloutControlTest: test_attempt_to_activate_user_to_feature_without_a_user_id
3229
+ ------------------------------------------------------------------------------
3230
+ Started POST "/rollout/features/potato_gun/users" for 127.0.0.1 at 2014-11-12 12:01:50 -0800
3231
+ Processing by RolloutControl::UsersController#create as HTML
3232
+ Parameters: {"feature_id"=>"potato_gun"}
3233
+ Completed 400 Bad Request in 0ms
3234
+ -----------------------------------------------------------------------------
3235
+ RolloutControlTest: test_attempt_to_add_group_to_feature_without_a_group_name
3236
+ -----------------------------------------------------------------------------
3237
+ Started POST "/rollout/features/extra_sharp_knives/groups" for 127.0.0.1 at 2014-11-12 12:01:50 -0800
3238
+ Processing by RolloutControl::GroupsController#create as HTML
3239
+ Parameters: {"feature_id"=>"extra_sharp_knives"}
3240
+ Completed 400 Bad Request in 0ms
3241
+ --------------------------------------------
3242
+ RolloutControlTest: test_list_empty_features
3243
+ --------------------------------------------
3244
+ Started GET "/rollout/features" for 127.0.0.1 at 2014-11-12 12:01:50 -0800
3245
+ Processing by RolloutControl::FeaturesController#index as HTML
3246
+ Completed 200 OK in 0ms (Views: 0.1ms)
3247
+ -----------------------------------------------
3248
+ RolloutControlTest: test_list_existing_features
3249
+ -----------------------------------------------
3250
+ Started GET "/rollout/features" for 127.0.0.1 at 2014-11-12 12:01:50 -0800
3251
+ Processing by RolloutControl::FeaturesController#index as HTML
3252
+ Completed 200 OK in 0ms (Views: 0.0ms)
3253
+ Started GET "/rollout/features" for 127.0.0.1 at 2014-11-12 12:01:50 -0800
3254
+ Processing by RolloutControl::FeaturesController#index as HTML
3255
+ Completed 200 OK in 0ms (Views: 0.0ms)
3256
+ --------------------------------------------------
3257
+ RolloutControlTest: test_remove_group_from_feature
3258
+ --------------------------------------------------
3259
+ Started DELETE "/rollout/features/extra_sharp_knives/groups/experienced_chefs" for 127.0.0.1 at 2014-11-12 12:01:50 -0800
3260
+ Processing by RolloutControl::GroupsController#destroy as HTML
3261
+ Parameters: {"feature_id"=>"extra_sharp_knives", "id"=>"experienced_chefs"}
3262
+ Completed 204 No Content in 0ms
3263
+ -------------------------------------------------
3264
+ RolloutControlTest: test_remove_user_from_feature
3265
+ -------------------------------------------------
3266
+ Started DELETE "/rollout/features/potato_gun/users/45" for 127.0.0.1 at 2014-11-12 12:01:50 -0800
3267
+ Processing by RolloutControl::UsersController#destroy as HTML
3268
+ Parameters: {"feature_id"=>"potato_gun", "id"=>"45"}
3269
+ Completed 204 No Content in 0ms
3270
+ -------------------------------------
3271
+ RolloutControlTest: test_show_feature
3272
+ -------------------------------------
3273
+ Started GET "/rollout/features/kittens" for 127.0.0.1 at 2014-11-12 12:01:50 -0800
3274
+ Processing by RolloutControl::FeaturesController#show as HTML
3275
+ Parameters: {"id"=>"kittens"}
3276
+ Completed 200 OK in 0ms (Views: 0.1ms)
3277
+ Started GET "/rollout/features/kittens" for 127.0.0.1 at 2014-11-12 12:01:50 -0800
3278
+ Processing by RolloutControl::FeaturesController#show as HTML
3279
+ Parameters: {"id"=>"kittens"}
3280
+ Completed 200 OK in 0ms (Views: 0.1ms)
3281
+ Started GET "/rollout/features/kittens" for 127.0.0.1 at 2014-11-12 12:01:50 -0800
3282
+ Processing by RolloutControl::FeaturesController#show as HTML
3283
+ Parameters: {"id"=>"kittens"}
3284
+ Completed 200 OK in 0ms (Views: 0.1ms)
3285
+ --------------------------------------------------
3286
+ RolloutControlTest: test_update_feature_percentage
3287
+ --------------------------------------------------
3288
+ Started PATCH "/rollout/features/kittens" for 127.0.0.1 at 2014-11-12 12:01:50 -0800
3289
+ Processing by RolloutControl::FeaturesController#update as HTML
3290
+ Parameters: {"percentage"=>"65", "id"=>"kittens"}
3291
+ Completed 204 No Content in 0ms
3292
+ ---------------------------------------------
3293
+ RolloutControlTest: test_add_group_to_feature
3294
+ ---------------------------------------------
3295
+ Started POST "/rollout/features/extra_sharp_knives/groups" for 127.0.0.1 at 2014-11-12 12:01:58 -0800
3296
+ Processing by RolloutControl::GroupsController#create as HTML
3297
+ Parameters: {"group"=>"experienced_chefs", "feature_id"=>"extra_sharp_knives"}
3298
+ Completed 204 No Content in 0ms
3299
+ --------------------------------------------
3300
+ RolloutControlTest: test_add_user_to_feature
3301
+ --------------------------------------------
3302
+ Started POST "/rollout/features/potato_gun/users" for 127.0.0.1 at 2014-11-12 12:01:58 -0800
3303
+ Processing by RolloutControl::UsersController#create as HTML
3304
+ Parameters: {"user_id"=>"45", "feature_id"=>"potato_gun"}
3305
+ Completed 204 No Content in 0ms
3306
+ ------------------------------------------------------------------------------
3307
+ RolloutControlTest: test_attempt_to_activate_user_to_feature_without_a_user_id
3308
+ ------------------------------------------------------------------------------
3309
+ Started POST "/rollout/features/potato_gun/users" for 127.0.0.1 at 2014-11-12 12:01:58 -0800
3310
+ Processing by RolloutControl::UsersController#create as HTML
3311
+ Parameters: {"feature_id"=>"potato_gun"}
3312
+ Completed 400 Bad Request in 0ms
3313
+ -----------------------------------------------------------------------------
3314
+ RolloutControlTest: test_attempt_to_add_group_to_feature_without_a_group_name
3315
+ -----------------------------------------------------------------------------
3316
+ Started POST "/rollout/features/extra_sharp_knives/groups" for 127.0.0.1 at 2014-11-12 12:01:58 -0800
3317
+ Processing by RolloutControl::GroupsController#create as HTML
3318
+ Parameters: {"feature_id"=>"extra_sharp_knives"}
3319
+ Completed 400 Bad Request in 0ms
3320
+ --------------------------------------------
3321
+ RolloutControlTest: test_list_empty_features
3322
+ --------------------------------------------
3323
+ Started GET "/rollout/features" for 127.0.0.1 at 2014-11-12 12:01:58 -0800
3324
+ Processing by RolloutControl::FeaturesController#index as HTML
3325
+ Completed 200 OK in 0ms (Views: 0.1ms)
3326
+ -----------------------------------------------
3327
+ RolloutControlTest: test_list_existing_features
3328
+ -----------------------------------------------
3329
+ Started GET "/rollout/features" for 127.0.0.1 at 2014-11-12 12:01:58 -0800
3330
+ Processing by RolloutControl::FeaturesController#index as HTML
3331
+ Completed 200 OK in 0ms (Views: 0.1ms)
3332
+ Started GET "/rollout/features" for 127.0.0.1 at 2014-11-12 12:01:58 -0800
3333
+ Processing by RolloutControl::FeaturesController#index as HTML
3334
+ Completed 200 OK in 0ms (Views: 0.0ms)
3335
+ --------------------------------------------------
3336
+ RolloutControlTest: test_remove_group_from_feature
3337
+ --------------------------------------------------
3338
+ Started DELETE "/rollout/features/extra_sharp_knives/groups/experienced_chefs" for 127.0.0.1 at 2014-11-12 12:01:58 -0800
3339
+ Processing by RolloutControl::GroupsController#destroy as HTML
3340
+ Parameters: {"feature_id"=>"extra_sharp_knives", "id"=>"experienced_chefs"}
3341
+ Completed 204 No Content in 0ms
3342
+ -------------------------------------------------
3343
+ RolloutControlTest: test_remove_user_from_feature
3344
+ -------------------------------------------------
3345
+ Started DELETE "/rollout/features/potato_gun/users/45" for 127.0.0.1 at 2014-11-12 12:01:58 -0800
3346
+ Processing by RolloutControl::UsersController#destroy as HTML
3347
+ Parameters: {"feature_id"=>"potato_gun", "id"=>"45"}
3348
+ Completed 204 No Content in 0ms
3349
+ -------------------------------------
3350
+ RolloutControlTest: test_show_feature
3351
+ -------------------------------------
3352
+ Started GET "/rollout/features/kittens" for 127.0.0.1 at 2014-11-12 12:01:58 -0800
3353
+ Processing by RolloutControl::FeaturesController#show as HTML
3354
+ Parameters: {"id"=>"kittens"}
3355
+ Completed 200 OK in 0ms (Views: 0.1ms)
3356
+ Started GET "/rollout/features/kittens" for 127.0.0.1 at 2014-11-12 12:01:58 -0800
3357
+ Processing by RolloutControl::FeaturesController#show as HTML
3358
+ Parameters: {"id"=>"kittens"}
3359
+ Completed 200 OK in 0ms (Views: 0.1ms)
3360
+ Started GET "/rollout/features/kittens" for 127.0.0.1 at 2014-11-12 12:01:58 -0800
3361
+ Processing by RolloutControl::FeaturesController#show as HTML
3362
+ Parameters: {"id"=>"kittens"}
3363
+ Completed 200 OK in 0ms (Views: 0.1ms)
3364
+ --------------------------------------------------
3365
+ RolloutControlTest: test_update_feature_percentage
3366
+ --------------------------------------------------
3367
+ Started PATCH "/rollout/features/kittens" for 127.0.0.1 at 2014-11-12 12:01:58 -0800
3368
+ Processing by RolloutControl::FeaturesController#update as HTML
3369
+ Parameters: {"percentage"=>"65", "id"=>"kittens"}
3370
+ Completed 204 No Content in 0ms
3371
+ ------------------------------------------------
3372
+ RolloutControl::FeaturesControllerTest: test_wat
3373
+ ------------------------------------------------
3374
+ ------------------------------------------------
3375
+ RolloutControl::FeaturesControllerTest: test_wat
3376
+ ------------------------------------------------
3377
+ ---------------------------------------------
3378
+ RolloutControlTest: test_add_group_to_feature
3379
+ ---------------------------------------------
3380
+ Started POST "/rollout/features/extra_sharp_knives/groups" for 127.0.0.1 at 2014-11-12 12:02:06 -0800
3381
+ Processing by RolloutControl::GroupsController#create as HTML
3382
+ Parameters: {"group"=>"experienced_chefs", "feature_id"=>"extra_sharp_knives"}
3383
+ Completed 204 No Content in 0ms
3384
+ --------------------------------------------
3385
+ RolloutControlTest: test_add_user_to_feature
3386
+ --------------------------------------------
3387
+ Started POST "/rollout/features/potato_gun/users" for 127.0.0.1 at 2014-11-12 12:02:06 -0800
3388
+ Processing by RolloutControl::UsersController#create as HTML
3389
+ Parameters: {"user_id"=>"45", "feature_id"=>"potato_gun"}
3390
+ Completed 204 No Content in 0ms
3391
+ ------------------------------------------------------------------------------
3392
+ RolloutControlTest: test_attempt_to_activate_user_to_feature_without_a_user_id
3393
+ ------------------------------------------------------------------------------
3394
+ Started POST "/rollout/features/potato_gun/users" for 127.0.0.1 at 2014-11-12 12:02:06 -0800
3395
+ Processing by RolloutControl::UsersController#create as HTML
3396
+ Parameters: {"feature_id"=>"potato_gun"}
3397
+ Completed 400 Bad Request in 0ms
3398
+ -----------------------------------------------------------------------------
3399
+ RolloutControlTest: test_attempt_to_add_group_to_feature_without_a_group_name
3400
+ -----------------------------------------------------------------------------
3401
+ Started POST "/rollout/features/extra_sharp_knives/groups" for 127.0.0.1 at 2014-11-12 12:02:06 -0800
3402
+ Processing by RolloutControl::GroupsController#create as HTML
3403
+ Parameters: {"feature_id"=>"extra_sharp_knives"}
3404
+ Completed 400 Bad Request in 0ms
3405
+ --------------------------------------------
3406
+ RolloutControlTest: test_list_empty_features
3407
+ --------------------------------------------
3408
+ Started GET "/rollout/features" for 127.0.0.1 at 2014-11-12 12:02:06 -0800
3409
+ Processing by RolloutControl::FeaturesController#index as HTML
3410
+ Completed 200 OK in 0ms (Views: 0.1ms)
3411
+ -----------------------------------------------
3412
+ RolloutControlTest: test_list_existing_features
3413
+ -----------------------------------------------
3414
+ Started GET "/rollout/features" for 127.0.0.1 at 2014-11-12 12:02:06 -0800
3415
+ Processing by RolloutControl::FeaturesController#index as HTML
3416
+ Completed 200 OK in 0ms (Views: 0.0ms)
3417
+ Started GET "/rollout/features" for 127.0.0.1 at 2014-11-12 12:02:06 -0800
3418
+ Processing by RolloutControl::FeaturesController#index as HTML
3419
+ Completed 200 OK in 0ms (Views: 0.1ms)
3420
+ --------------------------------------------------
3421
+ RolloutControlTest: test_remove_group_from_feature
3422
+ --------------------------------------------------
3423
+ Started DELETE "/rollout/features/extra_sharp_knives/groups/experienced_chefs" for 127.0.0.1 at 2014-11-12 12:02:06 -0800
3424
+ Processing by RolloutControl::GroupsController#destroy as HTML
3425
+ Parameters: {"feature_id"=>"extra_sharp_knives", "id"=>"experienced_chefs"}
3426
+ Completed 204 No Content in 0ms
3427
+ -------------------------------------------------
3428
+ RolloutControlTest: test_remove_user_from_feature
3429
+ -------------------------------------------------
3430
+ Started DELETE "/rollout/features/potato_gun/users/45" for 127.0.0.1 at 2014-11-12 12:02:06 -0800
3431
+ Processing by RolloutControl::UsersController#destroy as HTML
3432
+ Parameters: {"feature_id"=>"potato_gun", "id"=>"45"}
3433
+ Completed 204 No Content in 0ms
3434
+ -------------------------------------
3435
+ RolloutControlTest: test_show_feature
3436
+ -------------------------------------
3437
+ Started GET "/rollout/features/kittens" for 127.0.0.1 at 2014-11-12 12:02:06 -0800
3438
+ Processing by RolloutControl::FeaturesController#show as HTML
3439
+ Parameters: {"id"=>"kittens"}
3440
+ Completed 200 OK in 0ms (Views: 0.1ms)
3441
+ Started GET "/rollout/features/kittens" for 127.0.0.1 at 2014-11-12 12:02:06 -0800
3442
+ Processing by RolloutControl::FeaturesController#show as HTML
3443
+ Parameters: {"id"=>"kittens"}
3444
+ Completed 200 OK in 0ms (Views: 0.1ms)
3445
+ Started GET "/rollout/features/kittens" for 127.0.0.1 at 2014-11-12 12:02:06 -0800
3446
+ Processing by RolloutControl::FeaturesController#show as HTML
3447
+ Parameters: {"id"=>"kittens"}
3448
+ Completed 200 OK in 0ms (Views: 0.1ms)
3449
+ --------------------------------------------------
3450
+ RolloutControlTest: test_update_feature_percentage
3451
+ --------------------------------------------------
3452
+ Started PATCH "/rollout/features/kittens" for 127.0.0.1 at 2014-11-12 12:02:06 -0800
3453
+ Processing by RolloutControl::FeaturesController#update as HTML
3454
+ Parameters: {"percentage"=>"65", "id"=>"kittens"}
3455
+ Completed 204 No Content in 0ms
3456
+ ---------------------------------------------
3457
+ RolloutControlTest: test_add_group_to_feature
3458
+ ---------------------------------------------
3459
+ Started POST "/rollout/features/extra_sharp_knives/groups" for 127.0.0.1 at 2014-11-12 12:23:34 -0800
3460
+ Processing by RolloutControl::GroupsController#create as HTML
3461
+ Parameters: {"group"=>"experienced_chefs", "feature_id"=>"extra_sharp_knives"}
3462
+ Completed 204 No Content in 0ms
3463
+ --------------------------------------------
3464
+ RolloutControlTest: test_add_user_to_feature
3465
+ --------------------------------------------
3466
+ Started POST "/rollout/features/potato_gun/users" for 127.0.0.1 at 2014-11-12 12:23:35 -0800
3467
+ Processing by RolloutControl::UsersController#create as HTML
3468
+ Parameters: {"user_id"=>"45", "feature_id"=>"potato_gun"}
3469
+ Completed 204 No Content in 0ms
3470
+ ------------------------------------------------------------------------------
3471
+ RolloutControlTest: test_attempt_to_activate_user_to_feature_without_a_user_id
3472
+ ------------------------------------------------------------------------------
3473
+ Started POST "/rollout/features/potato_gun/users" for 127.0.0.1 at 2014-11-12 12:23:35 -0800
3474
+ Processing by RolloutControl::UsersController#create as HTML
3475
+ Parameters: {"feature_id"=>"potato_gun"}
3476
+ Completed 400 Bad Request in 0ms
3477
+ -----------------------------------------------------------------------------
3478
+ RolloutControlTest: test_attempt_to_add_group_to_feature_without_a_group_name
3479
+ -----------------------------------------------------------------------------
3480
+ Started POST "/rollout/features/extra_sharp_knives/groups" for 127.0.0.1 at 2014-11-12 12:23:35 -0800
3481
+ Processing by RolloutControl::GroupsController#create as HTML
3482
+ Parameters: {"feature_id"=>"extra_sharp_knives"}
3483
+ Completed 400 Bad Request in 0ms
3484
+ --------------------------------------------
3485
+ RolloutControlTest: test_list_empty_features
3486
+ --------------------------------------------
3487
+ Started GET "/rollout/features" for 127.0.0.1 at 2014-11-12 12:23:35 -0800
3488
+ Processing by RolloutControl::FeaturesController#index as HTML
3489
+ Completed 200 OK in 0ms (Views: 0.1ms)
3490
+ -----------------------------------------------
3491
+ RolloutControlTest: test_list_existing_features
3492
+ -----------------------------------------------
3493
+ Started GET "/rollout/features" for 127.0.0.1 at 2014-11-12 12:23:35 -0800
3494
+ Processing by RolloutControl::FeaturesController#index as HTML
3495
+ Completed 200 OK in 0ms (Views: 0.1ms)
3496
+ Started GET "/rollout/features" for 127.0.0.1 at 2014-11-12 12:23:35 -0800
3497
+ Processing by RolloutControl::FeaturesController#index as HTML
3498
+ Completed 200 OK in 0ms (Views: 0.0ms)
3499
+ --------------------------------------------------
3500
+ RolloutControlTest: test_remove_group_from_feature
3501
+ --------------------------------------------------
3502
+ Started DELETE "/rollout/features/extra_sharp_knives/groups/experienced_chefs" for 127.0.0.1 at 2014-11-12 12:23:35 -0800
3503
+ Processing by RolloutControl::GroupsController#destroy as HTML
3504
+ Parameters: {"feature_id"=>"extra_sharp_knives", "id"=>"experienced_chefs"}
3505
+ Completed 204 No Content in 0ms
3506
+ -------------------------------------------------
3507
+ RolloutControlTest: test_remove_user_from_feature
3508
+ -------------------------------------------------
3509
+ Started DELETE "/rollout/features/potato_gun/users/45" for 127.0.0.1 at 2014-11-12 12:23:35 -0800
3510
+ Processing by RolloutControl::UsersController#destroy as HTML
3511
+ Parameters: {"feature_id"=>"potato_gun", "id"=>"45"}
3512
+ Completed 204 No Content in 0ms
3513
+ -------------------------------------
3514
+ RolloutControlTest: test_show_feature
3515
+ -------------------------------------
3516
+ Started GET "/rollout/features/kittens" for 127.0.0.1 at 2014-11-12 12:23:35 -0800
3517
+ Processing by RolloutControl::FeaturesController#show as HTML
3518
+ Parameters: {"id"=>"kittens"}
3519
+ Completed 200 OK in 0ms (Views: 0.1ms)
3520
+ Started GET "/rollout/features/kittens" for 127.0.0.1 at 2014-11-12 12:23:35 -0800
3521
+ Processing by RolloutControl::FeaturesController#show as HTML
3522
+ Parameters: {"id"=>"kittens"}
3523
+ Completed 200 OK in 0ms (Views: 0.1ms)
3524
+ Started GET "/rollout/features/kittens" for 127.0.0.1 at 2014-11-12 12:23:35 -0800
3525
+ Processing by RolloutControl::FeaturesController#show as HTML
3526
+ Parameters: {"id"=>"kittens"}
3527
+ Completed 200 OK in 0ms (Views: 0.1ms)
3528
+ --------------------------------------------------
3529
+ RolloutControlTest: test_update_feature_percentage
3530
+ --------------------------------------------------
3531
+ Started PATCH "/rollout/features/kittens" for 127.0.0.1 at 2014-11-12 12:23:35 -0800
3532
+ Processing by RolloutControl::FeaturesController#update as HTML
3533
+ Parameters: {"percentage"=>"65", "id"=>"kittens"}
3534
+ Completed 204 No Content in 0ms
3535
+ ------------------------------------------------
3536
+ RolloutControl::FeaturesControllerTest: test_wat
3537
+ ------------------------------------------------
3538
+ ------------------------------------------------
3539
+ RolloutControl::FeaturesControllerTest: test_wat
3540
+ ------------------------------------------------
3541
+ ---------------------------------------------
3542
+ RolloutControlTest: test_add_group_to_feature
3543
+ ---------------------------------------------
3544
+ Started POST "/rollout/features/extra_sharp_knives/groups" for 127.0.0.1 at 2014-11-12 12:25:30 -0800
3545
+ Processing by RolloutControl::GroupsController#create as HTML
3546
+ Parameters: {"group"=>"experienced_chefs", "feature_id"=>"extra_sharp_knives"}
3547
+ Completed 204 No Content in 0ms
3548
+ --------------------------------------------
3549
+ RolloutControlTest: test_add_user_to_feature
3550
+ --------------------------------------------
3551
+ Started POST "/rollout/features/potato_gun/users" for 127.0.0.1 at 2014-11-12 12:25:30 -0800
3552
+ Processing by RolloutControl::UsersController#create as HTML
3553
+ Parameters: {"user_id"=>"45", "feature_id"=>"potato_gun"}
3554
+ Completed 204 No Content in 0ms
3555
+ ------------------------------------------------------------------------------
3556
+ RolloutControlTest: test_attempt_to_activate_user_to_feature_without_a_user_id
3557
+ ------------------------------------------------------------------------------
3558
+ Started POST "/rollout/features/potato_gun/users" for 127.0.0.1 at 2014-11-12 12:25:30 -0800
3559
+ Processing by RolloutControl::UsersController#create as HTML
3560
+ Parameters: {"feature_id"=>"potato_gun"}
3561
+ Completed 400 Bad Request in 0ms
3562
+ -----------------------------------------------------------------------------
3563
+ RolloutControlTest: test_attempt_to_add_group_to_feature_without_a_group_name
3564
+ -----------------------------------------------------------------------------
3565
+ Started POST "/rollout/features/extra_sharp_knives/groups" for 127.0.0.1 at 2014-11-12 12:25:30 -0800
3566
+ Processing by RolloutControl::GroupsController#create as HTML
3567
+ Parameters: {"feature_id"=>"extra_sharp_knives"}
3568
+ Completed 400 Bad Request in 0ms
3569
+ --------------------------------------------
3570
+ RolloutControlTest: test_list_empty_features
3571
+ --------------------------------------------
3572
+ Started GET "/rollout/features" for 127.0.0.1 at 2014-11-12 12:25:30 -0800
3573
+ Processing by RolloutControl::FeaturesController#index as HTML
3574
+ Completed 200 OK in 0ms (Views: 0.1ms)
3575
+ -----------------------------------------------
3576
+ RolloutControlTest: test_list_existing_features
3577
+ -----------------------------------------------
3578
+ Started GET "/rollout/features" for 127.0.0.1 at 2014-11-12 12:25:30 -0800
3579
+ Processing by RolloutControl::FeaturesController#index as HTML
3580
+ Completed 200 OK in 0ms (Views: 0.1ms)
3581
+ --------------------------------------------------
3582
+ RolloutControlTest: test_remove_group_from_feature
3583
+ --------------------------------------------------
3584
+ Started DELETE "/rollout/features/extra_sharp_knives/groups/experienced_chefs" for 127.0.0.1 at 2014-11-12 12:25:30 -0800
3585
+ Processing by RolloutControl::GroupsController#destroy as HTML
3586
+ Parameters: {"feature_id"=>"extra_sharp_knives", "id"=>"experienced_chefs"}
3587
+ Completed 204 No Content in 0ms
3588
+ -------------------------------------------------
3589
+ RolloutControlTest: test_remove_user_from_feature
3590
+ -------------------------------------------------
3591
+ Started DELETE "/rollout/features/potato_gun/users/45" for 127.0.0.1 at 2014-11-12 12:25:30 -0800
3592
+ Processing by RolloutControl::UsersController#destroy as HTML
3593
+ Parameters: {"feature_id"=>"potato_gun", "id"=>"45"}
3594
+ Completed 204 No Content in 0ms
3595
+ -------------------------------------
3596
+ RolloutControlTest: test_show_feature
3597
+ -------------------------------------
3598
+ Started GET "/rollout/features/kittens" for 127.0.0.1 at 2014-11-12 12:25:30 -0800
3599
+ Processing by RolloutControl::FeaturesController#show as HTML
3600
+ Parameters: {"id"=>"kittens"}
3601
+ Completed 200 OK in 0ms (Views: 0.2ms)
3602
+ Started GET "/rollout/features/kittens" for 127.0.0.1 at 2014-11-12 12:25:30 -0800
3603
+ Processing by RolloutControl::FeaturesController#show as HTML
3604
+ Parameters: {"id"=>"kittens"}
3605
+ Completed 200 OK in 0ms (Views: 0.1ms)
3606
+ Started GET "/rollout/features/kittens" for 127.0.0.1 at 2014-11-12 12:25:30 -0800
3607
+ Processing by RolloutControl::FeaturesController#show as HTML
3608
+ Parameters: {"id"=>"kittens"}
3609
+ Completed 200 OK in 0ms (Views: 0.1ms)
3610
+ --------------------------------------------------
3611
+ RolloutControlTest: test_update_feature_percentage
3612
+ --------------------------------------------------
3613
+ Started PATCH "/rollout/features/kittens" for 127.0.0.1 at 2014-11-12 12:25:30 -0800
3614
+ Processing by RolloutControl::FeaturesController#update as HTML
3615
+ Parameters: {"percentage"=>"65", "id"=>"kittens"}
3616
+ Completed 204 No Content in 0ms
3617
+ ---------------------------------------------
3618
+ RolloutControlTest: test_add_group_to_feature
3619
+ ---------------------------------------------
3620
+ Started POST "/rollout/features/extra_sharp_knives/groups" for 127.0.0.1 at 2014-11-12 12:26:10 -0800
3621
+ Processing by RolloutControl::GroupsController#create as HTML
3622
+ Parameters: {"group"=>"experienced_chefs", "feature_id"=>"extra_sharp_knives"}
3623
+ Completed 204 No Content in 0ms
3624
+ --------------------------------------------
3625
+ RolloutControlTest: test_add_user_to_feature
3626
+ --------------------------------------------
3627
+ Started POST "/rollout/features/potato_gun/users" for 127.0.0.1 at 2014-11-12 12:26:10 -0800
3628
+ Processing by RolloutControl::UsersController#create as HTML
3629
+ Parameters: {"user_id"=>"45", "feature_id"=>"potato_gun"}
3630
+ Completed 204 No Content in 0ms
3631
+ ------------------------------------------------------------------------------
3632
+ RolloutControlTest: test_attempt_to_activate_user_to_feature_without_a_user_id
3633
+ ------------------------------------------------------------------------------
3634
+ Started POST "/rollout/features/potato_gun/users" for 127.0.0.1 at 2014-11-12 12:26:10 -0800
3635
+ Processing by RolloutControl::UsersController#create as HTML
3636
+ Parameters: {"feature_id"=>"potato_gun"}
3637
+ Completed 400 Bad Request in 0ms
3638
+ -----------------------------------------------------------------------------
3639
+ RolloutControlTest: test_attempt_to_add_group_to_feature_without_a_group_name
3640
+ -----------------------------------------------------------------------------
3641
+ Started POST "/rollout/features/extra_sharp_knives/groups" for 127.0.0.1 at 2014-11-12 12:26:10 -0800
3642
+ Processing by RolloutControl::GroupsController#create as HTML
3643
+ Parameters: {"feature_id"=>"extra_sharp_knives"}
3644
+ Completed 400 Bad Request in 0ms
3645
+ --------------------------------------------
3646
+ RolloutControlTest: test_list_empty_features
3647
+ --------------------------------------------
3648
+ Started GET "/rollout/features" for 127.0.0.1 at 2014-11-12 12:26:10 -0800
3649
+ Processing by RolloutControl::FeaturesController#index as HTML
3650
+ Completed 200 OK in 0ms (Views: 0.1ms)
3651
+ -----------------------------------------------
3652
+ RolloutControlTest: test_list_existing_features
3653
+ -----------------------------------------------
3654
+ Started GET "/rollout/features" for 127.0.0.1 at 2014-11-12 12:26:10 -0800
3655
+ Processing by RolloutControl::FeaturesController#index as HTML
3656
+ Completed 200 OK in 0ms (Views: 0.0ms)
3657
+ Started GET "/rollout/features" for 127.0.0.1 at 2014-11-12 12:26:10 -0800
3658
+ Processing by RolloutControl::FeaturesController#index as HTML
3659
+ Completed 200 OK in 0ms (Views: 0.0ms)
3660
+ --------------------------------------------------
3661
+ RolloutControlTest: test_remove_group_from_feature
3662
+ --------------------------------------------------
3663
+ Started DELETE "/rollout/features/extra_sharp_knives/groups/experienced_chefs" for 127.0.0.1 at 2014-11-12 12:26:10 -0800
3664
+ Processing by RolloutControl::GroupsController#destroy as HTML
3665
+ Parameters: {"feature_id"=>"extra_sharp_knives", "id"=>"experienced_chefs"}
3666
+ Completed 204 No Content in 0ms
3667
+ -------------------------------------------------
3668
+ RolloutControlTest: test_remove_user_from_feature
3669
+ -------------------------------------------------
3670
+ Started DELETE "/rollout/features/potato_gun/users/45" for 127.0.0.1 at 2014-11-12 12:26:10 -0800
3671
+ Processing by RolloutControl::UsersController#destroy as HTML
3672
+ Parameters: {"feature_id"=>"potato_gun", "id"=>"45"}
3673
+ Completed 204 No Content in 0ms
3674
+ -------------------------------------
3675
+ RolloutControlTest: test_show_feature
3676
+ -------------------------------------
3677
+ Started GET "/rollout/features/kittens" for 127.0.0.1 at 2014-11-12 12:26:10 -0800
3678
+ Processing by RolloutControl::FeaturesController#show as HTML
3679
+ Parameters: {"id"=>"kittens"}
3680
+ Completed 200 OK in 0ms (Views: 0.1ms)
3681
+ Started GET "/rollout/features/kittens" for 127.0.0.1 at 2014-11-12 12:26:10 -0800
3682
+ Processing by RolloutControl::FeaturesController#show as HTML
3683
+ Parameters: {"id"=>"kittens"}
3684
+ Completed 200 OK in 0ms (Views: 0.1ms)
3685
+ Started GET "/rollout/features/kittens" for 127.0.0.1 at 2014-11-12 12:26:10 -0800
3686
+ Processing by RolloutControl::FeaturesController#show as HTML
3687
+ Parameters: {"id"=>"kittens"}
3688
+ Completed 200 OK in 0ms (Views: 0.1ms)
3689
+ --------------------------------------------------
3690
+ RolloutControlTest: test_update_feature_percentage
3691
+ --------------------------------------------------
3692
+ Started PATCH "/rollout/features/kittens" for 127.0.0.1 at 2014-11-12 12:26:10 -0800
3693
+ Processing by RolloutControl::FeaturesController#update as HTML
3694
+ Parameters: {"percentage"=>"65", "id"=>"kittens"}
3695
+ Completed 204 No Content in 0ms
3696
+ ------------------------------------------------
3697
+ RolloutControl::FeaturesControllerTest: test_wat
3698
+ ------------------------------------------------
3699
+ ---------------------------------------------
3700
+ RolloutControlTest: test_add_group_to_feature
3701
+ ---------------------------------------------
3702
+ Started POST "/rollout/features/extra_sharp_knives/groups" for 127.0.0.1 at 2014-11-12 12:28:46 -0800
3703
+ Processing by RolloutControl::GroupsController#create as HTML
3704
+ Parameters: {"group"=>"experienced_chefs", "feature_id"=>"extra_sharp_knives"}
3705
+ Completed 204 No Content in 0ms
3706
+ --------------------------------------------
3707
+ RolloutControlTest: test_add_user_to_feature
3708
+ --------------------------------------------
3709
+ Started POST "/rollout/features/potato_gun/users" for 127.0.0.1 at 2014-11-12 12:28:46 -0800
3710
+ Processing by RolloutControl::UsersController#create as HTML
3711
+ Parameters: {"user_id"=>"45", "feature_id"=>"potato_gun"}
3712
+ Completed 204 No Content in 0ms
3713
+ ------------------------------------------------------------------------------
3714
+ RolloutControlTest: test_attempt_to_activate_user_to_feature_without_a_user_id
3715
+ ------------------------------------------------------------------------------
3716
+ Started POST "/rollout/features/potato_gun/users" for 127.0.0.1 at 2014-11-12 12:28:46 -0800
3717
+ Processing by RolloutControl::UsersController#create as HTML
3718
+ Parameters: {"feature_id"=>"potato_gun"}
3719
+ Completed 400 Bad Request in 0ms
3720
+ -----------------------------------------------------------------------------
3721
+ RolloutControlTest: test_attempt_to_add_group_to_feature_without_a_group_name
3722
+ -----------------------------------------------------------------------------
3723
+ Started POST "/rollout/features/extra_sharp_knives/groups" for 127.0.0.1 at 2014-11-12 12:28:46 -0800
3724
+ Processing by RolloutControl::GroupsController#create as HTML
3725
+ Parameters: {"feature_id"=>"extra_sharp_knives"}
3726
+ Completed 400 Bad Request in 0ms
3727
+ --------------------------------------------
3728
+ RolloutControlTest: test_list_empty_features
3729
+ --------------------------------------------
3730
+ Started GET "/rollout/features" for 127.0.0.1 at 2014-11-12 12:28:46 -0800
3731
+ Processing by RolloutControl::FeaturesController#index as HTML
3732
+ Completed 200 OK in 0ms (Views: 0.1ms)
3733
+ -----------------------------------------------
3734
+ RolloutControlTest: test_list_existing_features
3735
+ -----------------------------------------------
3736
+ Started GET "/rollout/features" for 127.0.0.1 at 2014-11-12 12:28:46 -0800
3737
+ Processing by RolloutControl::FeaturesController#index as HTML
3738
+ Completed 200 OK in 0ms (Views: 0.0ms)
3739
+ Started GET "/rollout/features" for 127.0.0.1 at 2014-11-12 12:28:46 -0800
3740
+ Processing by RolloutControl::FeaturesController#index as HTML
3741
+ Completed 200 OK in 0ms (Views: 0.1ms)
3742
+ --------------------------------------------------
3743
+ RolloutControlTest: test_remove_group_from_feature
3744
+ --------------------------------------------------
3745
+ Started DELETE "/rollout/features/extra_sharp_knives/groups/experienced_chefs" for 127.0.0.1 at 2014-11-12 12:28:46 -0800
3746
+ Processing by RolloutControl::GroupsController#destroy as HTML
3747
+ Parameters: {"feature_id"=>"extra_sharp_knives", "id"=>"experienced_chefs"}
3748
+ Completed 204 No Content in 0ms
3749
+ -------------------------------------------------
3750
+ RolloutControlTest: test_remove_user_from_feature
3751
+ -------------------------------------------------
3752
+ Started DELETE "/rollout/features/potato_gun/users/45" for 127.0.0.1 at 2014-11-12 12:28:46 -0800
3753
+ Processing by RolloutControl::UsersController#destroy as HTML
3754
+ Parameters: {"feature_id"=>"potato_gun", "id"=>"45"}
3755
+ Completed 204 No Content in 0ms
3756
+ -------------------------------------
3757
+ RolloutControlTest: test_show_feature
3758
+ -------------------------------------
3759
+ Started GET "/rollout/features/kittens" for 127.0.0.1 at 2014-11-12 12:28:46 -0800
3760
+ Processing by RolloutControl::FeaturesController#show as HTML
3761
+ Parameters: {"id"=>"kittens"}
3762
+ Completed 200 OK in 0ms (Views: 0.1ms)
3763
+ Started GET "/rollout/features/kittens" for 127.0.0.1 at 2014-11-12 12:28:46 -0800
3764
+ Processing by RolloutControl::FeaturesController#show as HTML
3765
+ Parameters: {"id"=>"kittens"}
3766
+ Completed 200 OK in 0ms (Views: 0.1ms)
3767
+ Started GET "/rollout/features/kittens" for 127.0.0.1 at 2014-11-12 12:28:46 -0800
3768
+ Processing by RolloutControl::FeaturesController#show as HTML
3769
+ Parameters: {"id"=>"kittens"}
3770
+ Completed 200 OK in 0ms (Views: 0.1ms)
3771
+ --------------------------------------------------
3772
+ RolloutControlTest: test_update_feature_percentage
3773
+ --------------------------------------------------
3774
+ Started PATCH "/rollout/features/kittens" for 127.0.0.1 at 2014-11-12 12:28:46 -0800
3775
+ Processing by RolloutControl::FeaturesController#update as HTML
3776
+ Parameters: {"percentage"=>"65", "id"=>"kittens"}
3777
+ Completed 204 No Content in 0ms
3778
+ ------------------------------------------------
3779
+ RolloutControl::FeaturesControllerTest: test_wat
3780
+ ------------------------------------------------