uncle 0.0.1 → 0.0.2

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 9170488f008dca517e6adc6d3ece0ec4ad481724
4
- data.tar.gz: 7ec12913eec83ae5d9c58607e7a9140cd6d42309
3
+ metadata.gz: 336be1f9d0b34f0d33084cf21907b845aaf0428a
4
+ data.tar.gz: 1937bad55cb10178520575b5782201ff1c249b73
5
5
  SHA512:
6
- metadata.gz: 44cdea50410f1fee666521d7b04a9aaa305dfd6bbe5935e49c9113f2e042a8d8afa09f2d51ec1be365fc43ffc489e0372d3cc864e7dd23ea8afafdcfc421dfcd
7
- data.tar.gz: c099ec17d6818f23dad39efd63ecb93b1af38490dae00bec44e184bb036d4e2d0d665a81bf4e6f483dda9bd3e6427bf605e124928ef5c4e8a8f26823a73f3483
6
+ metadata.gz: 4ec38753e03f0d585ae533245fa59f310b9b38849a065d181451ee45cc9a10b854085471d5bb6407fa17ff7a2403e84c3d64f0dc09f63c3ad62700e3aab499f1
7
+ data.tar.gz: 8baa9240f8661d4b8338737f47e5fa261880746c8cf3a674c9b06cac24e72d8e0ab93fc34466fa404de91883170107e0a99c4f1f38646479c74a9c3a58e04f57
@@ -1,2 +1,6 @@
1
+ require 'uncle/railtie'
2
+ require 'uncle/request'
3
+ require 'uncle/resource_urls'
4
+
1
5
  module Uncle
2
6
  end
@@ -0,0 +1,17 @@
1
+ module Uncle
2
+ class Railtie < Rails::Railtie
3
+ initializer 'uncle.initialize' do
4
+ ActionController::Base.send :include, Uncle::ResourceUrls
5
+
6
+ ActionDispatch::Routing::Trie::Node.class_eval do
7
+ def to_key_path
8
+ @parent ? @parent.to_key_path.push(@key) : [@key]
9
+ end
10
+ end
11
+
12
+ ActionDispatch::Routing::RouteSet::Dispatcher.class_eval do
13
+ attr_reader :defaults
14
+ end
15
+ end
16
+ end
17
+ end
@@ -0,0 +1,85 @@
1
+ module Uncle
2
+ class Request < Struct.new(:request, :controller)
3
+ def parent_resource_name
4
+ node = node_for_path(parent_resource_path)
5
+ name = controller_name_for_path(parent_resource_path)
6
+
7
+ node.key =~ /[._]?id\Z/ ? name.singularize : name
8
+ end
9
+
10
+ def parent_resource_url
11
+ request.protocol + request.host_with_port + parent_resource_path
12
+ end
13
+
14
+ def parent_resource_path
15
+ @parent_resource_path ||= begin
16
+ node = node_for_path(request.path)
17
+ key_path = node.parent.to_key_path
18
+
19
+ key_path.map! { |segment| request.params[segment.tr(':', '')] || segment }
20
+ key_path.join('/')
21
+ end
22
+ end
23
+
24
+ def child_resource_names
25
+ routes = child_resource_nodes.flat_map(&:value).select { |r| r.matches?(request) }
26
+
27
+ routes.map { |r| r.app.defaults[:controller] }
28
+ end
29
+
30
+ def child_resource_urls
31
+ params = request.params.dup
32
+ key_paths = child_resource_nodes.map(&:to_key_path)
33
+
34
+ params["#{resource_name}_id"] = params.delete('id') if params.has_key?('id')
35
+
36
+ key_paths.map! do |kp|
37
+ kp.map! { |segment| params[segment.tr(':', '')] || segment }
38
+ request.protocol + request.host_with_port + kp.join('/')
39
+ end
40
+ end
41
+
42
+ private
43
+
44
+ def child_resource_nodes
45
+ @child_resource_nodes ||= begin
46
+ nodes = node_for_path(request.path).siblings
47
+ node = nodes.detect { |c| c.key == ":#{resource_name}_id" }
48
+
49
+ node.children
50
+ end
51
+ end
52
+
53
+ def resource_name
54
+ controller_name.singularize
55
+ end
56
+
57
+ def controller_name
58
+ controller.controller_name
59
+ end
60
+
61
+ def routeset
62
+ Rails.application.routes
63
+ end
64
+
65
+ def controller_name_for_path(path)
66
+ route = routeset.routes.match(path).
67
+ flat_map(&:value).
68
+ detect { |r| r.path.to_regexp === path && r.matches?(request) }
69
+
70
+ route.app.defaults[:controller]
71
+ end
72
+
73
+ def node_for_path(path)
74
+ routeset.routes.match(path).detect(&node_elimination_block(path))
75
+ end
76
+
77
+ def node_elimination_block(path)
78
+ lambda do |node|
79
+ node.value.one? do |r|
80
+ r.path.to_regexp === path && r.matches?(request)
81
+ end
82
+ end
83
+ end
84
+ end
85
+ end
@@ -0,0 +1,21 @@
1
+ module Uncle
2
+ module ResourceUrls
3
+ def parent_resource
4
+ { uncle_request.parent_resource_name => uncle_request.parent_resource_url }
5
+ end
6
+
7
+ def child_resources
8
+ uncle_request.child_resources
9
+ end
10
+
11
+ def child_resources
12
+ Hash[uncle_request.child_resource_names.zip(uncle_request.child_resource_urls)]
13
+ end
14
+
15
+ private
16
+
17
+ def uncle_request
18
+ @uncle_request ||= Uncle::Request.new(request, self)
19
+ end
20
+ end
21
+ end
@@ -1,3 +1,3 @@
1
1
  module Uncle
2
- VERSION = "0.0.1"
2
+ VERSION = "0.0.2"
3
3
  end
@@ -0,0 +1,2 @@
1
+ // Place all the behaviors and hooks related to the matching controller here.
2
+ // All this logic will automatically be available in application.js.
@@ -0,0 +1,2 @@
1
+ // Place all the behaviors and hooks related to the matching controller here.
2
+ // All this logic will automatically be available in application.js.
@@ -0,0 +1,2 @@
1
+ // Place all the behaviors and hooks related to the matching controller here.
2
+ // All this logic will automatically be available in application.js.
@@ -0,0 +1,4 @@
1
+ /*
2
+ Place all the styles related to the matching controller here.
3
+ They will automatically be included in application.css.
4
+ */
@@ -0,0 +1,4 @@
1
+ /*
2
+ Place all the styles related to the matching controller here.
3
+ They will automatically be included in application.css.
4
+ */
@@ -0,0 +1,4 @@
1
+ /*
2
+ Place all the styles related to the matching controller here.
3
+ They will automatically be included in application.css.
4
+ */
@@ -0,0 +1,2 @@
1
+ class DooDadsController < ApplicationController
2
+ end
@@ -0,0 +1,5 @@
1
+ class GizmosController < ApplicationController
2
+ def index
3
+ render json: parent_resource
4
+ end
5
+ end
@@ -0,0 +1,5 @@
1
+ class ThingiesController < ApplicationController
2
+ def show
3
+ render json: parent_resource
4
+ end
5
+ end
@@ -0,0 +1,9 @@
1
+ class WidgetsController < ApplicationController
2
+ def index
3
+ head :ok
4
+ end
5
+
6
+ def show
7
+ render json: child_resources
8
+ end
9
+ end
@@ -0,0 +1,2 @@
1
+ module DooDadsHelper
2
+ end
@@ -0,0 +1,2 @@
1
+ module GizmosHelper
2
+ end
@@ -0,0 +1,2 @@
1
+ module WidgetsHelper
2
+ end
@@ -1,56 +1,8 @@
1
1
  Dummy::Application.routes.draw do
2
- # The priority is based upon order of creation: first created -> highest priority.
3
- # See how all your routes lay out with "rake routes".
2
+ resources :widgets, except: %i<new edit> do
3
+ resources :gizmos, except: %i<new edit>
4
+ resources :doo_dads, except: %i<new edit>
5
+ end
4
6
 
5
- # You can have the root of your site routed with "root"
6
- # root 'welcome#index'
7
-
8
- # Example of regular route:
9
- # get 'products/:id' => 'catalog#view'
10
-
11
- # Example of named route that can be invoked with purchase_url(id: product.id)
12
- # get 'products/:id/purchase' => 'catalog#purchase', as: :purchase
13
-
14
- # Example resource route (maps HTTP verbs to controller actions automatically):
15
- # resources :products
16
-
17
- # Example resource route with options:
18
- # resources :products do
19
- # member do
20
- # get 'short'
21
- # post 'toggle'
22
- # end
23
- #
24
- # collection do
25
- # get 'sold'
26
- # end
27
- # end
28
-
29
- # Example resource route with sub-resources:
30
- # resources :products do
31
- # resources :comments, :sales
32
- # resource :seller
33
- # end
34
-
35
- # Example resource route with more complex sub-resources:
36
- # resources :products do
37
- # resources :comments
38
- # resources :sales do
39
- # get 'recent', on: :collection
40
- # end
41
- # end
42
-
43
- # Example resource route with concerns:
44
- # concern :toggleable do
45
- # post 'toggle'
46
- # end
47
- # resources :posts, concerns: :toggleable
48
- # resources :photos, concerns: :toggleable
49
-
50
- # Example resource route within a namespace:
51
- # namespace :admin do
52
- # # Directs /admin/products/* to Admin::ProductsController
53
- # # (app/controllers/admin/products_controller.rb)
54
- # resources :products
55
- # end
7
+ resources :thingies, except: %i<new edit>
56
8
  end
File without changes
File without changes
@@ -0,0 +1,2901 @@
1
+  (0.1ms) begin transaction
2
+ -------------------
3
+ UncleTest: test_lol
4
+ -------------------
5
+  (0.1ms) rollback transaction
6
+  (0.1ms) begin transaction
7
+ -------------------
8
+ UncleTest: test_lol
9
+ -------------------
10
+  (0.1ms) rollback transaction
11
+  (0.1ms) begin transaction
12
+ -------------------
13
+ UncleTest: test_lol
14
+ -------------------
15
+  (0.1ms) rollback transaction
16
+  (0.1ms) begin transaction
17
+ --------------------------------------------------------
18
+ UncleTest: test_returning_the_url_of_the_parent_resource
19
+ --------------------------------------------------------
20
+  (0.0ms) rollback transaction
21
+  (0.1ms) begin transaction
22
+ --------------------------------------------------------
23
+ UncleTest: test_returning_the_url_of_the_parent_resource
24
+ --------------------------------------------------------
25
+  (0.0ms) rollback transaction
26
+  (0.1ms) begin transaction
27
+ --------------------------------------------------------
28
+ UncleTest: test_returning_the_url_of_the_parent_resource
29
+ --------------------------------------------------------
30
+ Started GET "/widgets/1/gizmos" for 127.0.0.1 at 2014-04-02 21:24:10 +0100
31
+ Processing by GizmosController#index as HTML
32
+ Parameters: {"widget_id"=>"1"}
33
+ Rendered text template (0.0ms)
34
+ Completed 200 OK in 7ms (Views: 6.6ms | ActiveRecord: 0.0ms)
35
+  (0.1ms) rollback transaction
36
+  (0.1ms) begin transaction
37
+ --------------------------------------------------------
38
+ UncleTest: test_returning_the_url_of_the_parent_resource
39
+ --------------------------------------------------------
40
+ Started GET "/widgets/1/gizmos" for 127.0.0.1 at 2014-04-02 21:24:48 +0100
41
+ Processing by GizmosController#index as HTML
42
+ Parameters: {"widget_id"=>"1"}
43
+ Rendered text template (0.0ms)
44
+ Completed 200 OK in 6ms (Views: 5.8ms | ActiveRecord: 0.0ms)
45
+  (0.1ms) rollback transaction
46
+  (0.1ms) begin transaction
47
+ -------------------------------------------------------------------
48
+ UncleIntegrationTest: test_returning_the_url_of_the_parent_resource
49
+ -------------------------------------------------------------------
50
+ Started GET "/widgets/1/gizmos" for 127.0.0.1 at 2014-04-02 21:34:43 +0100
51
+ Processing by GizmosController#index as HTML
52
+ Parameters: {"widget_id"=>"1"}
53
+ Rendered text template (0.0ms)
54
+ Completed 200 OK in 7ms (Views: 6.9ms | ActiveRecord: 0.0ms)
55
+  (0.3ms) rollback transaction
56
+  (0.0ms) begin transaction
57
+ ----------------------------------------------------------------------------------------------
58
+ UncleIntegrationTest: test_returning_the_urls_of_children_resources_from_a_collection_resource
59
+ ----------------------------------------------------------------------------------------------
60
+  (0.0ms) rollback transaction
61
+  (0.0ms) begin transaction
62
+ --------------------------------------------------------------------------------------------
63
+ UncleIntegrationTest: test_returning_the_urls_of_children_resources_from_a_resource_instance
64
+ --------------------------------------------------------------------------------------------
65
+  (0.0ms) rollback transaction
66
+  (0.1ms) begin transaction
67
+ -------------------------------------------------------------------
68
+ UncleIntegrationTest: test_returning_the_url_of_the_parent_resource
69
+ -------------------------------------------------------------------
70
+ Started GET "/widgets/1/gizmos" for 127.0.0.1 at 2014-04-02 21:34:55 +0100
71
+ Processing by GizmosController#index as HTML
72
+ Parameters: {"widget_id"=>"1"}
73
+ Rendered text template (0.0ms)
74
+ Completed 200 OK in 4ms (Views: 4.1ms | ActiveRecord: 0.0ms)
75
+  (0.2ms) rollback transaction
76
+  (0.1ms) begin transaction
77
+ ----------------------------------------------------------------------------------------------
78
+ UncleIntegrationTest: test_returning_the_urls_of_children_resources_from_a_collection_resource
79
+ ----------------------------------------------------------------------------------------------
80
+  (0.0ms) rollback transaction
81
+  (0.1ms) begin transaction
82
+ --------------------------------------------------------------------------------------------
83
+ UncleIntegrationTest: test_returning_the_urls_of_children_resources_from_a_resource_instance
84
+ --------------------------------------------------------------------------------------------
85
+  (0.0ms) rollback transaction
86
+  (0.1ms) begin transaction
87
+ -------------------------------------------------------------------
88
+ UncleIntegrationTest: test_returning_the_url_of_the_parent_resource
89
+ -------------------------------------------------------------------
90
+ Started GET "/widgets/1/gizmos" for 127.0.0.1 at 2014-04-02 21:35:39 +0100
91
+ Processing by GizmosController#index as HTML
92
+ Parameters: {"widget_id"=>"1"}
93
+ Rendered text template (0.0ms)
94
+ Completed 200 OK in 6ms (Views: 5.4ms | ActiveRecord: 0.0ms)
95
+  (0.2ms) rollback transaction
96
+  (0.1ms) begin transaction
97
+ ----------------------------------------------------------------------------------------------
98
+ UncleIntegrationTest: test_returning_the_urls_of_children_resources_from_a_collection_resource
99
+ ----------------------------------------------------------------------------------------------
100
+  (0.1ms) rollback transaction
101
+  (0.1ms) begin transaction
102
+ --------------------------------------------------------------------------------------------
103
+ UncleIntegrationTest: test_returning_the_urls_of_children_resources_from_a_resource_instance
104
+ --------------------------------------------------------------------------------------------
105
+  (0.1ms) rollback transaction
106
+  (0.1ms) begin transaction
107
+ -------------------------------------------------------------------
108
+ UncleIntegrationTest: test_returning_the_url_of_the_parent_resource
109
+ -------------------------------------------------------------------
110
+ Started GET "/widgets/1/gizmos" for 127.0.0.1 at 2014-04-02 21:43:03 +0100
111
+ Processing by GizmosController#index as HTML
112
+ Parameters: {"widget_id"=>"1"}
113
+ Rendered text template (0.0ms)
114
+ Completed 200 OK in 4ms (Views: 3.9ms | ActiveRecord: 0.0ms)
115
+  (0.2ms) rollback transaction
116
+  (0.1ms) begin transaction
117
+ ----------------------------------------------------------------------------------------------
118
+ UncleIntegrationTest: test_returning_the_urls_of_children_resources_from_a_collection_resource
119
+ ----------------------------------------------------------------------------------------------
120
+ Started GET "/widgets" for 127.0.0.1 at 2014-04-02 21:43:03 +0100
121
+  (0.1ms) rollback transaction
122
+  (0.1ms) begin transaction
123
+ --------------------------------------------------------------------------------------------
124
+ UncleIntegrationTest: test_returning_the_urls_of_children_resources_from_a_resource_instance
125
+ --------------------------------------------------------------------------------------------
126
+ Started GET "/widgets/1" for 127.0.0.1 at 2014-04-02 21:43:03 +0100
127
+  (0.1ms) rollback transaction
128
+  (0.1ms) begin transaction
129
+ -------------------------------------------------------------------
130
+ UncleIntegrationTest: test_returning_the_url_of_the_parent_resource
131
+ -------------------------------------------------------------------
132
+ Started GET "/widgets/1/gizmos" for 127.0.0.1 at 2014-04-02 21:43:44 +0100
133
+ Processing by GizmosController#index as HTML
134
+ Parameters: {"widget_id"=>"1"}
135
+ Rendered text template (0.0ms)
136
+ Completed 200 OK in 4ms (Views: 3.6ms | ActiveRecord: 0.0ms)
137
+  (0.1ms) rollback transaction
138
+  (0.1ms) begin transaction
139
+ ----------------------------------------------------------------------------------------------
140
+ UncleIntegrationTest: test_returning_the_urls_of_children_resources_from_a_collection_resource
141
+ ----------------------------------------------------------------------------------------------
142
+ Started GET "/widgets" for 127.0.0.1 at 2014-04-02 21:43:44 +0100
143
+ Processing by WidgetsController#index as HTML
144
+ Completed 500 Internal Server Error in 3ms
145
+  (0.1ms) rollback transaction
146
+  (0.1ms) begin transaction
147
+ --------------------------------------------------------------------------------------------
148
+ UncleIntegrationTest: test_returning_the_urls_of_children_resources_from_a_resource_instance
149
+ --------------------------------------------------------------------------------------------
150
+ Started GET "/widgets/1" for 127.0.0.1 at 2014-04-02 21:43:44 +0100
151
+ Processing by WidgetsController#show as HTML
152
+ Parameters: {"id"=>"1"}
153
+ Completed 500 Internal Server Error in 1ms
154
+  (0.1ms) rollback transaction
155
+  (0.1ms) begin transaction
156
+ -------------------------------------------------------------------
157
+ UncleIntegrationTest: test_returning_the_url_of_the_parent_resource
158
+ -------------------------------------------------------------------
159
+ Started GET "/widgets/1/gizmos" for 127.0.0.1 at 2014-04-02 21:43:58 +0100
160
+ Processing by GizmosController#index as HTML
161
+ Parameters: {"widget_id"=>"1"}
162
+ Rendered text template (0.0ms)
163
+ Completed 200 OK in 4ms (Views: 3.8ms | ActiveRecord: 0.0ms)
164
+  (0.1ms) rollback transaction
165
+  (0.0ms) begin transaction
166
+ ----------------------------------------------------------------------------------------------
167
+ UncleIntegrationTest: test_returning_the_urls_of_children_resources_from_a_collection_resource
168
+ ----------------------------------------------------------------------------------------------
169
+ Started GET "/widgets" for 127.0.0.1 at 2014-04-02 21:43:58 +0100
170
+ Processing by WidgetsController#index as HTML
171
+ Completed 500 Internal Server Error in 3ms
172
+  (0.1ms) rollback transaction
173
+  (0.0ms) begin transaction
174
+ --------------------------------------------------------------------------------------------
175
+ UncleIntegrationTest: test_returning_the_urls_of_children_resources_from_a_resource_instance
176
+ --------------------------------------------------------------------------------------------
177
+ Started GET "/widgets/1" for 127.0.0.1 at 2014-04-02 21:43:58 +0100
178
+ Processing by WidgetsController#show as HTML
179
+ Parameters: {"id"=>"1"}
180
+ Completed 500 Internal Server Error in 1ms
181
+  (0.1ms) rollback transaction
182
+  (0.1ms) begin transaction
183
+ -------------------------------------------------------------------
184
+ UncleIntegrationTest: test_returning_the_url_of_the_parent_resource
185
+ -------------------------------------------------------------------
186
+ Started GET "/widgets/1/gizmos" for 127.0.0.1 at 2014-04-02 21:45:33 +0100
187
+ Processing by GizmosController#index as HTML
188
+ Parameters: {"widget_id"=>"1"}
189
+ Completed 500 Internal Server Error in 1ms
190
+  (0.1ms) rollback transaction
191
+  (0.1ms) begin transaction
192
+ ----------------------------------------------------------------------------------------------
193
+ UncleIntegrationTest: test_returning_the_urls_of_children_resources_from_a_collection_resource
194
+ ----------------------------------------------------------------------------------------------
195
+ Started GET "/widgets" for 127.0.0.1 at 2014-04-02 21:45:33 +0100
196
+ Processing by WidgetsController#index as HTML
197
+ Completed 500 Internal Server Error in 5ms
198
+  (0.1ms) rollback transaction
199
+  (0.1ms) begin transaction
200
+ --------------------------------------------------------------------------------------------
201
+ UncleIntegrationTest: test_returning_the_urls_of_children_resources_from_a_resource_instance
202
+ --------------------------------------------------------------------------------------------
203
+ Started GET "/widgets/1" for 127.0.0.1 at 2014-04-02 21:45:33 +0100
204
+ Processing by WidgetsController#show as HTML
205
+ Parameters: {"id"=>"1"}
206
+ Completed 500 Internal Server Error in 1ms
207
+  (0.0ms) rollback transaction
208
+  (0.1ms) begin transaction
209
+ -------------------------------------------------------------------
210
+ UncleIntegrationTest: test_returning_the_url_of_the_parent_resource
211
+ -------------------------------------------------------------------
212
+ Started GET "/widgets/1/gizmos" for 127.0.0.1 at 2014-04-02 21:46:04 +0100
213
+ Processing by GizmosController#index as HTML
214
+ Parameters: {"widget_id"=>"1"}
215
+ Completed 500 Internal Server Error in 1ms
216
+  (0.1ms) rollback transaction
217
+  (0.0ms) begin transaction
218
+ ----------------------------------------------------------------------------------------------
219
+ UncleIntegrationTest: test_returning_the_urls_of_children_resources_from_a_collection_resource
220
+ ----------------------------------------------------------------------------------------------
221
+ Started GET "/widgets" for 127.0.0.1 at 2014-04-02 21:46:04 +0100
222
+ Processing by WidgetsController#index as HTML
223
+ Completed 500 Internal Server Error in 5ms
224
+  (0.1ms) rollback transaction
225
+  (0.1ms) begin transaction
226
+ --------------------------------------------------------------------------------------------
227
+ UncleIntegrationTest: test_returning_the_urls_of_children_resources_from_a_resource_instance
228
+ --------------------------------------------------------------------------------------------
229
+ Started GET "/widgets/1" for 127.0.0.1 at 2014-04-02 21:46:04 +0100
230
+ Processing by WidgetsController#show as HTML
231
+ Parameters: {"id"=>"1"}
232
+ Completed 500 Internal Server Error in 2ms
233
+  (0.1ms) rollback transaction
234
+  (0.1ms) begin transaction
235
+ -------------------------------------------------------------------
236
+ UncleIntegrationTest: test_returning_the_url_of_the_parent_resource
237
+ -------------------------------------------------------------------
238
+ Started GET "/widgets/1/gizmos" for 127.0.0.1 at 2014-04-02 21:46:44 +0100
239
+ Processing by GizmosController#index as HTML
240
+ Parameters: {"widget_id"=>"1"}
241
+ Completed 500 Internal Server Error in 0ms
242
+  (0.1ms) rollback transaction
243
+  (0.0ms) begin transaction
244
+ ----------------------------------------------------------------------------------------------
245
+ UncleIntegrationTest: test_returning_the_urls_of_children_resources_from_a_collection_resource
246
+ ----------------------------------------------------------------------------------------------
247
+ Started GET "/widgets" for 127.0.0.1 at 2014-04-02 21:46:44 +0100
248
+ Processing by WidgetsController#index as HTML
249
+ Completed 500 Internal Server Error in 5ms
250
+  (0.1ms) rollback transaction
251
+  (0.0ms) begin transaction
252
+ --------------------------------------------------------------------------------------------
253
+ UncleIntegrationTest: test_returning_the_urls_of_children_resources_from_a_resource_instance
254
+ --------------------------------------------------------------------------------------------
255
+ Started GET "/widgets/1" for 127.0.0.1 at 2014-04-02 21:46:44 +0100
256
+ Processing by WidgetsController#show as HTML
257
+ Parameters: {"id"=>"1"}
258
+ Completed 500 Internal Server Error in 1ms
259
+  (0.1ms) rollback transaction
260
+  (0.1ms) begin transaction
261
+ -------------------------------------------------------------------
262
+ UncleIntegrationTest: test_returning_the_url_of_the_parent_resource
263
+ -------------------------------------------------------------------
264
+ Started GET "/widgets/1/gizmos" for 127.0.0.1 at 2014-04-02 21:46:52 +0100
265
+ Processing by GizmosController#index as HTML
266
+ Parameters: {"widget_id"=>"1"}
267
+ Completed 500 Internal Server Error in 0ms
268
+  (0.1ms) rollback transaction
269
+  (0.1ms) begin transaction
270
+ ----------------------------------------------------------------------------------------------
271
+ UncleIntegrationTest: test_returning_the_urls_of_children_resources_from_a_collection_resource
272
+ ----------------------------------------------------------------------------------------------
273
+ Started GET "/widgets" for 127.0.0.1 at 2014-04-02 21:46:52 +0100
274
+ Processing by WidgetsController#index as HTML
275
+ Completed 500 Internal Server Error in 8ms
276
+  (0.1ms) rollback transaction
277
+  (0.0ms) begin transaction
278
+ --------------------------------------------------------------------------------------------
279
+ UncleIntegrationTest: test_returning_the_urls_of_children_resources_from_a_resource_instance
280
+ --------------------------------------------------------------------------------------------
281
+ Started GET "/widgets/1" for 127.0.0.1 at 2014-04-02 21:46:52 +0100
282
+ Processing by WidgetsController#show as HTML
283
+ Parameters: {"id"=>"1"}
284
+ Completed 500 Internal Server Error in 1ms
285
+  (0.0ms) rollback transaction
286
+  (0.1ms) begin transaction
287
+ -------------------------------------------------------------------
288
+ UncleIntegrationTest: test_returning_the_url_of_the_parent_resource
289
+ -------------------------------------------------------------------
290
+ Started GET "/widgets/1/gizmos" for 127.0.0.1 at 2014-04-02 21:47:03 +0100
291
+ Processing by GizmosController#index as HTML
292
+ Parameters: {"widget_id"=>"1"}
293
+ Completed 500 Internal Server Error in 0ms
294
+  (0.1ms) rollback transaction
295
+  (0.0ms) begin transaction
296
+ ----------------------------------------------------------------------------------------------
297
+ UncleIntegrationTest: test_returning_the_urls_of_children_resources_from_a_collection_resource
298
+ ----------------------------------------------------------------------------------------------
299
+ Started GET "/widgets" for 127.0.0.1 at 2014-04-02 21:47:03 +0100
300
+ Processing by WidgetsController#index as HTML
301
+ Completed 500 Internal Server Error in 5ms
302
+  (0.1ms) rollback transaction
303
+  (0.0ms) begin transaction
304
+ --------------------------------------------------------------------------------------------
305
+ UncleIntegrationTest: test_returning_the_urls_of_children_resources_from_a_resource_instance
306
+ --------------------------------------------------------------------------------------------
307
+ Started GET "/widgets/1" for 127.0.0.1 at 2014-04-02 21:47:03 +0100
308
+ Processing by WidgetsController#show as HTML
309
+ Parameters: {"id"=>"1"}
310
+ Completed 500 Internal Server Error in 1ms
311
+  (0.0ms) rollback transaction
312
+  (0.1ms) begin transaction
313
+ -------------------------------------------------------------------
314
+ UncleIntegrationTest: test_returning_the_url_of_the_parent_resource
315
+ -------------------------------------------------------------------
316
+ Started GET "/widgets/1/gizmos" for 127.0.0.1 at 2014-04-02 21:47:31 +0100
317
+ Processing by GizmosController#index as HTML
318
+ Parameters: {"widget_id"=>"1"}
319
+ Completed 500 Internal Server Error in 0ms
320
+  (0.1ms) rollback transaction
321
+  (0.1ms) begin transaction
322
+ ----------------------------------------------------------------------------------------------
323
+ UncleIntegrationTest: test_returning_the_urls_of_children_resources_from_a_collection_resource
324
+ ----------------------------------------------------------------------------------------------
325
+ Started GET "/widgets" for 127.0.0.1 at 2014-04-02 21:47:31 +0100
326
+ Processing by WidgetsController#index as HTML
327
+ Completed 500 Internal Server Error in 5ms
328
+  (0.0ms) rollback transaction
329
+  (0.0ms) begin transaction
330
+ --------------------------------------------------------------------------------------------
331
+ UncleIntegrationTest: test_returning_the_urls_of_children_resources_from_a_resource_instance
332
+ --------------------------------------------------------------------------------------------
333
+ Started GET "/widgets/1" for 127.0.0.1 at 2014-04-02 21:47:31 +0100
334
+ Processing by WidgetsController#show as HTML
335
+ Parameters: {"id"=>"1"}
336
+ Completed 500 Internal Server Error in 1ms
337
+  (0.0ms) rollback transaction
338
+  (0.1ms) begin transaction
339
+ -------------------------------------------------------------------
340
+ UncleIntegrationTest: test_returning_the_url_of_the_parent_resource
341
+ -------------------------------------------------------------------
342
+ Started GET "/widgets/1/gizmos" for 127.0.0.1 at 2014-04-02 21:47:52 +0100
343
+ Processing by GizmosController#index as HTML
344
+ Parameters: {"widget_id"=>"1"}
345
+ Completed 500 Internal Server Error in 0ms
346
+  (0.1ms) rollback transaction
347
+  (0.0ms) begin transaction
348
+ ----------------------------------------------------------------------------------------------
349
+ UncleIntegrationTest: test_returning_the_urls_of_children_resources_from_a_collection_resource
350
+ ----------------------------------------------------------------------------------------------
351
+ Started GET "/widgets" for 127.0.0.1 at 2014-04-02 21:47:52 +0100
352
+ Processing by WidgetsController#index as HTML
353
+ Completed 200 OK in 0ms (ActiveRecord: 0.0ms)
354
+  (0.0ms) rollback transaction
355
+  (0.0ms) begin transaction
356
+ --------------------------------------------------------------------------------------------
357
+ UncleIntegrationTest: test_returning_the_urls_of_children_resources_from_a_resource_instance
358
+ --------------------------------------------------------------------------------------------
359
+ Started GET "/widgets/1" for 127.0.0.1 at 2014-04-02 21:47:52 +0100
360
+ Processing by WidgetsController#show as HTML
361
+ Parameters: {"id"=>"1"}
362
+ Completed 200 OK in 0ms (ActiveRecord: 0.0ms)
363
+  (0.0ms) rollback transaction
364
+  (0.1ms) begin transaction
365
+ -------------------------------------------------------------------
366
+ UncleIntegrationTest: test_returning_the_url_of_the_parent_resource
367
+ -------------------------------------------------------------------
368
+ Started GET "/widgets/1/gizmos" for 127.0.0.1 at 2014-04-02 21:49:05 +0100
369
+ Processing by GizmosController#index as HTML
370
+ Parameters: {"widget_id"=>"1"}
371
+ Completed 500 Internal Server Error in 4ms
372
+  (0.1ms) rollback transaction
373
+  (0.1ms) begin transaction
374
+ ----------------------------------------------------------------------------------------------
375
+ UncleIntegrationTest: test_returning_the_urls_of_children_resources_from_a_collection_resource
376
+ ----------------------------------------------------------------------------------------------
377
+ Started GET "/widgets" for 127.0.0.1 at 2014-04-02 21:49:05 +0100
378
+ Processing by WidgetsController#index as HTML
379
+ Completed 200 OK in 0ms (ActiveRecord: 0.0ms)
380
+  (0.0ms) rollback transaction
381
+  (0.1ms) begin transaction
382
+ --------------------------------------------------------------------------------------------
383
+ UncleIntegrationTest: test_returning_the_urls_of_children_resources_from_a_resource_instance
384
+ --------------------------------------------------------------------------------------------
385
+ Started GET "/widgets/1" for 127.0.0.1 at 2014-04-02 21:49:05 +0100
386
+ Processing by WidgetsController#show as HTML
387
+ Parameters: {"id"=>"1"}
388
+ Completed 200 OK in 0ms (ActiveRecord: 0.0ms)
389
+  (0.0ms) rollback transaction
390
+  (0.1ms) begin transaction
391
+ -------------------------------------------------------------------
392
+ UncleIntegrationTest: test_returning_the_url_of_the_parent_resource
393
+ -------------------------------------------------------------------
394
+ Started GET "/widgets/1/gizmos" for 127.0.0.1 at 2014-04-02 21:50:31 +0100
395
+ Processing by GizmosController#index as HTML
396
+ Parameters: {"widget_id"=>"1"}
397
+ Rendered text template (0.0ms)
398
+ Completed 200 OK in 4ms (Views: 3.8ms | ActiveRecord: 0.0ms)
399
+  (0.2ms) rollback transaction
400
+  (0.1ms) begin transaction
401
+ ----------------------------------------------------------------------------------------------
402
+ UncleIntegrationTest: test_returning_the_urls_of_children_resources_from_a_collection_resource
403
+ ----------------------------------------------------------------------------------------------
404
+ Started GET "/widgets" for 127.0.0.1 at 2014-04-02 21:50:31 +0100
405
+ Processing by WidgetsController#index as HTML
406
+ Completed 200 OK in 0ms (ActiveRecord: 0.0ms)
407
+  (0.1ms) rollback transaction
408
+  (0.1ms) begin transaction
409
+ --------------------------------------------------------------------------------------------
410
+ UncleIntegrationTest: test_returning_the_urls_of_children_resources_from_a_resource_instance
411
+ --------------------------------------------------------------------------------------------
412
+ Started GET "/widgets/1" for 127.0.0.1 at 2014-04-02 21:50:31 +0100
413
+ Processing by WidgetsController#show as HTML
414
+ Parameters: {"id"=>"1"}
415
+ Completed 200 OK in 0ms (ActiveRecord: 0.0ms)
416
+  (0.1ms) rollback transaction
417
+  (0.1ms) begin transaction
418
+ -------------------------------------------------------------------
419
+ UncleIntegrationTest: test_returning_the_url_of_the_parent_resource
420
+ -------------------------------------------------------------------
421
+ Started GET "/widgets/1/gizmos" for 127.0.0.1 at 2014-04-02 21:51:39 +0100
422
+ Processing by GizmosController#index as HTML
423
+ Parameters: {"widget_id"=>"1"}
424
+ Rendered text template (0.0ms)
425
+ Completed 200 OK in 4ms (Views: 3.6ms | ActiveRecord: 0.0ms)
426
+  (0.1ms) rollback transaction
427
+  (0.0ms) begin transaction
428
+ ----------------------------------------------------------------------------------------------
429
+ UncleIntegrationTest: test_returning_the_urls_of_children_resources_from_a_collection_resource
430
+ ----------------------------------------------------------------------------------------------
431
+ Started GET "/widgets" for 127.0.0.1 at 2014-04-02 21:51:39 +0100
432
+ Processing by WidgetsController#index as HTML
433
+ Completed 200 OK in 0ms (ActiveRecord: 0.0ms)
434
+  (0.1ms) rollback transaction
435
+  (0.0ms) begin transaction
436
+ --------------------------------------------------------------------------------------------
437
+ UncleIntegrationTest: test_returning_the_urls_of_children_resources_from_a_resource_instance
438
+ --------------------------------------------------------------------------------------------
439
+ Started GET "/widgets/1" for 127.0.0.1 at 2014-04-02 21:51:39 +0100
440
+ Processing by WidgetsController#show as HTML
441
+ Parameters: {"id"=>"1"}
442
+ Completed 200 OK in 0ms (ActiveRecord: 0.0ms)
443
+  (0.1ms) rollback transaction
444
+  (0.1ms) begin transaction
445
+ -------------------------------------------------------------------
446
+ UncleIntegrationTest: test_returning_the_url_of_the_parent_resource
447
+ -------------------------------------------------------------------
448
+ Started GET "/widgets/1/gizmos" for 127.0.0.1 at 2014-04-02 21:59:03 +0100
449
+ Processing by GizmosController#index as HTML
450
+ Parameters: {"widget_id"=>"1"}
451
+ Completed 500 Internal Server Error in 0ms
452
+  (0.1ms) rollback transaction
453
+  (0.0ms) begin transaction
454
+ ----------------------------------------------------------------------------------------------
455
+ UncleIntegrationTest: test_returning_the_urls_of_children_resources_from_a_collection_resource
456
+ ----------------------------------------------------------------------------------------------
457
+ Started GET "/widgets" for 127.0.0.1 at 2014-04-02 21:59:03 +0100
458
+ Processing by WidgetsController#index as HTML
459
+ Completed 200 OK in 0ms (ActiveRecord: 0.0ms)
460
+  (0.1ms) rollback transaction
461
+  (0.0ms) begin transaction
462
+ --------------------------------------------------------------------------------------------
463
+ UncleIntegrationTest: test_returning_the_urls_of_children_resources_from_a_resource_instance
464
+ --------------------------------------------------------------------------------------------
465
+ Started GET "/widgets/1" for 127.0.0.1 at 2014-04-02 21:59:03 +0100
466
+ Processing by WidgetsController#show as HTML
467
+ Parameters: {"id"=>"1"}
468
+ Completed 200 OK in 0ms (ActiveRecord: 0.0ms)
469
+  (0.0ms) rollback transaction
470
+  (0.1ms) begin transaction
471
+ -------------------------------------------------------------------
472
+ UncleIntegrationTest: test_returning_the_url_of_the_parent_resource
473
+ -------------------------------------------------------------------
474
+ Started GET "/widgets/1/gizmos" for 127.0.0.1 at 2014-04-02 21:59:17 +0100
475
+ Processing by GizmosController#index as HTML
476
+ Parameters: {"widget_id"=>"1"}
477
+ Completed 500 Internal Server Error in 0ms
478
+  (0.1ms) rollback transaction
479
+  (0.0ms) begin transaction
480
+ ----------------------------------------------------------------------------------------------
481
+ UncleIntegrationTest: test_returning_the_urls_of_children_resources_from_a_collection_resource
482
+ ----------------------------------------------------------------------------------------------
483
+ Started GET "/widgets" for 127.0.0.1 at 2014-04-02 21:59:17 +0100
484
+ Processing by WidgetsController#index as HTML
485
+ Completed 200 OK in 0ms (ActiveRecord: 0.0ms)
486
+  (0.1ms) rollback transaction
487
+  (0.0ms) begin transaction
488
+ --------------------------------------------------------------------------------------------
489
+ UncleIntegrationTest: test_returning_the_urls_of_children_resources_from_a_resource_instance
490
+ --------------------------------------------------------------------------------------------
491
+ Started GET "/widgets/1" for 127.0.0.1 at 2014-04-02 21:59:17 +0100
492
+ Processing by WidgetsController#show as HTML
493
+ Parameters: {"id"=>"1"}
494
+ Completed 200 OK in 0ms (ActiveRecord: 0.0ms)
495
+  (0.1ms) rollback transaction
496
+  (0.1ms) begin transaction
497
+ -------------------------------------------------------------------
498
+ UncleIntegrationTest: test_returning_the_url_of_the_parent_resource
499
+ -------------------------------------------------------------------
500
+ Started GET "/widgets/1/gizmos" for 127.0.0.1 at 2014-04-02 21:59:32 +0100
501
+ Processing by GizmosController#index as HTML
502
+ Parameters: {"widget_id"=>"1"}
503
+ Completed 500 Internal Server Error in 2ms
504
+  (0.1ms) rollback transaction
505
+  (0.1ms) begin transaction
506
+ ----------------------------------------------------------------------------------------------
507
+ UncleIntegrationTest: test_returning_the_urls_of_children_resources_from_a_collection_resource
508
+ ----------------------------------------------------------------------------------------------
509
+ Started GET "/widgets" for 127.0.0.1 at 2014-04-02 21:59:32 +0100
510
+ Processing by WidgetsController#index as HTML
511
+ Completed 200 OK in 0ms (ActiveRecord: 0.0ms)
512
+  (0.0ms) rollback transaction
513
+  (0.0ms) begin transaction
514
+ --------------------------------------------------------------------------------------------
515
+ UncleIntegrationTest: test_returning_the_urls_of_children_resources_from_a_resource_instance
516
+ --------------------------------------------------------------------------------------------
517
+ Started GET "/widgets/1" for 127.0.0.1 at 2014-04-02 21:59:32 +0100
518
+ Processing by WidgetsController#show as HTML
519
+ Parameters: {"id"=>"1"}
520
+ Completed 200 OK in 0ms (ActiveRecord: 0.0ms)
521
+  (0.0ms) rollback transaction
522
+  (0.1ms) begin transaction
523
+ -------------------------------------------------------------------
524
+ UncleIntegrationTest: test_returning_the_url_of_the_parent_resource
525
+ -------------------------------------------------------------------
526
+ Started GET "/widgets/1/gizmos" for 127.0.0.1 at 2014-04-02 22:00:06 +0100
527
+ Processing by GizmosController#index as HTML
528
+ Parameters: {"widget_id"=>"1"}
529
+ Completed 500 Internal Server Error in 0ms
530
+  (0.1ms) rollback transaction
531
+  (0.0ms) begin transaction
532
+ ----------------------------------------------------------------------------------------------
533
+ UncleIntegrationTest: test_returning_the_urls_of_children_resources_from_a_collection_resource
534
+ ----------------------------------------------------------------------------------------------
535
+ Started GET "/widgets" for 127.0.0.1 at 2014-04-02 22:00:06 +0100
536
+ Processing by WidgetsController#index as HTML
537
+ Completed 200 OK in 0ms (ActiveRecord: 0.0ms)
538
+  (0.1ms) rollback transaction
539
+  (0.0ms) begin transaction
540
+ --------------------------------------------------------------------------------------------
541
+ UncleIntegrationTest: test_returning_the_urls_of_children_resources_from_a_resource_instance
542
+ --------------------------------------------------------------------------------------------
543
+ Started GET "/widgets/1" for 127.0.0.1 at 2014-04-02 22:00:06 +0100
544
+ Processing by WidgetsController#show as HTML
545
+ Parameters: {"id"=>"1"}
546
+ Completed 200 OK in 0ms (ActiveRecord: 0.0ms)
547
+  (0.0ms) rollback transaction
548
+  (0.1ms) begin transaction
549
+ -------------------------------------------------------------------
550
+ UncleIntegrationTest: test_returning_the_url_of_the_parent_resource
551
+ -------------------------------------------------------------------
552
+ Started GET "/widgets/1/gizmos" for 127.0.0.1 at 2014-04-02 22:00:23 +0100
553
+ Processing by GizmosController#index as HTML
554
+ Parameters: {"widget_id"=>"1"}
555
+ Completed 500 Internal Server Error in 0ms
556
+  (0.1ms) rollback transaction
557
+  (0.0ms) begin transaction
558
+ ----------------------------------------------------------------------------------------------
559
+ UncleIntegrationTest: test_returning_the_urls_of_children_resources_from_a_collection_resource
560
+ ----------------------------------------------------------------------------------------------
561
+ Started GET "/widgets" for 127.0.0.1 at 2014-04-02 22:00:23 +0100
562
+ Processing by WidgetsController#index as HTML
563
+ Completed 200 OK in 0ms (ActiveRecord: 0.0ms)
564
+  (0.0ms) rollback transaction
565
+  (0.0ms) begin transaction
566
+ --------------------------------------------------------------------------------------------
567
+ UncleIntegrationTest: test_returning_the_urls_of_children_resources_from_a_resource_instance
568
+ --------------------------------------------------------------------------------------------
569
+ Started GET "/widgets/1" for 127.0.0.1 at 2014-04-02 22:00:23 +0100
570
+ Processing by WidgetsController#show as HTML
571
+ Parameters: {"id"=>"1"}
572
+ Completed 200 OK in 0ms (ActiveRecord: 0.0ms)
573
+  (0.0ms) rollback transaction
574
+  (0.1ms) begin transaction
575
+ -------------------------------------------------------------------
576
+ UncleIntegrationTest: test_returning_the_url_of_the_parent_resource
577
+ -------------------------------------------------------------------
578
+ Started GET "/widgets/1/gizmos" for 127.0.0.1 at 2014-04-02 22:00:43 +0100
579
+ Processing by GizmosController#index as HTML
580
+ Parameters: {"widget_id"=>"1"}
581
+ Completed 500 Internal Server Error in 0ms
582
+  (0.1ms) rollback transaction
583
+  (0.1ms) begin transaction
584
+ ----------------------------------------------------------------------------------------------
585
+ UncleIntegrationTest: test_returning_the_urls_of_children_resources_from_a_collection_resource
586
+ ----------------------------------------------------------------------------------------------
587
+ Started GET "/widgets" for 127.0.0.1 at 2014-04-02 22:00:43 +0100
588
+ Processing by WidgetsController#index as HTML
589
+ Completed 200 OK in 0ms (ActiveRecord: 0.0ms)
590
+  (0.0ms) rollback transaction
591
+  (0.0ms) begin transaction
592
+ --------------------------------------------------------------------------------------------
593
+ UncleIntegrationTest: test_returning_the_urls_of_children_resources_from_a_resource_instance
594
+ --------------------------------------------------------------------------------------------
595
+ Started GET "/widgets/1" for 127.0.0.1 at 2014-04-02 22:00:43 +0100
596
+ Processing by WidgetsController#show as HTML
597
+ Parameters: {"id"=>"1"}
598
+ Completed 200 OK in 0ms (ActiveRecord: 0.0ms)
599
+  (0.0ms) rollback transaction
600
+  (0.1ms) begin transaction
601
+ -------------------------------------------------------------------
602
+ UncleIntegrationTest: test_returning_the_url_of_the_parent_resource
603
+ -------------------------------------------------------------------
604
+ Started GET "/widgets/1/gizmos" for 127.0.0.1 at 2014-04-02 22:01:35 +0100
605
+ Processing by GizmosController#index as HTML
606
+ Parameters: {"widget_id"=>"1"}
607
+ Completed 500 Internal Server Error in 0ms
608
+  (0.1ms) rollback transaction
609
+  (0.0ms) begin transaction
610
+ ----------------------------------------------------------------------------------------------
611
+ UncleIntegrationTest: test_returning_the_urls_of_children_resources_from_a_collection_resource
612
+ ----------------------------------------------------------------------------------------------
613
+ Started GET "/widgets" for 127.0.0.1 at 2014-04-02 22:01:35 +0100
614
+ Processing by WidgetsController#index as HTML
615
+ Completed 200 OK in 0ms (ActiveRecord: 0.0ms)
616
+  (0.0ms) rollback transaction
617
+  (0.0ms) begin transaction
618
+ --------------------------------------------------------------------------------------------
619
+ UncleIntegrationTest: test_returning_the_urls_of_children_resources_from_a_resource_instance
620
+ --------------------------------------------------------------------------------------------
621
+ Started GET "/widgets/1" for 127.0.0.1 at 2014-04-02 22:01:35 +0100
622
+ Processing by WidgetsController#show as HTML
623
+ Parameters: {"id"=>"1"}
624
+ Completed 200 OK in 0ms (ActiveRecord: 0.0ms)
625
+  (0.0ms) rollback transaction
626
+  (0.1ms) begin transaction
627
+ -------------------------------------------------------------------
628
+ UncleIntegrationTest: test_returning_the_url_of_the_parent_resource
629
+ -------------------------------------------------------------------
630
+ Started GET "/widgets/1/gizmos" for 127.0.0.1 at 2014-04-02 22:02:32 +0100
631
+ Processing by GizmosController#index as HTML
632
+ Parameters: {"widget_id"=>"1"}
633
+ Rendered text template (0.0ms)
634
+ Completed 200 OK in 4ms (Views: 3.7ms | ActiveRecord: 0.0ms)
635
+  (0.1ms) rollback transaction
636
+  (0.1ms) begin transaction
637
+ ----------------------------------------------------------------------------------------------
638
+ UncleIntegrationTest: test_returning_the_urls_of_children_resources_from_a_collection_resource
639
+ ----------------------------------------------------------------------------------------------
640
+ Started GET "/widgets" for 127.0.0.1 at 2014-04-02 22:02:32 +0100
641
+ Processing by WidgetsController#index as HTML
642
+ Completed 200 OK in 0ms (ActiveRecord: 0.0ms)
643
+  (0.1ms) rollback transaction
644
+  (0.1ms) begin transaction
645
+ --------------------------------------------------------------------------------------------
646
+ UncleIntegrationTest: test_returning_the_urls_of_children_resources_from_a_resource_instance
647
+ --------------------------------------------------------------------------------------------
648
+ Started GET "/widgets/1" for 127.0.0.1 at 2014-04-02 22:02:32 +0100
649
+ Processing by WidgetsController#show as HTML
650
+ Parameters: {"id"=>"1"}
651
+ Completed 200 OK in 0ms (ActiveRecord: 0.0ms)
652
+  (0.0ms) rollback transaction
653
+  (0.1ms) begin transaction
654
+ -------------------------------------------------------------------
655
+ UncleIntegrationTest: test_returning_the_url_of_the_parent_resource
656
+ -------------------------------------------------------------------
657
+ Started GET "/widgets/1/gizmos" for 127.0.0.1 at 2014-04-02 23:20:56 +0100
658
+ Processing by GizmosController#index as HTML
659
+ Parameters: {"widget_id"=>"1"}
660
+ Completed 500 Internal Server Error in 0ms
661
+  (0.1ms) rollback transaction
662
+  (0.0ms) begin transaction
663
+ ----------------------------------------------------------------------------------------------
664
+ UncleIntegrationTest: test_returning_the_urls_of_children_resources_from_a_collection_resource
665
+ ----------------------------------------------------------------------------------------------
666
+ Started GET "/widgets" for 127.0.0.1 at 2014-04-02 23:20:56 +0100
667
+ Processing by WidgetsController#index as HTML
668
+ Completed 200 OK in 0ms (ActiveRecord: 0.0ms)
669
+  (0.1ms) rollback transaction
670
+  (0.0ms) begin transaction
671
+ --------------------------------------------------------------------------------------------
672
+ UncleIntegrationTest: test_returning_the_urls_of_children_resources_from_a_resource_instance
673
+ --------------------------------------------------------------------------------------------
674
+ Started GET "/widgets/1" for 127.0.0.1 at 2014-04-02 23:20:56 +0100
675
+ Processing by WidgetsController#show as HTML
676
+ Parameters: {"id"=>"1"}
677
+ Completed 200 OK in 0ms (ActiveRecord: 0.0ms)
678
+  (0.1ms) rollback transaction
679
+  (0.1ms) begin transaction
680
+ -------------------------------------------------------------------
681
+ UncleIntegrationTest: test_returning_the_url_of_the_parent_resource
682
+ -------------------------------------------------------------------
683
+ Started GET "/widgets/1/gizmos" for 127.0.0.1 at 2014-04-02 23:23:11 +0100
684
+ Processing by GizmosController#index as HTML
685
+ Parameters: {"widget_id"=>"1"}
686
+ Completed 500 Internal Server Error in 309209468ms
687
+  (1.4ms) rollback transaction
688
+  (0.1ms) begin transaction
689
+ -------------------------------------------------------------------
690
+ UncleIntegrationTest: test_returning_the_url_of_the_parent_resource
691
+ -------------------------------------------------------------------
692
+ Started GET "/widgets/1/gizmos" for 127.0.0.1 at 2014-04-11 16:12:09 +0100
693
+ Processing by GizmosController#index as HTML
694
+ Parameters: {"widget_id"=>"1"}
695
+ Rendered text template (0.0ms)
696
+ Completed 200 OK in 75973ms (Views: 4.8ms | ActiveRecord: 0.0ms)
697
+  (0.2ms) rollback transaction
698
+  (0.1ms) begin transaction
699
+ ----------------------------------------------------------------------------------------------
700
+ UncleIntegrationTest: test_returning_the_urls_of_children_resources_from_a_collection_resource
701
+ ----------------------------------------------------------------------------------------------
702
+ Started GET "/widgets" for 127.0.0.1 at 2014-04-11 16:13:25 +0100
703
+ Processing by WidgetsController#index as HTML
704
+ Completed 200 OK in 0ms (ActiveRecord: 0.0ms)
705
+  (0.1ms) rollback transaction
706
+  (0.1ms) begin transaction
707
+ --------------------------------------------------------------------------------------------
708
+ UncleIntegrationTest: test_returning_the_urls_of_children_resources_from_a_resource_instance
709
+ --------------------------------------------------------------------------------------------
710
+ Started GET "/widgets/1" for 127.0.0.1 at 2014-04-11 16:13:25 +0100
711
+ Processing by WidgetsController#show as HTML
712
+ Parameters: {"id"=>"1"}
713
+ Completed 200 OK in 0ms (ActiveRecord: 0.0ms)
714
+  (0.0ms) rollback transaction
715
+  (0.1ms) begin transaction
716
+ -------------------------------------------------------------------
717
+ UncleIntegrationTest: test_returning_the_url_of_the_parent_resource
718
+ -------------------------------------------------------------------
719
+ Started GET "/widgets/1/gizmos" for 127.0.0.1 at 2014-04-11 16:37:49 +0100
720
+ Processing by GizmosController#index as HTML
721
+ Parameters: {"widget_id"=>"1"}
722
+ Rendered text template (0.0ms)
723
+ Completed 200 OK in 1422732ms (Views: 8.8ms | ActiveRecord: 0.0ms)
724
+  (0.2ms) rollback transaction
725
+  (0.1ms) begin transaction
726
+ ----------------------------------------------------------------------------------------------
727
+ UncleIntegrationTest: test_returning_the_urls_of_children_resources_from_a_collection_resource
728
+ ----------------------------------------------------------------------------------------------
729
+ Started GET "/widgets" for 127.0.0.1 at 2014-04-11 17:01:32 +0100
730
+ Processing by WidgetsController#index as HTML
731
+ Completed 200 OK in 0ms (ActiveRecord: 0.0ms)
732
+  (0.1ms) rollback transaction
733
+  (0.0ms) begin transaction
734
+ --------------------------------------------------------------------------------------------
735
+ UncleIntegrationTest: test_returning_the_urls_of_children_resources_from_a_resource_instance
736
+ --------------------------------------------------------------------------------------------
737
+ Started GET "/widgets/1" for 127.0.0.1 at 2014-04-11 17:01:32 +0100
738
+ Processing by WidgetsController#show as HTML
739
+ Parameters: {"id"=>"1"}
740
+ Completed 200 OK in 0ms (ActiveRecord: 0.0ms)
741
+  (0.1ms) rollback transaction
742
+  (0.1ms) begin transaction
743
+ -------------------------------------------------------------------
744
+ UncleIntegrationTest: test_returning_the_url_of_the_parent_resource
745
+ -------------------------------------------------------------------
746
+ Started GET "/widgets/1/gizmos" for 127.0.0.1 at 2014-04-11 17:02:01 +0100
747
+ Processing by GizmosController#index as HTML
748
+ Parameters: {"widget_id"=>"1"}
749
+ Rendered text template (0.0ms)
750
+ Completed 200 OK in 71888ms (Views: 4.5ms | ActiveRecord: 0.0ms)
751
+  (0.1ms) rollback transaction
752
+  (0.1ms) begin transaction
753
+ ----------------------------------------------------------------------------------------------
754
+ UncleIntegrationTest: test_returning_the_urls_of_children_resources_from_a_collection_resource
755
+ ----------------------------------------------------------------------------------------------
756
+ Started GET "/widgets" for 127.0.0.1 at 2014-04-11 17:03:13 +0100
757
+ Processing by WidgetsController#index as HTML
758
+ Completed 200 OK in 0ms (ActiveRecord: 0.0ms)
759
+  (0.1ms) rollback transaction
760
+  (0.1ms) begin transaction
761
+ --------------------------------------------------------------------------------------------
762
+ UncleIntegrationTest: test_returning_the_urls_of_children_resources_from_a_resource_instance
763
+ --------------------------------------------------------------------------------------------
764
+ Started GET "/widgets/1" for 127.0.0.1 at 2014-04-11 17:03:13 +0100
765
+ Processing by WidgetsController#show as HTML
766
+ Parameters: {"id"=>"1"}
767
+ Completed 200 OK in 0ms (ActiveRecord: 0.0ms)
768
+  (0.0ms) rollback transaction
769
+  (0.1ms) begin transaction
770
+ -------------------------------------------------------------------
771
+ UncleIntegrationTest: test_returning_the_url_of_the_parent_resource
772
+ -------------------------------------------------------------------
773
+ Started GET "/widgets/1/gizmos" for 127.0.0.1 at 2014-04-11 17:15:51 +0100
774
+ Processing by GizmosController#index as HTML
775
+ Parameters: {"widget_id"=>"1"}
776
+ Completed 500 Internal Server Error in 4ms
777
+  (0.1ms) rollback transaction
778
+  (0.1ms) begin transaction
779
+ ----------------------------------------------------------------------------------------------
780
+ UncleIntegrationTest: test_returning_the_urls_of_children_resources_from_a_collection_resource
781
+ ----------------------------------------------------------------------------------------------
782
+ Started GET "/widgets" for 127.0.0.1 at 2014-04-11 17:15:51 +0100
783
+ Processing by WidgetsController#index as HTML
784
+ Completed 200 OK in 0ms (ActiveRecord: 0.0ms)
785
+  (0.1ms) rollback transaction
786
+  (0.0ms) begin transaction
787
+ --------------------------------------------------------------------------------------------
788
+ UncleIntegrationTest: test_returning_the_urls_of_children_resources_from_a_resource_instance
789
+ --------------------------------------------------------------------------------------------
790
+ Started GET "/widgets/1" for 127.0.0.1 at 2014-04-11 17:15:51 +0100
791
+ Processing by WidgetsController#show as HTML
792
+ Parameters: {"id"=>"1"}
793
+ Completed 200 OK in 0ms (ActiveRecord: 0.0ms)
794
+  (0.0ms) rollback transaction
795
+  (0.1ms) begin transaction
796
+ -------------------------------------------------------------------
797
+ UncleIntegrationTest: test_returning_the_url_of_the_parent_resource
798
+ -------------------------------------------------------------------
799
+ Started GET "/widgets/1/gizmos" for 127.0.0.1 at 2014-04-11 17:16:04 +0100
800
+ Processing by GizmosController#index as HTML
801
+ Parameters: {"widget_id"=>"1"}
802
+ Completed 500 Internal Server Error in 0ms
803
+  (0.1ms) rollback transaction
804
+  (0.1ms) begin transaction
805
+ ----------------------------------------------------------------------------------------------
806
+ UncleIntegrationTest: test_returning_the_urls_of_children_resources_from_a_collection_resource
807
+ ----------------------------------------------------------------------------------------------
808
+ Started GET "/widgets" for 127.0.0.1 at 2014-04-11 17:16:04 +0100
809
+ Processing by WidgetsController#index as HTML
810
+ Completed 200 OK in 0ms (ActiveRecord: 0.0ms)
811
+  (0.1ms) rollback transaction
812
+  (0.0ms) begin transaction
813
+ --------------------------------------------------------------------------------------------
814
+ UncleIntegrationTest: test_returning_the_urls_of_children_resources_from_a_resource_instance
815
+ --------------------------------------------------------------------------------------------
816
+ Started GET "/widgets/1" for 127.0.0.1 at 2014-04-11 17:16:04 +0100
817
+ Processing by WidgetsController#show as HTML
818
+ Parameters: {"id"=>"1"}
819
+ Completed 200 OK in 0ms (ActiveRecord: 0.0ms)
820
+  (0.0ms) rollback transaction
821
+  (0.1ms) begin transaction
822
+ -------------------------------------------------------------------
823
+ UncleIntegrationTest: test_returning_the_url_of_the_parent_resource
824
+ -------------------------------------------------------------------
825
+ Started GET "/widgets/1/gizmos" for 127.0.0.1 at 2014-04-11 17:17:23 +0100
826
+ Processing by GizmosController#index as HTML
827
+ Parameters: {"widget_id"=>"1"}
828
+ Rendered text template (0.0ms)
829
+ Completed 200 OK in 19037ms (Views: 7.4ms | ActiveRecord: 0.0ms)
830
+  (0.2ms) rollback transaction
831
+  (0.1ms) begin transaction
832
+ ----------------------------------------------------------------------------------------------
833
+ UncleIntegrationTest: test_returning_the_urls_of_children_resources_from_a_collection_resource
834
+ ----------------------------------------------------------------------------------------------
835
+ Started GET "/widgets" for 127.0.0.1 at 2014-04-11 17:17:42 +0100
836
+ Processing by WidgetsController#index as HTML
837
+ Completed 200 OK in 0ms (ActiveRecord: 0.0ms)
838
+  (0.1ms) rollback transaction
839
+  (0.0ms) begin transaction
840
+ --------------------------------------------------------------------------------------------
841
+ UncleIntegrationTest: test_returning_the_urls_of_children_resources_from_a_resource_instance
842
+ --------------------------------------------------------------------------------------------
843
+ Started GET "/widgets/1" for 127.0.0.1 at 2014-04-11 17:17:42 +0100
844
+ Processing by WidgetsController#show as HTML
845
+ Parameters: {"id"=>"1"}
846
+ Completed 200 OK in 0ms (ActiveRecord: 0.0ms)
847
+  (0.0ms) rollback transaction
848
+  (0.1ms) begin transaction
849
+ -------------------------------------------------------------------
850
+ UncleIntegrationTest: test_returning_the_url_of_the_parent_resource
851
+ -------------------------------------------------------------------
852
+ Started GET "/widgets/1/gizmos" for 127.0.0.1 at 2014-04-11 17:18:08 +0100
853
+ Processing by GizmosController#index as HTML
854
+ Parameters: {"widget_id"=>"1"}
855
+ Rendered text template (0.0ms)
856
+ Completed 200 OK in 517830ms (Views: 7.9ms | ActiveRecord: 0.0ms)
857
+  (0.2ms) rollback transaction
858
+  (0.0ms) begin transaction
859
+ ----------------------------------------------------------------------------------------------
860
+ UncleIntegrationTest: test_returning_the_urls_of_children_resources_from_a_collection_resource
861
+ ----------------------------------------------------------------------------------------------
862
+ Started GET "/widgets" for 127.0.0.1 at 2014-04-11 17:26:46 +0100
863
+ Processing by WidgetsController#index as HTML
864
+ Completed 200 OK in 0ms (ActiveRecord: 0.0ms)
865
+  (0.1ms) rollback transaction
866
+  (0.1ms) begin transaction
867
+ --------------------------------------------------------------------------------------------
868
+ UncleIntegrationTest: test_returning_the_urls_of_children_resources_from_a_resource_instance
869
+ --------------------------------------------------------------------------------------------
870
+ Started GET "/widgets/1" for 127.0.0.1 at 2014-04-11 17:26:46 +0100
871
+ Processing by WidgetsController#show as HTML
872
+ Parameters: {"id"=>"1"}
873
+ Completed 200 OK in 0ms (ActiveRecord: 0.0ms)
874
+  (0.1ms) rollback transaction
875
+  (0.1ms) begin transaction
876
+ -------------------------------------------------------------------
877
+ UncleIntegrationTest: test_returning_the_url_of_the_parent_resource
878
+ -------------------------------------------------------------------
879
+ Started GET "/widgets/1/gizmos" for 127.0.0.1 at 2014-04-11 17:39:59 +0100
880
+ Processing by GizmosController#index as HTML
881
+ Parameters: {"widget_id"=>"1"}
882
+ Rendered text template (0.0ms)
883
+ Completed 200 OK in 446006ms (Views: 11.1ms | ActiveRecord: 0.0ms)
884
+  (0.3ms) rollback transaction
885
+  (0.1ms) begin transaction
886
+ ----------------------------------------------------------------------------------------------
887
+ UncleIntegrationTest: test_returning_the_urls_of_children_resources_from_a_collection_resource
888
+ ----------------------------------------------------------------------------------------------
889
+ Started GET "/widgets" for 127.0.0.1 at 2014-04-11 17:47:25 +0100
890
+ Processing by WidgetsController#index as HTML
891
+ Completed 200 OK in 0ms (ActiveRecord: 0.0ms)
892
+  (0.1ms) rollback transaction
893
+  (0.1ms) begin transaction
894
+ --------------------------------------------------------------------------------------------
895
+ UncleIntegrationTest: test_returning_the_urls_of_children_resources_from_a_resource_instance
896
+ --------------------------------------------------------------------------------------------
897
+ Started GET "/widgets/1" for 127.0.0.1 at 2014-04-11 17:47:25 +0100
898
+ Processing by WidgetsController#show as HTML
899
+ Parameters: {"id"=>"1"}
900
+ Completed 200 OK in 0ms (ActiveRecord: 0.0ms)
901
+  (0.0ms) rollback transaction
902
+  (0.1ms) begin transaction
903
+ -------------------------------------------------------------------
904
+ UncleIntegrationTest: test_returning_the_url_of_the_parent_resource
905
+ -------------------------------------------------------------------
906
+ Started GET "/widgets/1/gizmos" for 127.0.0.1 at 2014-04-11 17:47:29 +0100
907
+ Processing by GizmosController#index as HTML
908
+ Parameters: {"widget_id"=>"1"}
909
+ Rendered text template (0.0ms)
910
+ Completed 200 OK in 60077ms (Views: 6.0ms | ActiveRecord: 0.0ms)
911
+  (0.2ms) rollback transaction
912
+  (0.1ms) begin transaction
913
+ ----------------------------------------------------------------------------------------------
914
+ UncleIntegrationTest: test_returning_the_urls_of_children_resources_from_a_collection_resource
915
+ ----------------------------------------------------------------------------------------------
916
+ Started GET "/widgets" for 127.0.0.1 at 2014-04-11 17:48:29 +0100
917
+ Processing by WidgetsController#index as HTML
918
+ Completed 200 OK in 0ms (ActiveRecord: 0.0ms)
919
+  (0.1ms) rollback transaction
920
+  (0.1ms) begin transaction
921
+ --------------------------------------------------------------------------------------------
922
+ UncleIntegrationTest: test_returning_the_urls_of_children_resources_from_a_resource_instance
923
+ --------------------------------------------------------------------------------------------
924
+ Started GET "/widgets/1" for 127.0.0.1 at 2014-04-11 17:48:29 +0100
925
+ Processing by WidgetsController#show as HTML
926
+ Parameters: {"id"=>"1"}
927
+ Completed 200 OK in 0ms (ActiveRecord: 0.0ms)
928
+  (0.1ms) rollback transaction
929
+  (0.1ms) begin transaction
930
+ -------------------------------------------------------------------
931
+ UncleIntegrationTest: test_returning_the_url_of_the_parent_resource
932
+ -------------------------------------------------------------------
933
+ Started GET "/widgets/1/gizmos" for 127.0.0.1 at 2014-04-11 17:48:35 +0100
934
+ Processing by GizmosController#index as HTML
935
+ Parameters: {"widget_id"=>"1"}
936
+ Completed 500 Internal Server Error in 2ms
937
+  (0.1ms) rollback transaction
938
+  (0.0ms) begin transaction
939
+ ----------------------------------------------------------------------------------------------
940
+ UncleIntegrationTest: test_returning_the_urls_of_children_resources_from_a_collection_resource
941
+ ----------------------------------------------------------------------------------------------
942
+ Started GET "/widgets" for 127.0.0.1 at 2014-04-11 17:48:35 +0100
943
+ Processing by WidgetsController#index as HTML
944
+ Completed 200 OK in 0ms (ActiveRecord: 0.0ms)
945
+  (0.0ms) rollback transaction
946
+  (0.0ms) begin transaction
947
+ --------------------------------------------------------------------------------------------
948
+ UncleIntegrationTest: test_returning_the_urls_of_children_resources_from_a_resource_instance
949
+ --------------------------------------------------------------------------------------------
950
+ Started GET "/widgets/1" for 127.0.0.1 at 2014-04-11 17:48:35 +0100
951
+ Processing by WidgetsController#show as HTML
952
+ Parameters: {"id"=>"1"}
953
+ Completed 200 OK in 0ms (ActiveRecord: 0.0ms)
954
+  (0.0ms) rollback transaction
955
+  (0.1ms) begin transaction
956
+ -------------------------------------------------------------------
957
+ UncleIntegrationTest: test_returning_the_url_of_the_parent_resource
958
+ -------------------------------------------------------------------
959
+ Started GET "/widgets/1/gizmos" for 127.0.0.1 at 2014-04-11 17:59:32 +0100
960
+ Processing by GizmosController#index as HTML
961
+ Parameters: {"widget_id"=>"1"}
962
+ Completed 500 Internal Server Error in 0ms
963
+  (0.1ms) rollback transaction
964
+  (0.0ms) begin transaction
965
+ ----------------------------------------------------------------------------------------------
966
+ UncleIntegrationTest: test_returning_the_urls_of_children_resources_from_a_collection_resource
967
+ ----------------------------------------------------------------------------------------------
968
+ Started GET "/widgets" for 127.0.0.1 at 2014-04-11 17:59:32 +0100
969
+ Processing by WidgetsController#index as HTML
970
+ Completed 200 OK in 0ms (ActiveRecord: 0.0ms)
971
+  (0.1ms) rollback transaction
972
+  (0.0ms) begin transaction
973
+ --------------------------------------------------------------------------------------------
974
+ UncleIntegrationTest: test_returning_the_urls_of_children_resources_from_a_resource_instance
975
+ --------------------------------------------------------------------------------------------
976
+ Started GET "/widgets/1" for 127.0.0.1 at 2014-04-11 17:59:32 +0100
977
+ Processing by WidgetsController#show as HTML
978
+ Parameters: {"id"=>"1"}
979
+ Completed 200 OK in 0ms (ActiveRecord: 0.0ms)
980
+  (0.0ms) rollback transaction
981
+  (0.1ms) begin transaction
982
+ -------------------------------------------------------------------
983
+ UncleIntegrationTest: test_returning_the_url_of_the_parent_resource
984
+ -------------------------------------------------------------------
985
+ Started GET "/widgets/1/gizmos" for 127.0.0.1 at 2014-04-11 18:00:40 +0100
986
+ Processing by GizmosController#index as HTML
987
+ Parameters: {"widget_id"=>"1"}
988
+ Rendered text template (0.0ms)
989
+ Completed 200 OK in 50917ms (Views: 4.8ms | ActiveRecord: 0.0ms)
990
+  (0.3ms) rollback transaction
991
+  (0.0ms) begin transaction
992
+ ----------------------------------------------------------------------------------------------
993
+ UncleIntegrationTest: test_returning_the_urls_of_children_resources_from_a_collection_resource
994
+ ----------------------------------------------------------------------------------------------
995
+ Started GET "/widgets" for 127.0.0.1 at 2014-04-11 18:01:31 +0100
996
+ Processing by WidgetsController#index as HTML
997
+ Completed 200 OK in 0ms (ActiveRecord: 0.0ms)
998
+  (0.1ms) rollback transaction
999
+  (0.0ms) begin transaction
1000
+ --------------------------------------------------------------------------------------------
1001
+ UncleIntegrationTest: test_returning_the_urls_of_children_resources_from_a_resource_instance
1002
+ --------------------------------------------------------------------------------------------
1003
+ Started GET "/widgets/1" for 127.0.0.1 at 2014-04-11 18:01:31 +0100
1004
+ Processing by WidgetsController#show as HTML
1005
+ Parameters: {"id"=>"1"}
1006
+ Completed 200 OK in 0ms (ActiveRecord: 0.0ms)
1007
+  (0.1ms) rollback transaction
1008
+  (0.1ms) begin transaction
1009
+ -------------------------------------------------------------------
1010
+ UncleIntegrationTest: test_returning_the_url_of_the_parent_resource
1011
+ -------------------------------------------------------------------
1012
+ Started GET "/widgets/1/gizmos" for 127.0.0.1 at 2014-04-11 18:01:34 +0100
1013
+ Processing by GizmosController#index as HTML
1014
+ Parameters: {"widget_id"=>"1"}
1015
+ Rendered text template (0.0ms)
1016
+ Completed 200 OK in 348138ms (Views: 7.2ms | ActiveRecord: 0.0ms)
1017
+  (0.9ms) rollback transaction
1018
+  (0.1ms) begin transaction
1019
+ ----------------------------------------------------------------------------------------------
1020
+ UncleIntegrationTest: test_returning_the_urls_of_children_resources_from_a_collection_resource
1021
+ ----------------------------------------------------------------------------------------------
1022
+ Started GET "/widgets" for 127.0.0.1 at 2014-04-11 18:07:23 +0100
1023
+ Processing by WidgetsController#index as HTML
1024
+ Completed 200 OK in 0ms (ActiveRecord: 0.0ms)
1025
+  (0.1ms) rollback transaction
1026
+  (0.1ms) begin transaction
1027
+ --------------------------------------------------------------------------------------------
1028
+ UncleIntegrationTest: test_returning_the_urls_of_children_resources_from_a_resource_instance
1029
+ --------------------------------------------------------------------------------------------
1030
+ Started GET "/widgets/1" for 127.0.0.1 at 2014-04-11 18:07:23 +0100
1031
+ Processing by WidgetsController#show as HTML
1032
+ Parameters: {"id"=>"1"}
1033
+ Completed 200 OK in 0ms (ActiveRecord: 0.0ms)
1034
+  (0.1ms) rollback transaction
1035
+  (0.1ms) begin transaction
1036
+ -------------------------------------------------------------------
1037
+ UncleIntegrationTest: test_returning_the_url_of_the_parent_resource
1038
+ -------------------------------------------------------------------
1039
+ Started GET "/widgets/1/gizmos" for 127.0.0.1 at 2014-04-11 18:07:26 +0100
1040
+ Processing by GizmosController#index as HTML
1041
+ Parameters: {"widget_id"=>"1"}
1042
+ Rendered text template (0.0ms)
1043
+ Completed 200 OK in 4ms (Views: 3.8ms | ActiveRecord: 0.0ms)
1044
+  (0.1ms) rollback transaction
1045
+  (0.1ms) begin transaction
1046
+ ----------------------------------------------------------------------------------------------
1047
+ UncleIntegrationTest: test_returning_the_urls_of_children_resources_from_a_collection_resource
1048
+ ----------------------------------------------------------------------------------------------
1049
+ Started GET "/widgets" for 127.0.0.1 at 2014-04-11 18:07:26 +0100
1050
+ Processing by WidgetsController#index as HTML
1051
+ Completed 200 OK in 0ms (ActiveRecord: 0.0ms)
1052
+  (0.0ms) rollback transaction
1053
+  (0.1ms) begin transaction
1054
+ --------------------------------------------------------------------------------------------
1055
+ UncleIntegrationTest: test_returning_the_urls_of_children_resources_from_a_resource_instance
1056
+ --------------------------------------------------------------------------------------------
1057
+ Started GET "/widgets/1" for 127.0.0.1 at 2014-04-11 18:07:26 +0100
1058
+ Processing by WidgetsController#show as HTML
1059
+ Parameters: {"id"=>"1"}
1060
+ Completed 200 OK in 0ms (ActiveRecord: 0.0ms)
1061
+  (0.0ms) rollback transaction
1062
+  (0.1ms) begin transaction
1063
+ --------------------------------------------------------------------
1064
+ UncleIntegrationTest: test_returning_the_oath_of_the_parent_resource
1065
+ --------------------------------------------------------------------
1066
+ Started GET "/widgets/1/gizmos" for 127.0.0.1 at 2014-04-11 18:07:50 +0100
1067
+ Processing by GizmosController#index as HTML
1068
+ Parameters: {"widget_id"=>"1"}
1069
+ Rendered text template (0.0ms)
1070
+ Completed 200 OK in 4ms (Views: 3.9ms | ActiveRecord: 0.0ms)
1071
+  (0.3ms) rollback transaction
1072
+  (0.1ms) begin transaction
1073
+ -------------------------------------------------------------------
1074
+ UncleIntegrationTest: test_returning_the_url_of_the_parent_resource
1075
+ -------------------------------------------------------------------
1076
+ Started GET "/widgets/1/gizmos" for 127.0.0.1 at 2014-04-11 18:07:50 +0100
1077
+ Processing by GizmosController#index as HTML
1078
+ Parameters: {"widget_id"=>"1"}
1079
+ Rendered text template (0.0ms)
1080
+ Completed 200 OK in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
1081
+  (0.0ms) rollback transaction
1082
+  (0.0ms) begin transaction
1083
+ ----------------------------------------------------------------------------------------------
1084
+ UncleIntegrationTest: test_returning_the_urls_of_children_resources_from_a_collection_resource
1085
+ ----------------------------------------------------------------------------------------------
1086
+ Started GET "/widgets" for 127.0.0.1 at 2014-04-11 18:07:50 +0100
1087
+ Processing by WidgetsController#index as HTML
1088
+ Completed 200 OK in 0ms (ActiveRecord: 0.0ms)
1089
+  (0.1ms) rollback transaction
1090
+  (0.1ms) begin transaction
1091
+ --------------------------------------------------------------------------------------------
1092
+ UncleIntegrationTest: test_returning_the_urls_of_children_resources_from_a_resource_instance
1093
+ --------------------------------------------------------------------------------------------
1094
+ Started GET "/widgets/1" for 127.0.0.1 at 2014-04-11 18:07:50 +0100
1095
+ Processing by WidgetsController#show as HTML
1096
+ Parameters: {"id"=>"1"}
1097
+ Completed 200 OK in 0ms (ActiveRecord: 0.0ms)
1098
+  (0.1ms) rollback transaction
1099
+  (0.1ms) begin transaction
1100
+ -------------------------------------------------------------------
1101
+ UncleIntegrationTest: test_returning_the_url_of_the_parent_resource
1102
+ -------------------------------------------------------------------
1103
+ Started GET "/widgets/1/gizmos" for 127.0.0.1 at 2014-04-11 18:10:11 +0100
1104
+ Processing by GizmosController#index as HTML
1105
+ Parameters: {"widget_id"=>"1"}
1106
+ Rendered text template (0.0ms)
1107
+ Completed 200 OK in 7ms (Views: 6.5ms | ActiveRecord: 0.0ms)
1108
+  (0.1ms) rollback transaction
1109
+  (0.1ms) begin transaction
1110
+ ----------------------------------------------------------------------------------------------
1111
+ UncleIntegrationTest: test_returning_the_urls_of_children_resources_from_a_collection_resource
1112
+ ----------------------------------------------------------------------------------------------
1113
+ Started GET "/widgets" for 127.0.0.1 at 2014-04-11 18:10:11 +0100
1114
+ Processing by WidgetsController#index as HTML
1115
+ Completed 200 OK in 0ms (ActiveRecord: 0.0ms)
1116
+  (0.0ms) rollback transaction
1117
+  (0.1ms) begin transaction
1118
+ --------------------------------------------------------------------------------------------
1119
+ UncleIntegrationTest: test_returning_the_urls_of_children_resources_from_a_resource_instance
1120
+ --------------------------------------------------------------------------------------------
1121
+ Started GET "/widgets/1" for 127.0.0.1 at 2014-04-11 18:10:11 +0100
1122
+ Processing by WidgetsController#show as HTML
1123
+ Parameters: {"id"=>"1"}
1124
+ Completed 200 OK in 0ms (ActiveRecord: 0.0ms)
1125
+  (0.0ms) rollback transaction
1126
+  (0.1ms) begin transaction
1127
+ -------------------------------------------------------------------
1128
+ UncleIntegrationTest: test_returning_the_url_of_the_parent_resource
1129
+ -------------------------------------------------------------------
1130
+ Started GET "/widgets/1/gizmos" for 127.0.0.1 at 2014-04-11 18:16:18 +0100
1131
+ Processing by GizmosController#index as HTML
1132
+ Parameters: {"widget_id"=>"1"}
1133
+ Rendered text template (0.0ms)
1134
+ Completed 200 OK in 6ms (Views: 5.8ms | ActiveRecord: 0.0ms)
1135
+  (0.1ms) rollback transaction
1136
+  (0.1ms) begin transaction
1137
+ ----------------------------------------------------------------------------------------------
1138
+ UncleIntegrationTest: test_returning_the_urls_of_children_resources_from_a_collection_resource
1139
+ ----------------------------------------------------------------------------------------------
1140
+ Started GET "/widgets" for 127.0.0.1 at 2014-04-11 18:16:18 +0100
1141
+ Processing by WidgetsController#index as HTML
1142
+ Completed 200 OK in 0ms (ActiveRecord: 0.0ms)
1143
+  (0.1ms) rollback transaction
1144
+  (0.0ms) begin transaction
1145
+ --------------------------------------------------------------------------------------------
1146
+ UncleIntegrationTest: test_returning_the_urls_of_children_resources_from_a_resource_instance
1147
+ --------------------------------------------------------------------------------------------
1148
+ Started GET "/widgets/1" for 127.0.0.1 at 2014-04-11 18:16:18 +0100
1149
+ Processing by WidgetsController#show as HTML
1150
+ Parameters: {"id"=>"1"}
1151
+ Completed 200 OK in 0ms (ActiveRecord: 0.0ms)
1152
+  (0.0ms) rollback transaction
1153
+  (0.1ms) begin transaction
1154
+ -------------------------------------------------------------------
1155
+ UncleIntegrationTest: test_returning_the_url_of_the_parent_resource
1156
+ -------------------------------------------------------------------
1157
+ Started GET "/widgets/1/gizmos" for 127.0.0.1 at 2014-04-11 23:34:43 +0100
1158
+ Processing by GizmosController#index as HTML
1159
+ Parameters: {"widget_id"=>"1"}
1160
+ Rendered text template (0.0ms)
1161
+ Completed 200 OK in 7ms (Views: 6.7ms | ActiveRecord: 0.0ms)
1162
+  (0.1ms) rollback transaction
1163
+  (0.1ms) begin transaction
1164
+ ----------------------------------------------------------------------------------------------
1165
+ UncleIntegrationTest: test_returning_the_urls_of_children_resources_from_a_collection_resource
1166
+ ----------------------------------------------------------------------------------------------
1167
+ Started GET "/widgets" for 127.0.0.1 at 2014-04-11 23:34:43 +0100
1168
+ Processing by WidgetsController#index as HTML
1169
+ Completed 200 OK in 0ms (ActiveRecord: 0.0ms)
1170
+  (0.0ms) rollback transaction
1171
+  (0.1ms) begin transaction
1172
+ --------------------------------------------------------------------------------------------
1173
+ UncleIntegrationTest: test_returning_the_urls_of_children_resources_from_a_resource_instance
1174
+ --------------------------------------------------------------------------------------------
1175
+ Started GET "/widgets/1" for 127.0.0.1 at 2014-04-11 23:34:43 +0100
1176
+ Processing by WidgetsController#show as HTML
1177
+ Parameters: {"id"=>"1"}
1178
+ Completed 200 OK in 0ms (ActiveRecord: 0.0ms)
1179
+  (0.0ms) rollback transaction
1180
+  (0.1ms) begin transaction
1181
+ -------------------------------------------------------------------
1182
+ UncleIntegrationTest: test_returning_the_url_of_the_parent_resource
1183
+ -------------------------------------------------------------------
1184
+ Started GET "/widgets/1/gizmos" for 127.0.0.1 at 2014-04-11 23:34:53 +0100
1185
+ Processing by GizmosController#index as HTML
1186
+ Parameters: {"widget_id"=>"1"}
1187
+ Rendered text template (0.0ms)
1188
+ Completed 200 OK in 4ms (Views: 3.7ms | ActiveRecord: 0.0ms)
1189
+  (0.1ms) rollback transaction
1190
+  (0.0ms) begin transaction
1191
+ ----------------------------------------------------------------------------------------------
1192
+ UncleIntegrationTest: test_returning_the_urls_of_children_resources_from_a_collection_resource
1193
+ ----------------------------------------------------------------------------------------------
1194
+ Started GET "/widgets" for 127.0.0.1 at 2014-04-11 23:34:53 +0100
1195
+ Processing by WidgetsController#index as HTML
1196
+ Completed 200 OK in 0ms (ActiveRecord: 0.0ms)
1197
+  (0.0ms) rollback transaction
1198
+  (0.0ms) begin transaction
1199
+ --------------------------------------------------------------------------------------------
1200
+ UncleIntegrationTest: test_returning_the_urls_of_children_resources_from_a_resource_instance
1201
+ --------------------------------------------------------------------------------------------
1202
+ Started GET "/widgets/1" for 127.0.0.1 at 2014-04-11 23:34:53 +0100
1203
+ Processing by WidgetsController#show as HTML
1204
+ Parameters: {"id"=>"1"}
1205
+ Completed 200 OK in 0ms (ActiveRecord: 0.0ms)
1206
+  (0.0ms) rollback transaction
1207
+  (0.1ms) begin transaction
1208
+ -------------------------------------------------------------------
1209
+ UncleIntegrationTest: test_returning_the_url_of_the_parent_resource
1210
+ -------------------------------------------------------------------
1211
+ Started GET "/widgets/1/gizmos" for 127.0.0.1 at 2014-04-11 23:47:24 +0100
1212
+ Processing by GizmosController#index as HTML
1213
+ Parameters: {"widget_id"=>"1"}
1214
+ Rendered text template (0.0ms)
1215
+ Completed 200 OK in 7834906ms (Views: 10.6ms | ActiveRecord: 0.0ms)
1216
+  (0.1ms) rollback transaction
1217
+  (0.1ms) begin transaction
1218
+ ----------------------------------------------------------------------------------------------
1219
+ UncleIntegrationTest: test_returning_the_urls_of_children_resources_from_a_collection_resource
1220
+ ----------------------------------------------------------------------------------------------
1221
+ Started GET "/widgets" for 127.0.0.1 at 2014-04-12 01:57:59 +0100
1222
+ Processing by WidgetsController#index as HTML
1223
+ Completed 200 OK in 0ms (ActiveRecord: 0.0ms)
1224
+  (0.1ms) rollback transaction
1225
+  (0.0ms) begin transaction
1226
+ --------------------------------------------------------------------------------------------
1227
+ UncleIntegrationTest: test_returning_the_urls_of_children_resources_from_a_resource_instance
1228
+ --------------------------------------------------------------------------------------------
1229
+ Started GET "/widgets/1" for 127.0.0.1 at 2014-04-12 01:57:59 +0100
1230
+ Processing by WidgetsController#show as HTML
1231
+ Parameters: {"id"=>"1"}
1232
+ Completed 200 OK in 0ms (ActiveRecord: 0.0ms)
1233
+  (0.0ms) rollback transaction
1234
+  (0.1ms) begin transaction
1235
+ -------------------------------------------------------------------
1236
+ UncleIntegrationTest: test_returning_the_url_of_the_parent_resource
1237
+ -------------------------------------------------------------------
1238
+ Started GET "/widgets/1/gizmos" for 127.0.0.1 at 2014-04-12 01:58:55 +0100
1239
+ Processing by GizmosController#index as HTML
1240
+ Parameters: {"widget_id"=>"1"}
1241
+ Completed 500 Internal Server Error in 2ms
1242
+  (0.1ms) rollback transaction
1243
+  (0.0ms) begin transaction
1244
+ ----------------------------------------------------------------------------------------------
1245
+ UncleIntegrationTest: test_returning_the_urls_of_children_resources_from_a_collection_resource
1246
+ ----------------------------------------------------------------------------------------------
1247
+ Started GET "/widgets" for 127.0.0.1 at 2014-04-12 01:58:55 +0100
1248
+ Processing by WidgetsController#index as HTML
1249
+ Completed 200 OK in 0ms (ActiveRecord: 0.0ms)
1250
+  (0.1ms) rollback transaction
1251
+  (0.0ms) begin transaction
1252
+ --------------------------------------------------------------------------------------------
1253
+ UncleIntegrationTest: test_returning_the_urls_of_children_resources_from_a_resource_instance
1254
+ --------------------------------------------------------------------------------------------
1255
+ Started GET "/widgets/1" for 127.0.0.1 at 2014-04-12 01:58:55 +0100
1256
+ Processing by WidgetsController#show as HTML
1257
+ Parameters: {"id"=>"1"}
1258
+ Completed 200 OK in 0ms (ActiveRecord: 0.0ms)
1259
+  (0.0ms) rollback transaction
1260
+  (0.1ms) begin transaction
1261
+ -------------------------------------------------------------------
1262
+ UncleIntegrationTest: test_returning_the_url_of_the_parent_resource
1263
+ -------------------------------------------------------------------
1264
+ Started GET "/widgets/1/gizmos" for 127.0.0.1 at 2014-04-12 01:59:27 +0100
1265
+ Processing by GizmosController#index as HTML
1266
+ Parameters: {"widget_id"=>"1"}
1267
+ Rendered text template (0.0ms)
1268
+ Completed 200 OK in 4ms (Views: 3.6ms | ActiveRecord: 0.0ms)
1269
+  (0.1ms) rollback transaction
1270
+  (0.0ms) begin transaction
1271
+ ----------------------------------------------------------------------------------------------
1272
+ UncleIntegrationTest: test_returning_the_urls_of_children_resources_from_a_collection_resource
1273
+ ----------------------------------------------------------------------------------------------
1274
+ Started GET "/widgets" for 127.0.0.1 at 2014-04-12 01:59:27 +0100
1275
+ Processing by WidgetsController#index as HTML
1276
+ Completed 200 OK in 0ms (ActiveRecord: 0.0ms)
1277
+  (0.0ms) rollback transaction
1278
+  (0.0ms) begin transaction
1279
+ --------------------------------------------------------------------------------------------
1280
+ UncleIntegrationTest: test_returning_the_urls_of_children_resources_from_a_resource_instance
1281
+ --------------------------------------------------------------------------------------------
1282
+ Started GET "/widgets/1" for 127.0.0.1 at 2014-04-12 01:59:27 +0100
1283
+ Processing by WidgetsController#show as HTML
1284
+ Parameters: {"id"=>"1"}
1285
+ Completed 200 OK in 0ms (ActiveRecord: 0.0ms)
1286
+  (0.0ms) rollback transaction
1287
+  (0.1ms) begin transaction
1288
+ -------------------------------------------------------------------
1289
+ UncleIntegrationTest: test_returning_the_url_of_the_parent_resource
1290
+ -------------------------------------------------------------------
1291
+ Started GET "/widgets/1/gizmos" for 127.0.0.1 at 2014-04-12 01:59:59 +0100
1292
+ Processing by GizmosController#index as HTML
1293
+ Parameters: {"widget_id"=>"1"}
1294
+ Completed 200 OK in 4ms (Views: 2.8ms | ActiveRecord: 0.0ms)
1295
+  (0.1ms) rollback transaction
1296
+  (0.0ms) begin transaction
1297
+ ----------------------------------------------------------------------------------------------
1298
+ UncleIntegrationTest: test_returning_the_urls_of_children_resources_from_a_collection_resource
1299
+ ----------------------------------------------------------------------------------------------
1300
+ Started GET "/widgets" for 127.0.0.1 at 2014-04-12 01:59:59 +0100
1301
+ Processing by WidgetsController#index as HTML
1302
+ Completed 200 OK in 0ms (ActiveRecord: 0.0ms)
1303
+  (0.1ms) rollback transaction
1304
+  (0.0ms) begin transaction
1305
+ --------------------------------------------------------------------------------------------
1306
+ UncleIntegrationTest: test_returning_the_urls_of_children_resources_from_a_resource_instance
1307
+ --------------------------------------------------------------------------------------------
1308
+ Started GET "/widgets/1" for 127.0.0.1 at 2014-04-12 01:59:59 +0100
1309
+ Processing by WidgetsController#show as HTML
1310
+ Parameters: {"id"=>"1"}
1311
+ Completed 200 OK in 0ms (ActiveRecord: 0.0ms)
1312
+  (0.0ms) rollback transaction
1313
+  (0.1ms) begin transaction
1314
+ -------------------------------------------------------------------
1315
+ UncleIntegrationTest: test_returning_the_url_of_the_parent_resource
1316
+ -------------------------------------------------------------------
1317
+ Started GET "/widgets/1/gizmos" for 127.0.0.1 at 2014-04-12 02:01:33 +0100
1318
+ Processing by GizmosController#index as HTML
1319
+ Parameters: {"widget_id"=>"1"}
1320
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
1321
+  (0.2ms) rollback transaction
1322
+  (0.1ms) begin transaction
1323
+ ----------------------------------------------------------------------------------------------
1324
+ UncleIntegrationTest: test_returning_the_urls_of_children_resources_from_a_collection_resource
1325
+ ----------------------------------------------------------------------------------------------
1326
+ Started GET "/widgets" for 127.0.0.1 at 2014-04-12 02:01:33 +0100
1327
+ Processing by WidgetsController#index as HTML
1328
+ Completed 200 OK in 0ms (ActiveRecord: 0.0ms)
1329
+  (0.1ms) rollback transaction
1330
+  (0.1ms) begin transaction
1331
+ --------------------------------------------------------------------------------------------
1332
+ UncleIntegrationTest: test_returning_the_urls_of_children_resources_from_a_resource_instance
1333
+ --------------------------------------------------------------------------------------------
1334
+ Started GET "/widgets/1" for 127.0.0.1 at 2014-04-12 02:01:33 +0100
1335
+ Processing by WidgetsController#show as HTML
1336
+ Parameters: {"id"=>"1"}
1337
+ Completed 200 OK in 0ms (ActiveRecord: 0.0ms)
1338
+  (0.0ms) rollback transaction
1339
+  (0.1ms) begin transaction
1340
+ ---------------------------------------------------------------------------------
1341
+ UncleIntegrationTest: test_returning_the_child_resources_from_a_resource_instance
1342
+ ---------------------------------------------------------------------------------
1343
+ Started GET "/widgets/1" for 127.0.0.1 at 2014-04-12 02:10:25 +0100
1344
+ Processing by WidgetsController#show as HTML
1345
+ Parameters: {"id"=>"1"}
1346
+ Completed 500 Internal Server Error in 1ms
1347
+  (0.1ms) rollback transaction
1348
+  (0.0ms) begin transaction
1349
+ --------------------------------------------------------
1350
+ UncleIntegrationTest: test_returning_the_parent_resource
1351
+ --------------------------------------------------------
1352
+ Started GET "/widgets/1/gizmos" for 127.0.0.1 at 2014-04-12 02:10:25 +0100
1353
+ Processing by GizmosController#index as HTML
1354
+ Parameters: {"widget_id"=>"1"}
1355
+ Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
1356
+  (0.0ms) rollback transaction
1357
+  (0.1ms) begin transaction
1358
+ ---------------------------------------------------------------------------------
1359
+ UncleIntegrationTest: test_returning_the_child_resources_from_a_resource_instance
1360
+ ---------------------------------------------------------------------------------
1361
+ Started GET "/widgets/1" for 127.0.0.1 at 2014-04-12 02:41:05 +0100
1362
+ Processing by WidgetsController#show as HTML
1363
+ Parameters: {"id"=>"1"}
1364
+ Completed 500 Internal Server Error in 1ms
1365
+  (0.1ms) rollback transaction
1366
+  (0.1ms) begin transaction
1367
+ --------------------------------------------------------
1368
+ UncleIntegrationTest: test_returning_the_parent_resource
1369
+ --------------------------------------------------------
1370
+ Started GET "/widgets/1/gizmos" for 127.0.0.1 at 2014-04-12 02:41:05 +0100
1371
+ Processing by GizmosController#index as HTML
1372
+ Parameters: {"widget_id"=>"1"}
1373
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
1374
+  (0.1ms) rollback transaction
1375
+  (0.1ms) begin transaction
1376
+ ---------------------------------------------------------------------------------
1377
+ UncleIntegrationTest: test_returning_the_child_resources_from_a_resource_instance
1378
+ ---------------------------------------------------------------------------------
1379
+ Started GET "/widgets/1" for 127.0.0.1 at 2014-04-12 02:41:33 +0100
1380
+ Processing by WidgetsController#show as HTML
1381
+ Parameters: {"id"=>"1"}
1382
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
1383
+  (0.1ms) rollback transaction
1384
+  (0.1ms) begin transaction
1385
+ --------------------------------------------------------
1386
+ UncleIntegrationTest: test_returning_the_parent_resource
1387
+ --------------------------------------------------------
1388
+ Started GET "/widgets/1/gizmos" for 127.0.0.1 at 2014-04-12 02:41:33 +0100
1389
+ Processing by GizmosController#index as HTML
1390
+ Parameters: {"widget_id"=>"1"}
1391
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
1392
+  (0.0ms) rollback transaction
1393
+  (0.1ms) begin transaction
1394
+ ---------------------------------------------------------------------------------
1395
+ UncleIntegrationTest: test_returning_the_child_resources_from_a_resource_instance
1396
+ ---------------------------------------------------------------------------------
1397
+ Started GET "/widgets/1" for 127.0.0.1 at 2014-04-12 02:42:28 +0100
1398
+ Processing by WidgetsController#show as HTML
1399
+ Parameters: {"id"=>"1"}
1400
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
1401
+  (0.1ms) rollback transaction
1402
+  (0.0ms) begin transaction
1403
+ --------------------------------------------------------
1404
+ UncleIntegrationTest: test_returning_the_parent_resource
1405
+ --------------------------------------------------------
1406
+ Started GET "/widgets/1/gizmos" for 127.0.0.1 at 2014-04-12 02:42:28 +0100
1407
+ Processing by GizmosController#index as HTML
1408
+ Parameters: {"widget_id"=>"1"}
1409
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
1410
+  (0.1ms) rollback transaction
1411
+  (0.1ms) begin transaction
1412
+ ---------------------------------------------------------------------------------
1413
+ UncleIntegrationTest: test_returning_the_child_resources_from_a_resource_instance
1414
+ ---------------------------------------------------------------------------------
1415
+ Started GET "/widgets/1" for 127.0.0.1 at 2014-04-12 02:44:25 +0100
1416
+ Processing by WidgetsController#show as HTML
1417
+ Parameters: {"id"=>"1"}
1418
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1419
+  (0.2ms) rollback transaction
1420
+  (0.1ms) begin transaction
1421
+ --------------------------------------------------------
1422
+ UncleIntegrationTest: test_returning_the_parent_resource
1423
+ --------------------------------------------------------
1424
+ Started GET "/widgets/1/gizmos" for 127.0.0.1 at 2014-04-12 02:44:25 +0100
1425
+ Processing by GizmosController#index as HTML
1426
+ Parameters: {"widget_id"=>"1"}
1427
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
1428
+  (0.1ms) rollback transaction
1429
+  (0.1ms) begin transaction
1430
+ ---------------------------------------------------------------------------------
1431
+ UncleIntegrationTest: test_returning_the_child_resources_from_a_resource_instance
1432
+ ---------------------------------------------------------------------------------
1433
+ Started GET "/widgets/1" for 127.0.0.1 at 2014-04-12 02:46:00 +0100
1434
+ Processing by WidgetsController#show as HTML
1435
+ Parameters: {"id"=>"1"}
1436
+ Completed 200 OK in 1273706ms (Views: 0.3ms | ActiveRecord: 0.0ms)
1437
+  (0.2ms) rollback transaction
1438
+  (0.1ms) begin transaction
1439
+ --------------------------------------------------------
1440
+ UncleIntegrationTest: test_returning_the_parent_resource
1441
+ --------------------------------------------------------
1442
+ Started GET "/widgets/1/gizmos" for 127.0.0.1 at 2014-04-12 03:07:14 +0100
1443
+ Processing by GizmosController#index as HTML
1444
+ Parameters: {"widget_id"=>"1"}
1445
+ Completed 200 OK in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
1446
+  (0.2ms) rollback transaction
1447
+  (0.1ms) begin transaction
1448
+ ---------------------------------------------------------------------------------
1449
+ UncleIntegrationTest: test_returning_the_child_resources_from_a_resource_instance
1450
+ ---------------------------------------------------------------------------------
1451
+ Started GET "/widgets/1" for 127.0.0.1 at 2014-04-12 03:07:17 +0100
1452
+ Processing by WidgetsController#show as HTML
1453
+ Parameters: {"id"=>"1"}
1454
+ Completed 500 Internal Server Error in 1ms
1455
+  (0.1ms) rollback transaction
1456
+  (0.1ms) begin transaction
1457
+ --------------------------------------------------------
1458
+ UncleIntegrationTest: test_returning_the_parent_resource
1459
+ --------------------------------------------------------
1460
+ Started GET "/widgets/1/gizmos" for 127.0.0.1 at 2014-04-12 03:07:17 +0100
1461
+ Processing by GizmosController#index as HTML
1462
+ Parameters: {"widget_id"=>"1"}
1463
+ Completed 500 Internal Server Error in 1ms
1464
+  (0.0ms) rollback transaction
1465
+  (0.1ms) begin transaction
1466
+ ---------------------------------------------------------------------------------
1467
+ UncleIntegrationTest: test_returning_the_child_resources_from_a_resource_instance
1468
+ ---------------------------------------------------------------------------------
1469
+ Started GET "/widgets/1" for 127.0.0.1 at 2014-04-12 03:08:21 +0100
1470
+ Processing by WidgetsController#show as HTML
1471
+ Parameters: {"id"=>"1"}
1472
+ Completed 200 OK in 721820ms (Views: 0.3ms | ActiveRecord: 0.0ms)
1473
+  (0.1ms) rollback transaction
1474
+  (0.2ms) begin transaction
1475
+ --------------------------------------------------------
1476
+ UncleIntegrationTest: test_returning_the_parent_resource
1477
+ --------------------------------------------------------
1478
+ Started GET "/widgets/1/gizmos" for 127.0.0.1 at 2014-04-12 03:20:23 +0100
1479
+ Processing by GizmosController#index as HTML
1480
+ Parameters: {"widget_id"=>"1"}
1481
+ Completed 200 OK in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
1482
+  (0.1ms) rollback transaction
1483
+  (0.1ms) begin transaction
1484
+ ---------------------------------------------------------------------------------
1485
+ UncleIntegrationTest: test_returning_the_child_resources_from_a_resource_instance
1486
+ ---------------------------------------------------------------------------------
1487
+ Started GET "/widgets/1" for 127.0.0.1 at 2014-04-12 03:20:26 +0100
1488
+ Processing by WidgetsController#show as HTML
1489
+ Parameters: {"id"=>"1"}
1490
+ Completed 500 Internal Server Error in 2ms
1491
+  (0.1ms) rollback transaction
1492
+  (0.1ms) begin transaction
1493
+ --------------------------------------------------------
1494
+ UncleIntegrationTest: test_returning_the_parent_resource
1495
+ --------------------------------------------------------
1496
+ Started GET "/widgets/1/gizmos" for 127.0.0.1 at 2014-04-12 03:20:26 +0100
1497
+ Processing by GizmosController#index as HTML
1498
+ Parameters: {"widget_id"=>"1"}
1499
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
1500
+  (0.0ms) rollback transaction
1501
+  (0.1ms) begin transaction
1502
+ ---------------------------------------------------------------------------------
1503
+ UncleIntegrationTest: test_returning_the_child_resources_from_a_resource_instance
1504
+ ---------------------------------------------------------------------------------
1505
+ Started GET "/widgets/1" for 127.0.0.1 at 2014-04-12 03:20:58 +0100
1506
+ Processing by WidgetsController#show as HTML
1507
+ Parameters: {"id"=>"1"}
1508
+ Completed 200 OK in 349702ms (Views: 0.4ms | ActiveRecord: 0.0ms)
1509
+  (0.2ms) rollback transaction
1510
+  (0.1ms) begin transaction
1511
+ --------------------------------------------------------
1512
+ UncleIntegrationTest: test_returning_the_parent_resource
1513
+ --------------------------------------------------------
1514
+ Started GET "/widgets/1/gizmos" for 127.0.0.1 at 2014-04-12 03:26:48 +0100
1515
+ Processing by GizmosController#index as HTML
1516
+ Parameters: {"widget_id"=>"1"}
1517
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
1518
+  (0.1ms) rollback transaction
1519
+  (0.1ms) begin transaction
1520
+ ---------------------------------------------------------------------------------
1521
+ UncleIntegrationTest: test_returning_the_child_resources_from_a_resource_instance
1522
+ ---------------------------------------------------------------------------------
1523
+ Started GET "/widgets/1" for 127.0.0.1 at 2014-04-12 03:26:51 +0100
1524
+ Processing by WidgetsController#show as HTML
1525
+ Parameters: {"id"=>"1"}
1526
+ Completed 500 Internal Server Error in 2ms
1527
+  (0.1ms) rollback transaction
1528
+  (0.0ms) begin transaction
1529
+ --------------------------------------------------------
1530
+ UncleIntegrationTest: test_returning_the_parent_resource
1531
+ --------------------------------------------------------
1532
+ Started GET "/widgets/1/gizmos" for 127.0.0.1 at 2014-04-12 03:26:51 +0100
1533
+ Processing by GizmosController#index as HTML
1534
+ Parameters: {"widget_id"=>"1"}
1535
+ Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
1536
+  (0.0ms) rollback transaction
1537
+  (0.1ms) begin transaction
1538
+ ---------------------------------------------------------------------------------
1539
+ UncleIntegrationTest: test_returning_the_child_resources_from_a_resource_instance
1540
+ ---------------------------------------------------------------------------------
1541
+ Started GET "/widgets/1" for 127.0.0.1 at 2014-04-12 03:27:08 +0100
1542
+ Processing by WidgetsController#show as HTML
1543
+ Parameters: {"id"=>"1"}
1544
+ Completed 200 OK in 188335ms (Views: 0.5ms | ActiveRecord: 0.0ms)
1545
+  (0.1ms) rollback transaction
1546
+  (0.1ms) begin transaction
1547
+ --------------------------------------------------------
1548
+ UncleIntegrationTest: test_returning_the_parent_resource
1549
+ --------------------------------------------------------
1550
+ Started GET "/widgets/1/gizmos" for 127.0.0.1 at 2014-04-12 03:30:16 +0100
1551
+ Processing by GizmosController#index as HTML
1552
+ Parameters: {"widget_id"=>"1"}
1553
+ Completed 200 OK in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
1554
+  (0.4ms) rollback transaction
1555
+  (0.1ms) begin transaction
1556
+ ---------------------------------------------------------------------------------
1557
+ UncleIntegrationTest: test_returning_the_child_resources_from_a_resource_instance
1558
+ ---------------------------------------------------------------------------------
1559
+ Started GET "/widgets/1" for 127.0.0.1 at 2014-04-12 03:30:19 +0100
1560
+ Processing by WidgetsController#show as HTML
1561
+ Parameters: {"id"=>"1"}
1562
+ Completed 200 OK in 73846ms (Views: 0.5ms | ActiveRecord: 0.0ms)
1563
+  (0.2ms) rollback transaction
1564
+  (0.1ms) begin transaction
1565
+ --------------------------------------------------------
1566
+ UncleIntegrationTest: test_returning_the_parent_resource
1567
+ --------------------------------------------------------
1568
+ Started GET "/widgets/1/gizmos" for 127.0.0.1 at 2014-04-12 03:31:33 +0100
1569
+ Processing by GizmosController#index as HTML
1570
+ Parameters: {"widget_id"=>"1"}
1571
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
1572
+  (0.1ms) rollback transaction
1573
+  (0.1ms) begin transaction
1574
+ ---------------------------------------------------------------------------------
1575
+ UncleIntegrationTest: test_returning_the_child_resources_from_a_resource_instance
1576
+ ---------------------------------------------------------------------------------
1577
+ Started GET "/widgets/1" for 127.0.0.1 at 2014-04-12 03:39:04 +0100
1578
+ Processing by WidgetsController#show as HTML
1579
+ Parameters: {"id"=>"1"}
1580
+ Completed 200 OK in 2280ms (Views: 0.2ms | ActiveRecord: 0.0ms)
1581
+  (0.1ms) rollback transaction
1582
+  (0.0ms) begin transaction
1583
+ --------------------------------------------------------
1584
+ UncleIntegrationTest: test_returning_the_parent_resource
1585
+ --------------------------------------------------------
1586
+ Started GET "/widgets/1/gizmos" for 127.0.0.1 at 2014-04-12 03:39:06 +0100
1587
+ Processing by GizmosController#index as HTML
1588
+ Parameters: {"widget_id"=>"1"}
1589
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
1590
+  (0.0ms) rollback transaction
1591
+  (0.1ms) begin transaction
1592
+ ---------------------------------------------------------------------------------
1593
+ UncleIntegrationTest: test_returning_the_child_resources_from_a_resource_instance
1594
+ ---------------------------------------------------------------------------------
1595
+ Started GET "/widgets/1" for 127.0.0.1 at 2014-04-12 03:41:14 +0100
1596
+ Processing by WidgetsController#show as HTML
1597
+ Parameters: {"id"=>"1"}
1598
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
1599
+  (0.1ms) rollback transaction
1600
+  (0.1ms) begin transaction
1601
+ --------------------------------------------------------
1602
+ UncleIntegrationTest: test_returning_the_parent_resource
1603
+ --------------------------------------------------------
1604
+ Started GET "/widgets/1/gizmos" for 127.0.0.1 at 2014-04-12 03:41:14 +0100
1605
+ Processing by GizmosController#index as HTML
1606
+ Parameters: {"widget_id"=>"1"}
1607
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
1608
+  (0.1ms) rollback transaction
1609
+  (0.1ms) begin transaction
1610
+ ---------------------------------------------------------------------------------
1611
+ UncleIntegrationTest: test_returning_the_child_resources_from_a_resource_instance
1612
+ ---------------------------------------------------------------------------------
1613
+ Started GET "/widgets/1" for 127.0.0.1 at 2014-04-12 03:43:00 +0100
1614
+ Processing by WidgetsController#show as HTML
1615
+ Parameters: {"id"=>"1"}
1616
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
1617
+  (0.1ms) rollback transaction
1618
+  (0.1ms) begin transaction
1619
+ -----------------------------------------------------------------------------------
1620
+ UncleIntegrationTest: test_returning_the_parent_resource_from_a_collection_resource
1621
+ -----------------------------------------------------------------------------------
1622
+ Started GET "/widgets/1/gizmos" for 127.0.0.1 at 2014-04-12 03:43:00 +0100
1623
+ Processing by GizmosController#index as HTML
1624
+ Parameters: {"widget_id"=>"1"}
1625
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
1626
+  (0.1ms) rollback transaction
1627
+  (0.2ms) begin transaction
1628
+ ---------------------------------------------------------------------------------
1629
+ UncleIntegrationTest: test_returning_the_parent_resource_from_a_resource_instance
1630
+ ---------------------------------------------------------------------------------
1631
+ Started GET "/widgets/1" for 127.0.0.1 at 2014-04-12 03:43:00 +0100
1632
+ Processing by WidgetsController#show as HTML
1633
+ Parameters: {"id"=>"1"}
1634
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1635
+  (0.1ms) rollback transaction
1636
+  (0.2ms) begin transaction
1637
+ ---------------------------------------------------------------------------------
1638
+ UncleIntegrationTest: test_returning_the_child_resources_from_a_resource_instance
1639
+ ---------------------------------------------------------------------------------
1640
+ Started GET "/widgets/1" for 127.0.0.1 at 2014-04-12 03:46:15 +0100
1641
+ Processing by WidgetsController#show as HTML
1642
+ Parameters: {"id"=>"1"}
1643
+ Completed 200 OK in 2ms (Views: 0.6ms | ActiveRecord: 0.0ms)
1644
+  (0.4ms) rollback transaction
1645
+  (0.2ms) begin transaction
1646
+ -----------------------------------------------------------------------------------
1647
+ UncleIntegrationTest: test_returning_the_parent_resource_from_a_collection_resource
1648
+ -----------------------------------------------------------------------------------
1649
+ Started GET "/widgets/1/gizmos" for 127.0.0.1 at 2014-04-12 03:46:15 +0100
1650
+ Processing by GizmosController#index as HTML
1651
+ Parameters: {"widget_id"=>"1"}
1652
+ Completed 200 OK in 2ms (Views: 0.6ms | ActiveRecord: 0.0ms)
1653
+  (0.2ms) rollback transaction
1654
+  (0.3ms) begin transaction
1655
+ ---------------------------------------------------------------------------------
1656
+ UncleIntegrationTest: test_returning_the_parent_resource_from_a_resource_instance
1657
+ ---------------------------------------------------------------------------------
1658
+ Started GET "/wibbles/1" for 127.0.0.1 at 2014-04-12 03:46:15 +0100
1659
+  (0.1ms) rollback transaction
1660
+  (0.2ms) begin transaction
1661
+ ---------------------------------------------------------------------------------
1662
+ UncleIntegrationTest: test_returning_the_child_resources_from_a_resource_instance
1663
+ ---------------------------------------------------------------------------------
1664
+ Started GET "/widgets/1" for 127.0.0.1 at 2014-04-12 03:46:44 +0100
1665
+ Processing by WidgetsController#show as HTML
1666
+ Parameters: {"id"=>"1"}
1667
+ Completed 200 OK in 2ms (Views: 0.7ms | ActiveRecord: 0.0ms)
1668
+  (0.4ms) rollback transaction
1669
+  (0.2ms) begin transaction
1670
+ -----------------------------------------------------------------------------------
1671
+ UncleIntegrationTest: test_returning_the_parent_resource_from_a_collection_resource
1672
+ -----------------------------------------------------------------------------------
1673
+ Started GET "/widgets/1/gizmos" for 127.0.0.1 at 2014-04-12 03:46:44 +0100
1674
+ Processing by GizmosController#index as HTML
1675
+ Parameters: {"widget_id"=>"1"}
1676
+ Completed 200 OK in 2ms (Views: 0.6ms | ActiveRecord: 0.0ms)
1677
+  (0.2ms) rollback transaction
1678
+  (0.2ms) begin transaction
1679
+ ---------------------------------------------------------------------------------
1680
+ UncleIntegrationTest: test_returning_the_parent_resource_from_a_resource_instance
1681
+ ---------------------------------------------------------------------------------
1682
+ Started GET "/thingies/1" for 127.0.0.1 at 2014-04-12 03:46:44 +0100
1683
+ Processing by ThingiesController#show as HTML
1684
+ Parameters: {"id"=>"1"}
1685
+ Completed 200 OK in 2ms (Views: 0.5ms | ActiveRecord: 0.0ms)
1686
+  (0.4ms) rollback transaction
1687
+  (0.2ms) begin transaction
1688
+ ---------------------------------------------------------------------------------
1689
+ UncleIntegrationTest: test_returning_the_child_resources_from_a_resource_instance
1690
+ ---------------------------------------------------------------------------------
1691
+ Started GET "/widgets/1" for 127.0.0.1 at 2014-04-12 03:47:03 +0100
1692
+ Processing by WidgetsController#show as HTML
1693
+ Parameters: {"id"=>"1"}
1694
+ Completed 200 OK in 2ms (Views: 0.6ms | ActiveRecord: 0.0ms)
1695
+  (0.4ms) rollback transaction
1696
+  (0.2ms) begin transaction
1697
+ -----------------------------------------------------------------------------------
1698
+ UncleIntegrationTest: test_returning_the_parent_resource_from_a_collection_resource
1699
+ -----------------------------------------------------------------------------------
1700
+ Started GET "/widgets/1/gizmos" for 127.0.0.1 at 2014-04-12 03:47:03 +0100
1701
+ Processing by GizmosController#index as HTML
1702
+ Parameters: {"widget_id"=>"1"}
1703
+ Completed 200 OK in 2ms (Views: 0.6ms | ActiveRecord: 0.0ms)
1704
+  (0.2ms) rollback transaction
1705
+  (0.1ms) begin transaction
1706
+ ---------------------------------------------------------------------------------
1707
+ UncleIntegrationTest: test_returning_the_parent_resource_from_a_resource_instance
1708
+ ---------------------------------------------------------------------------------
1709
+ Started GET "/thingies/1" for 127.0.0.1 at 2014-04-12 03:47:03 +0100
1710
+ Processing by ThingiesController#show as HTML
1711
+ Parameters: {"id"=>"1"}
1712
+ Completed 200 OK in 2ms (Views: 0.4ms | ActiveRecord: 0.0ms)
1713
+  (0.2ms) rollback transaction
1714
+  (0.1ms) begin transaction
1715
+ ---------------------------------------------------------------------------------
1716
+ UncleIntegrationTest: test_returning_the_child_resources_from_a_resource_instance
1717
+ ---------------------------------------------------------------------------------
1718
+ Started GET "/widgets/1" for 127.0.0.1 at 2014-04-13 00:09:09 +0100
1719
+ Processing by WidgetsController#show as HTML
1720
+ Parameters: {"id"=>"1"}
1721
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
1722
+  (0.2ms) rollback transaction
1723
+  (0.0ms) begin transaction
1724
+ -----------------------------------------------------------------------------------
1725
+ UncleIntegrationTest: test_returning_the_parent_resource_from_a_collection_resource
1726
+ -----------------------------------------------------------------------------------
1727
+ Started GET "/widgets/1/gizmos" for 127.0.0.1 at 2014-04-13 00:09:09 +0100
1728
+ Processing by GizmosController#index as HTML
1729
+ Parameters: {"widget_id"=>"1"}
1730
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
1731
+  (0.1ms) rollback transaction
1732
+  (0.1ms) begin transaction
1733
+ ---------------------------------------------------------------------------------
1734
+ UncleIntegrationTest: test_returning_the_parent_resource_from_a_resource_instance
1735
+ ---------------------------------------------------------------------------------
1736
+ Started GET "/thingies/1" for 127.0.0.1 at 2014-04-13 00:09:09 +0100
1737
+ Processing by ThingiesController#show as HTML
1738
+ Parameters: {"id"=>"1"}
1739
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
1740
+  (0.1ms) rollback transaction
1741
+  (0.1ms) begin transaction
1742
+ ---------------------------------------------------------------------------------
1743
+ UncleIntegrationTest: test_returning_the_child_resources_from_a_resource_instance
1744
+ ---------------------------------------------------------------------------------
1745
+ Started GET "/widgets/1" for 127.0.0.1 at 2014-04-13 00:18:25 +0100
1746
+ Processing by WidgetsController#show as HTML
1747
+ Parameters: {"id"=>"1"}
1748
+ Completed 500 Internal Server Error in 0ms
1749
+  (0.1ms) rollback transaction
1750
+  (0.0ms) begin transaction
1751
+ -----------------------------------------------------------------------------------
1752
+ UncleIntegrationTest: test_returning_the_parent_resource_from_a_collection_resource
1753
+ -----------------------------------------------------------------------------------
1754
+ Started GET "/widgets/1/gizmos" for 127.0.0.1 at 2014-04-13 00:18:25 +0100
1755
+ Processing by GizmosController#index as HTML
1756
+ Parameters: {"widget_id"=>"1"}
1757
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
1758
+  (0.0ms) rollback transaction
1759
+  (0.0ms) begin transaction
1760
+ ---------------------------------------------------------------------------------
1761
+ UncleIntegrationTest: test_returning_the_parent_resource_from_a_resource_instance
1762
+ ---------------------------------------------------------------------------------
1763
+ Started GET "/thingies/1" for 127.0.0.1 at 2014-04-13 00:18:25 +0100
1764
+ Processing by ThingiesController#show as HTML
1765
+ Parameters: {"id"=>"1"}
1766
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1767
+  (0.0ms) rollback transaction
1768
+  (0.1ms) begin transaction
1769
+ ---------------------------------------------------------------------------------
1770
+ UncleIntegrationTest: test_returning_the_child_resources_from_a_resource_instance
1771
+ ---------------------------------------------------------------------------------
1772
+ Started GET "/widgets/1" for 127.0.0.1 at 2014-04-13 00:19:46 +0100
1773
+ Processing by WidgetsController#show as HTML
1774
+ Parameters: {"id"=>"1"}
1775
+ Completed 500 Internal Server Error in 27675ms
1776
+  (0.1ms) rollback transaction
1777
+  (0.1ms) begin transaction
1778
+ -----------------------------------------------------------------------------------
1779
+ UncleIntegrationTest: test_returning_the_parent_resource_from_a_collection_resource
1780
+ -----------------------------------------------------------------------------------
1781
+ Started GET "/widgets/1/gizmos" for 127.0.0.1 at 2014-04-13 00:20:14 +0100
1782
+ Processing by GizmosController#index as HTML
1783
+ Parameters: {"widget_id"=>"1"}
1784
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
1785
+  (0.1ms) rollback transaction
1786
+  (0.0ms) begin transaction
1787
+ ---------------------------------------------------------------------------------
1788
+ UncleIntegrationTest: test_returning_the_parent_resource_from_a_resource_instance
1789
+ ---------------------------------------------------------------------------------
1790
+ Started GET "/thingies/1" for 127.0.0.1 at 2014-04-13 00:20:14 +0100
1791
+ Processing by ThingiesController#show as HTML
1792
+ Parameters: {"id"=>"1"}
1793
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1794
+  (0.1ms) rollback transaction
1795
+  (0.1ms) begin transaction
1796
+ ---------------------------------------------------------------------------------
1797
+ UncleIntegrationTest: test_returning_the_child_resources_from_a_resource_instance
1798
+ ---------------------------------------------------------------------------------
1799
+ Started GET "/widgets/1" for 127.0.0.1 at 2014-04-13 00:20:23 +0100
1800
+ Processing by WidgetsController#show as HTML
1801
+ Parameters: {"id"=>"1"}
1802
+ Completed 500 Internal Server Error in 2ms
1803
+  (0.1ms) rollback transaction
1804
+  (0.0ms) begin transaction
1805
+ -----------------------------------------------------------------------------------
1806
+ UncleIntegrationTest: test_returning_the_parent_resource_from_a_collection_resource
1807
+ -----------------------------------------------------------------------------------
1808
+ Started GET "/widgets/1/gizmos" for 127.0.0.1 at 2014-04-13 00:20:23 +0100
1809
+ Processing by GizmosController#index as HTML
1810
+ Parameters: {"widget_id"=>"1"}
1811
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
1812
+  (0.0ms) rollback transaction
1813
+  (0.0ms) begin transaction
1814
+ ---------------------------------------------------------------------------------
1815
+ UncleIntegrationTest: test_returning_the_parent_resource_from_a_resource_instance
1816
+ ---------------------------------------------------------------------------------
1817
+ Started GET "/thingies/1" for 127.0.0.1 at 2014-04-13 00:20:23 +0100
1818
+ Processing by ThingiesController#show as HTML
1819
+ Parameters: {"id"=>"1"}
1820
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1821
+  (0.1ms) rollback transaction
1822
+  (0.1ms) begin transaction
1823
+ ---------------------------------------------------------------------------------
1824
+ UncleIntegrationTest: test_returning_the_child_resources_from_a_resource_instance
1825
+ ---------------------------------------------------------------------------------
1826
+ Started GET "/widgets/1" for 127.0.0.1 at 2014-04-13 00:21:07 +0100
1827
+ Processing by WidgetsController#show as HTML
1828
+ Parameters: {"id"=>"1"}
1829
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
1830
+  (0.1ms) rollback transaction
1831
+  (0.0ms) begin transaction
1832
+ -----------------------------------------------------------------------------------
1833
+ UncleIntegrationTest: test_returning_the_parent_resource_from_a_collection_resource
1834
+ -----------------------------------------------------------------------------------
1835
+ Started GET "/widgets/1/gizmos" for 127.0.0.1 at 2014-04-13 00:21:07 +0100
1836
+ Processing by GizmosController#index as HTML
1837
+ Parameters: {"widget_id"=>"1"}
1838
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
1839
+  (0.1ms) rollback transaction
1840
+  (0.1ms) begin transaction
1841
+ ---------------------------------------------------------------------------------
1842
+ UncleIntegrationTest: test_returning_the_parent_resource_from_a_resource_instance
1843
+ ---------------------------------------------------------------------------------
1844
+ Started GET "/thingies/1" for 127.0.0.1 at 2014-04-13 00:21:07 +0100
1845
+ Processing by ThingiesController#show as HTML
1846
+ Parameters: {"id"=>"1"}
1847
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
1848
+  (0.1ms) rollback transaction
1849
+  (0.1ms) begin transaction
1850
+ ---------------------------------------------------------------------------------
1851
+ UncleIntegrationTest: test_returning_the_child_resources_from_a_resource_instance
1852
+ ---------------------------------------------------------------------------------
1853
+ Started GET "/widgets/1" for 127.0.0.1 at 2014-04-13 00:21:21 +0100
1854
+ Processing by WidgetsController#show as HTML
1855
+ Parameters: {"id"=>"1"}
1856
+ Completed 200 OK in 54533ms (Views: 0.4ms | ActiveRecord: 0.0ms)
1857
+  (0.2ms) rollback transaction
1858
+  (0.1ms) begin transaction
1859
+ -----------------------------------------------------------------------------------
1860
+ UncleIntegrationTest: test_returning_the_parent_resource_from_a_collection_resource
1861
+ -----------------------------------------------------------------------------------
1862
+ Started GET "/widgets/1/gizmos" for 127.0.0.1 at 2014-04-13 00:22:16 +0100
1863
+ Processing by GizmosController#index as HTML
1864
+ Parameters: {"widget_id"=>"1"}
1865
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
1866
+  (0.1ms) rollback transaction
1867
+  (0.1ms) begin transaction
1868
+ ---------------------------------------------------------------------------------
1869
+ UncleIntegrationTest: test_returning_the_parent_resource_from_a_resource_instance
1870
+ ---------------------------------------------------------------------------------
1871
+ Started GET "/thingies/1" for 127.0.0.1 at 2014-04-13 00:22:16 +0100
1872
+ Processing by ThingiesController#show as HTML
1873
+ Parameters: {"id"=>"1"}
1874
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
1875
+  (0.1ms) rollback transaction
1876
+  (0.1ms) begin transaction
1877
+ ---------------------------------------------------------------------------------
1878
+ UncleIntegrationTest: test_returning_the_child_resources_from_a_resource_instance
1879
+ ---------------------------------------------------------------------------------
1880
+ Started GET "/widgets/1" for 127.0.0.1 at 2014-04-13 00:22:19 +0100
1881
+ Processing by WidgetsController#show as HTML
1882
+ Parameters: {"id"=>"1"}
1883
+ Completed 500 Internal Server Error in 1005ms
1884
+  (0.1ms) rollback transaction
1885
+  (0.1ms) begin transaction
1886
+ -----------------------------------------------------------------------------------
1887
+ UncleIntegrationTest: test_returning_the_parent_resource_from_a_collection_resource
1888
+ -----------------------------------------------------------------------------------
1889
+ Started GET "/widgets/1/gizmos" for 127.0.0.1 at 2014-04-13 00:22:20 +0100
1890
+ Processing by GizmosController#index as HTML
1891
+ Parameters: {"widget_id"=>"1"}
1892
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
1893
+  (0.0ms) rollback transaction
1894
+  (0.0ms) begin transaction
1895
+ ---------------------------------------------------------------------------------
1896
+ UncleIntegrationTest: test_returning_the_parent_resource_from_a_resource_instance
1897
+ ---------------------------------------------------------------------------------
1898
+ Started GET "/thingies/1" for 127.0.0.1 at 2014-04-13 00:22:20 +0100
1899
+ Processing by ThingiesController#show as HTML
1900
+ Parameters: {"id"=>"1"}
1901
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1902
+  (0.0ms) rollback transaction
1903
+  (0.1ms) begin transaction
1904
+ ---------------------------------------------------------------------------------
1905
+ UncleIntegrationTest: test_returning_the_child_resources_from_a_resource_instance
1906
+ ---------------------------------------------------------------------------------
1907
+ Started GET "/widgets/1" for 127.0.0.1 at 2014-04-13 00:22:34 +0100
1908
+ Processing by WidgetsController#show as HTML
1909
+ Parameters: {"id"=>"1"}
1910
+ Completed 200 OK in 1000ms (Views: 0.3ms | ActiveRecord: 0.0ms)
1911
+  (0.1ms) rollback transaction
1912
+  (0.1ms) begin transaction
1913
+ -----------------------------------------------------------------------------------
1914
+ UncleIntegrationTest: test_returning_the_parent_resource_from_a_collection_resource
1915
+ -----------------------------------------------------------------------------------
1916
+ Started GET "/widgets/1/gizmos" for 127.0.0.1 at 2014-04-13 00:22:35 +0100
1917
+ Processing by GizmosController#index as HTML
1918
+ Parameters: {"widget_id"=>"1"}
1919
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
1920
+  (0.1ms) rollback transaction
1921
+  (0.1ms) begin transaction
1922
+ ---------------------------------------------------------------------------------
1923
+ UncleIntegrationTest: test_returning_the_parent_resource_from_a_resource_instance
1924
+ ---------------------------------------------------------------------------------
1925
+ Started GET "/thingies/1" for 127.0.0.1 at 2014-04-13 00:22:35 +0100
1926
+ Processing by ThingiesController#show as HTML
1927
+ Parameters: {"id"=>"1"}
1928
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1929
+  (0.1ms) rollback transaction
1930
+  (0.1ms) begin transaction
1931
+ ---------------------------------------------------------------------------------
1932
+ UncleIntegrationTest: test_returning_the_child_resources_from_a_resource_instance
1933
+ ---------------------------------------------------------------------------------
1934
+ Started GET "/widgets/1" for 127.0.0.1 at 2014-04-13 00:22:49 +0100
1935
+ Processing by WidgetsController#show as HTML
1936
+ Parameters: {"id"=>"1"}
1937
+ Completed 200 OK in 53258ms (Views: 0.4ms | ActiveRecord: 0.0ms)
1938
+  (0.3ms) rollback transaction
1939
+  (0.1ms) begin transaction
1940
+ -----------------------------------------------------------------------------------
1941
+ UncleIntegrationTest: test_returning_the_parent_resource_from_a_collection_resource
1942
+ -----------------------------------------------------------------------------------
1943
+ Started GET "/widgets/1/gizmos" for 127.0.0.1 at 2014-04-13 00:23:42 +0100
1944
+ Processing by GizmosController#index as HTML
1945
+ Parameters: {"widget_id"=>"1"}
1946
+ Completed 200 OK in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
1947
+  (0.1ms) rollback transaction
1948
+  (0.1ms) begin transaction
1949
+ ---------------------------------------------------------------------------------
1950
+ UncleIntegrationTest: test_returning_the_parent_resource_from_a_resource_instance
1951
+ ---------------------------------------------------------------------------------
1952
+ Started GET "/thingies/1" for 127.0.0.1 at 2014-04-13 00:23:42 +0100
1953
+ Processing by ThingiesController#show as HTML
1954
+ Parameters: {"id"=>"1"}
1955
+ Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
1956
+  (0.1ms) rollback transaction
1957
+  (0.1ms) begin transaction
1958
+ ---------------------------------------------------------------------------------
1959
+ UncleIntegrationTest: test_returning_the_child_resources_from_a_resource_instance
1960
+ ---------------------------------------------------------------------------------
1961
+ Started GET "/widgets/1" for 127.0.0.1 at 2014-04-13 00:23:45 +0100
1962
+ Processing by WidgetsController#show as HTML
1963
+ Parameters: {"id"=>"1"}
1964
+ Completed 200 OK in 5237ms (Views: 0.4ms | ActiveRecord: 0.0ms)
1965
+  (0.1ms) rollback transaction
1966
+  (0.1ms) begin transaction
1967
+ -----------------------------------------------------------------------------------
1968
+ UncleIntegrationTest: test_returning_the_parent_resource_from_a_collection_resource
1969
+ -----------------------------------------------------------------------------------
1970
+ Started GET "/widgets/1/gizmos" for 127.0.0.1 at 2014-04-13 00:23:51 +0100
1971
+ Processing by GizmosController#index as HTML
1972
+ Parameters: {"widget_id"=>"1"}
1973
+ Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1974
+  (0.1ms) rollback transaction
1975
+  (0.0ms) begin transaction
1976
+ ---------------------------------------------------------------------------------
1977
+ UncleIntegrationTest: test_returning_the_parent_resource_from_a_resource_instance
1978
+ ---------------------------------------------------------------------------------
1979
+ Started GET "/thingies/1" for 127.0.0.1 at 2014-04-13 00:23:51 +0100
1980
+ Processing by ThingiesController#show as HTML
1981
+ Parameters: {"id"=>"1"}
1982
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1983
+  (0.1ms) rollback transaction
1984
+  (0.1ms) begin transaction
1985
+ ---------------------------------------------------------------------------------
1986
+ UncleIntegrationTest: test_returning_the_child_resources_from_a_resource_instance
1987
+ ---------------------------------------------------------------------------------
1988
+ Started GET "/widgets/1" for 127.0.0.1 at 2014-04-13 00:29:57 +0100
1989
+ Processing by WidgetsController#show as HTML
1990
+ Parameters: {"id"=>"1"}
1991
+ Completed 500 Internal Server Error in 2ms
1992
+  (0.1ms) rollback transaction
1993
+  (0.0ms) begin transaction
1994
+ -----------------------------------------------------------------------------------
1995
+ UncleIntegrationTest: test_returning_the_parent_resource_from_a_collection_resource
1996
+ -----------------------------------------------------------------------------------
1997
+ Started GET "/widgets/1/gizmos" for 127.0.0.1 at 2014-04-13 00:29:57 +0100
1998
+ Processing by GizmosController#index as HTML
1999
+ Parameters: {"widget_id"=>"1"}
2000
+ Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
2001
+  (0.0ms) rollback transaction
2002
+  (0.0ms) begin transaction
2003
+ ---------------------------------------------------------------------------------
2004
+ UncleIntegrationTest: test_returning_the_parent_resource_from_a_resource_instance
2005
+ ---------------------------------------------------------------------------------
2006
+ Started GET "/thingies/1" for 127.0.0.1 at 2014-04-13 00:29:57 +0100
2007
+ Processing by ThingiesController#show as HTML
2008
+ Parameters: {"id"=>"1"}
2009
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2010
+  (0.1ms) rollback transaction
2011
+  (0.1ms) begin transaction
2012
+ ---------------------------------------------------------------------------------
2013
+ UncleIntegrationTest: test_returning_the_child_resources_from_a_resource_instance
2014
+ ---------------------------------------------------------------------------------
2015
+ Started GET "/widgets/1" for 127.0.0.1 at 2014-04-13 00:30:09 +0100
2016
+ Processing by WidgetsController#show as HTML
2017
+ Parameters: {"id"=>"1"}
2018
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
2019
+  (0.1ms) rollback transaction
2020
+  (0.0ms) begin transaction
2021
+ -----------------------------------------------------------------------------------
2022
+ UncleIntegrationTest: test_returning_the_parent_resource_from_a_collection_resource
2023
+ -----------------------------------------------------------------------------------
2024
+ Started GET "/widgets/1/gizmos" for 127.0.0.1 at 2014-04-13 00:30:09 +0100
2025
+ Processing by GizmosController#index as HTML
2026
+ Parameters: {"widget_id"=>"1"}
2027
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2028
+  (0.1ms) rollback transaction
2029
+  (0.0ms) begin transaction
2030
+ ---------------------------------------------------------------------------------
2031
+ UncleIntegrationTest: test_returning_the_parent_resource_from_a_resource_instance
2032
+ ---------------------------------------------------------------------------------
2033
+ Started GET "/thingies/1" for 127.0.0.1 at 2014-04-13 00:30:09 +0100
2034
+ Processing by ThingiesController#show as HTML
2035
+ Parameters: {"id"=>"1"}
2036
+ Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2037
+  (0.1ms) rollback transaction
2038
+  (0.1ms) begin transaction
2039
+ ---------------------------------------------------------------------------------
2040
+ UncleIntegrationTest: test_returning_the_child_resources_from_a_resource_instance
2041
+ ---------------------------------------------------------------------------------
2042
+ Started GET "/widgets/1" for 127.0.0.1 at 2014-04-13 20:20:04 +0100
2043
+ Processing by WidgetsController#show as HTML
2044
+ Parameters: {"id"=>"1"}
2045
+ Completed 500 Internal Server Error in 2ms
2046
+  (0.1ms) rollback transaction
2047
+  (0.0ms) begin transaction
2048
+ -----------------------------------------------------------------------------------
2049
+ UncleIntegrationTest: test_returning_the_parent_resource_from_a_collection_resource
2050
+ -----------------------------------------------------------------------------------
2051
+ Started GET "/widgets/1/gizmos" for 127.0.0.1 at 2014-04-13 20:20:04 +0100
2052
+ Processing by GizmosController#index as HTML
2053
+ Parameters: {"widget_id"=>"1"}
2054
+ Completed 500 Internal Server Error in 1ms
2055
+  (0.1ms) rollback transaction
2056
+  (0.0ms) begin transaction
2057
+ ---------------------------------------------------------------------------------
2058
+ UncleIntegrationTest: test_returning_the_parent_resource_from_a_resource_instance
2059
+ ---------------------------------------------------------------------------------
2060
+ Started GET "/thingies/1" for 127.0.0.1 at 2014-04-13 20:20:04 +0100
2061
+ Processing by ThingiesController#show as HTML
2062
+ Parameters: {"id"=>"1"}
2063
+ Completed 500 Internal Server Error in 1ms
2064
+  (0.1ms) rollback transaction
2065
+  (0.1ms) begin transaction
2066
+ ---------------------------------------------------------------------------------
2067
+ UncleIntegrationTest: test_returning_the_child_resources_from_a_resource_instance
2068
+ ---------------------------------------------------------------------------------
2069
+ Started GET "/widgets/1" for 127.0.0.1 at 2014-04-13 20:20:51 +0100
2070
+ Processing by WidgetsController#show as HTML
2071
+ Parameters: {"id"=>"1"}
2072
+ Completed 500 Internal Server Error in 1ms
2073
+  (0.1ms) rollback transaction
2074
+  (0.0ms) begin transaction
2075
+ -----------------------------------------------------------------------------------
2076
+ UncleIntegrationTest: test_returning_the_parent_resource_from_a_collection_resource
2077
+ -----------------------------------------------------------------------------------
2078
+ Started GET "/widgets/1/gizmos" for 127.0.0.1 at 2014-04-13 20:20:51 +0100
2079
+ Processing by GizmosController#index as HTML
2080
+ Parameters: {"widget_id"=>"1"}
2081
+ Completed 500 Internal Server Error in 1ms
2082
+  (0.1ms) rollback transaction
2083
+  (0.1ms) begin transaction
2084
+ ---------------------------------------------------------------------------------
2085
+ UncleIntegrationTest: test_returning_the_parent_resource_from_a_resource_instance
2086
+ ---------------------------------------------------------------------------------
2087
+ Started GET "/thingies/1" for 127.0.0.1 at 2014-04-13 20:20:51 +0100
2088
+ Processing by ThingiesController#show as HTML
2089
+ Parameters: {"id"=>"1"}
2090
+ Completed 500 Internal Server Error in 1ms
2091
+  (0.1ms) rollback transaction
2092
+  (0.1ms) begin transaction
2093
+ ---------------------------------------------------------------------------------
2094
+ UncleIntegrationTest: test_returning_the_child_resources_from_a_resource_instance
2095
+ ---------------------------------------------------------------------------------
2096
+ Started GET "/widgets/1" for 127.0.0.1 at 2014-04-13 20:21:39 +0100
2097
+ Processing by WidgetsController#show as HTML
2098
+ Parameters: {"id"=>"1"}
2099
+ Completed 500 Internal Server Error in 1ms
2100
+  (0.1ms) rollback transaction
2101
+  (0.0ms) begin transaction
2102
+ -----------------------------------------------------------------------------------
2103
+ UncleIntegrationTest: test_returning_the_parent_resource_from_a_collection_resource
2104
+ -----------------------------------------------------------------------------------
2105
+ Started GET "/widgets/1/gizmos" for 127.0.0.1 at 2014-04-13 20:21:39 +0100
2106
+ Processing by GizmosController#index as HTML
2107
+ Parameters: {"widget_id"=>"1"}
2108
+ Completed 500 Internal Server Error in 1ms
2109
+  (0.0ms) rollback transaction
2110
+  (0.0ms) begin transaction
2111
+ ---------------------------------------------------------------------------------
2112
+ UncleIntegrationTest: test_returning_the_parent_resource_from_a_resource_instance
2113
+ ---------------------------------------------------------------------------------
2114
+ Started GET "/thingies/1" for 127.0.0.1 at 2014-04-13 20:21:39 +0100
2115
+ Processing by ThingiesController#show as HTML
2116
+ Parameters: {"id"=>"1"}
2117
+ Completed 500 Internal Server Error in 1ms
2118
+  (0.1ms) rollback transaction
2119
+  (0.1ms) begin transaction
2120
+ ---------------------------------------------------------------------------------
2121
+ UncleIntegrationTest: test_returning_the_child_resources_from_a_resource_instance
2122
+ ---------------------------------------------------------------------------------
2123
+ Started GET "/widgets/1" for 127.0.0.1 at 2014-04-13 20:22:54 +0100
2124
+ Processing by WidgetsController#show as HTML
2125
+ Parameters: {"id"=>"1"}
2126
+ Completed 500 Internal Server Error in 1ms
2127
+  (0.1ms) rollback transaction
2128
+  (0.0ms) begin transaction
2129
+ -----------------------------------------------------------------------------------
2130
+ UncleIntegrationTest: test_returning_the_parent_resource_from_a_collection_resource
2131
+ -----------------------------------------------------------------------------------
2132
+ Started GET "/widgets/1/gizmos" for 127.0.0.1 at 2014-04-13 20:22:54 +0100
2133
+ Processing by GizmosController#index as HTML
2134
+ Parameters: {"widget_id"=>"1"}
2135
+ Completed 500 Internal Server Error in 1ms
2136
+  (0.0ms) rollback transaction
2137
+  (0.0ms) begin transaction
2138
+ ---------------------------------------------------------------------------------
2139
+ UncleIntegrationTest: test_returning_the_parent_resource_from_a_resource_instance
2140
+ ---------------------------------------------------------------------------------
2141
+ Started GET "/thingies/1" for 127.0.0.1 at 2014-04-13 20:22:54 +0100
2142
+ Processing by ThingiesController#show as HTML
2143
+ Parameters: {"id"=>"1"}
2144
+ Completed 500 Internal Server Error in 1ms
2145
+  (0.1ms) rollback transaction
2146
+  (0.1ms) begin transaction
2147
+ ---------------------------------------------------------------------------------
2148
+ UncleIntegrationTest: test_returning_the_child_resources_from_a_resource_instance
2149
+ ---------------------------------------------------------------------------------
2150
+ Started GET "/widgets/1" for 127.0.0.1 at 2014-04-13 20:23:28 +0100
2151
+ Processing by WidgetsController#show as HTML
2152
+ Parameters: {"id"=>"1"}
2153
+ Completed 500 Internal Server Error in 1ms
2154
+  (0.1ms) rollback transaction
2155
+  (0.0ms) begin transaction
2156
+ -----------------------------------------------------------------------------------
2157
+ UncleIntegrationTest: test_returning_the_parent_resource_from_a_collection_resource
2158
+ -----------------------------------------------------------------------------------
2159
+ Started GET "/widgets/1/gizmos" for 127.0.0.1 at 2014-04-13 20:23:28 +0100
2160
+ Processing by GizmosController#index as HTML
2161
+ Parameters: {"widget_id"=>"1"}
2162
+ Completed 500 Internal Server Error in 1ms
2163
+  (0.1ms) rollback transaction
2164
+  (0.0ms) begin transaction
2165
+ ---------------------------------------------------------------------------------
2166
+ UncleIntegrationTest: test_returning_the_parent_resource_from_a_resource_instance
2167
+ ---------------------------------------------------------------------------------
2168
+ Started GET "/thingies/1" for 127.0.0.1 at 2014-04-13 20:23:28 +0100
2169
+ Processing by ThingiesController#show as HTML
2170
+ Parameters: {"id"=>"1"}
2171
+ Completed 500 Internal Server Error in 1ms
2172
+  (0.1ms) rollback transaction
2173
+  (0.1ms) begin transaction
2174
+ ---------------------------------------------------------------------------------
2175
+ UncleIntegrationTest: test_returning_the_child_resources_from_a_resource_instance
2176
+ ---------------------------------------------------------------------------------
2177
+ Started GET "/widgets/1" for 127.0.0.1 at 2014-04-13 20:23:48 +0100
2178
+ Processing by WidgetsController#show as HTML
2179
+ Parameters: {"id"=>"1"}
2180
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
2181
+  (0.1ms) rollback transaction
2182
+  (0.0ms) begin transaction
2183
+ -----------------------------------------------------------------------------------
2184
+ UncleIntegrationTest: test_returning_the_parent_resource_from_a_collection_resource
2185
+ -----------------------------------------------------------------------------------
2186
+ Started GET "/widgets/1/gizmos" for 127.0.0.1 at 2014-04-13 20:23:48 +0100
2187
+ Processing by GizmosController#index as HTML
2188
+ Parameters: {"widget_id"=>"1"}
2189
+ Completed 500 Internal Server Error in 2ms
2190
+  (0.1ms) rollback transaction
2191
+  (0.1ms) begin transaction
2192
+ ---------------------------------------------------------------------------------
2193
+ UncleIntegrationTest: test_returning_the_parent_resource_from_a_resource_instance
2194
+ ---------------------------------------------------------------------------------
2195
+ Started GET "/thingies/1" for 127.0.0.1 at 2014-04-13 20:23:48 +0100
2196
+ Processing by ThingiesController#show as HTML
2197
+ Parameters: {"id"=>"1"}
2198
+ Completed 500 Internal Server Error in 2ms
2199
+  (0.1ms) rollback transaction
2200
+  (0.1ms) begin transaction
2201
+ ---------------------------------------------------------------------------------
2202
+ UncleIntegrationTest: test_returning_the_child_resources_from_a_resource_instance
2203
+ ---------------------------------------------------------------------------------
2204
+ Started GET "/widgets/1" for 127.0.0.1 at 2014-04-13 20:24:12 +0100
2205
+ Processing by WidgetsController#show as HTML
2206
+ Parameters: {"id"=>"1"}
2207
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
2208
+  (0.1ms) rollback transaction
2209
+  (0.0ms) begin transaction
2210
+ -----------------------------------------------------------------------------------
2211
+ UncleIntegrationTest: test_returning_the_parent_resource_from_a_collection_resource
2212
+ -----------------------------------------------------------------------------------
2213
+ Started GET "/widgets/1/gizmos" for 127.0.0.1 at 2014-04-13 20:24:12 +0100
2214
+ Processing by GizmosController#index as HTML
2215
+ Parameters: {"widget_id"=>"1"}
2216
+ Completed 500 Internal Server Error in 2ms
2217
+  (0.1ms) rollback transaction
2218
+  (0.1ms) begin transaction
2219
+ ---------------------------------------------------------------------------------
2220
+ UncleIntegrationTest: test_returning_the_parent_resource_from_a_resource_instance
2221
+ ---------------------------------------------------------------------------------
2222
+ Started GET "/thingies/1" for 127.0.0.1 at 2014-04-13 20:24:12 +0100
2223
+ Processing by ThingiesController#show as HTML
2224
+ Parameters: {"id"=>"1"}
2225
+ Completed 500 Internal Server Error in 2ms
2226
+  (0.1ms) rollback transaction
2227
+  (0.1ms) begin transaction
2228
+ ---------------------------------------------------------------------------------
2229
+ UncleIntegrationTest: test_returning_the_child_resources_from_a_resource_instance
2230
+ ---------------------------------------------------------------------------------
2231
+ Started GET "/widgets/1" for 127.0.0.1 at 2014-04-13 20:24:36 +0100
2232
+ Processing by WidgetsController#show as HTML
2233
+ Parameters: {"id"=>"1"}
2234
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
2235
+  (0.1ms) rollback transaction
2236
+  (0.1ms) begin transaction
2237
+ -----------------------------------------------------------------------------------
2238
+ UncleIntegrationTest: test_returning_the_parent_resource_from_a_collection_resource
2239
+ -----------------------------------------------------------------------------------
2240
+ Started GET "/widgets/1/gizmos" for 127.0.0.1 at 2014-04-13 20:24:36 +0100
2241
+ Processing by GizmosController#index as HTML
2242
+ Parameters: {"widget_id"=>"1"}
2243
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2244
+  (0.1ms) rollback transaction
2245
+  (0.0ms) begin transaction
2246
+ ---------------------------------------------------------------------------------
2247
+ UncleIntegrationTest: test_returning_the_parent_resource_from_a_resource_instance
2248
+ ---------------------------------------------------------------------------------
2249
+ Started GET "/thingies/1" for 127.0.0.1 at 2014-04-13 20:24:36 +0100
2250
+ Processing by ThingiesController#show as HTML
2251
+ Parameters: {"id"=>"1"}
2252
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2253
+  (0.1ms) rollback transaction
2254
+  (0.1ms) begin transaction
2255
+ ---------------------------------------------------------------------------------
2256
+ UncleIntegrationTest: test_returning_the_child_resources_from_a_resource_instance
2257
+ ---------------------------------------------------------------------------------
2258
+ Started GET "/widgets/1" for 127.0.0.1 at 2014-04-13 20:25:27 +0100
2259
+ Processing by WidgetsController#show as HTML
2260
+ Parameters: {"id"=>"1"}
2261
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
2262
+  (0.1ms) rollback transaction
2263
+  (0.0ms) begin transaction
2264
+ -----------------------------------------------------------------------------------
2265
+ UncleIntegrationTest: test_returning_the_parent_resource_from_a_collection_resource
2266
+ -----------------------------------------------------------------------------------
2267
+ Started GET "/widgets/1/gizmos" for 127.0.0.1 at 2014-04-13 20:25:27 +0100
2268
+ Processing by GizmosController#index as HTML
2269
+ Parameters: {"widget_id"=>"1"}
2270
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2271
+  (0.3ms) rollback transaction
2272
+  (0.1ms) begin transaction
2273
+ ---------------------------------------------------------------------------------
2274
+ UncleIntegrationTest: test_returning_the_parent_resource_from_a_resource_instance
2275
+ ---------------------------------------------------------------------------------
2276
+ Started GET "/thingies/1" for 127.0.0.1 at 2014-04-13 20:25:27 +0100
2277
+ Processing by ThingiesController#show as HTML
2278
+ Parameters: {"id"=>"1"}
2279
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
2280
+  (0.1ms) rollback transaction
2281
+  (0.1ms) begin transaction
2282
+ ---------------------------------------------------------------------------------
2283
+ UncleIntegrationTest: test_returning_the_child_resources_from_a_resource_instance
2284
+ ---------------------------------------------------------------------------------
2285
+ Started GET "/widgets/1" for 127.0.0.1 at 2014-04-13 20:26:20 +0100
2286
+ Processing by WidgetsController#show as HTML
2287
+ Parameters: {"id"=>"1"}
2288
+ Completed 500 Internal Server Error in 2ms
2289
+  (0.1ms) rollback transaction
2290
+  (0.0ms) begin transaction
2291
+ -----------------------------------------------------------------------------------
2292
+ UncleIntegrationTest: test_returning_the_parent_resource_from_a_collection_resource
2293
+ -----------------------------------------------------------------------------------
2294
+ Started GET "/widgets/1/gizmos" for 127.0.0.1 at 2014-04-13 20:26:20 +0100
2295
+ Processing by GizmosController#index as HTML
2296
+ Parameters: {"widget_id"=>"1"}
2297
+ Completed 500 Internal Server Error in 2ms
2298
+  (0.1ms) rollback transaction
2299
+  (0.0ms) begin transaction
2300
+ ---------------------------------------------------------------------------------
2301
+ UncleIntegrationTest: test_returning_the_parent_resource_from_a_resource_instance
2302
+ ---------------------------------------------------------------------------------
2303
+ Started GET "/thingies/1" for 127.0.0.1 at 2014-04-13 20:26:20 +0100
2304
+ Processing by ThingiesController#show as HTML
2305
+ Parameters: {"id"=>"1"}
2306
+ Completed 500 Internal Server Error in 2ms
2307
+  (0.1ms) rollback transaction
2308
+  (0.1ms) begin transaction
2309
+ ---------------------------------------------------------------------------------
2310
+ UncleIntegrationTest: test_returning_the_child_resources_from_a_resource_instance
2311
+ ---------------------------------------------------------------------------------
2312
+ Started GET "/widgets/1" for 127.0.0.1 at 2014-04-13 20:26:40 +0100
2313
+ Processing by WidgetsController#show as HTML
2314
+ Parameters: {"id"=>"1"}
2315
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
2316
+  (0.1ms) rollback transaction
2317
+  (0.0ms) begin transaction
2318
+ -----------------------------------------------------------------------------------
2319
+ UncleIntegrationTest: test_returning_the_parent_resource_from_a_collection_resource
2320
+ -----------------------------------------------------------------------------------
2321
+ Started GET "/widgets/1/gizmos" for 127.0.0.1 at 2014-04-13 20:26:40 +0100
2322
+ Processing by GizmosController#index as HTML
2323
+ Parameters: {"widget_id"=>"1"}
2324
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2325
+  (0.0ms) rollback transaction
2326
+  (0.0ms) begin transaction
2327
+ ---------------------------------------------------------------------------------
2328
+ UncleIntegrationTest: test_returning_the_parent_resource_from_a_resource_instance
2329
+ ---------------------------------------------------------------------------------
2330
+ Started GET "/thingies/1" for 127.0.0.1 at 2014-04-13 20:26:40 +0100
2331
+ Processing by ThingiesController#show as HTML
2332
+ Parameters: {"id"=>"1"}
2333
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2334
+  (0.0ms) rollback transaction
2335
+  (0.1ms) begin transaction
2336
+ ---------------------------------------------------------------------------------
2337
+ UncleIntegrationTest: test_returning_the_child_resources_from_a_resource_instance
2338
+ ---------------------------------------------------------------------------------
2339
+ Started GET "/widgets/1" for 127.0.0.1 at 2014-04-13 20:37:08 +0100
2340
+ Processing by WidgetsController#show as HTML
2341
+ Parameters: {"id"=>"1"}
2342
+ Completed 500 Internal Server Error in 1ms
2343
+  (0.1ms) rollback transaction
2344
+  (0.0ms) begin transaction
2345
+ -----------------------------------------------------------------------------------
2346
+ UncleIntegrationTest: test_returning_the_parent_resource_from_a_collection_resource
2347
+ -----------------------------------------------------------------------------------
2348
+ Started GET "/widgets/1/gizmos" for 127.0.0.1 at 2014-04-13 20:37:08 +0100
2349
+ Processing by GizmosController#index as HTML
2350
+ Parameters: {"widget_id"=>"1"}
2351
+ Completed 500 Internal Server Error in 1ms
2352
+  (0.1ms) rollback transaction
2353
+  (0.0ms) begin transaction
2354
+ ---------------------------------------------------------------------------------
2355
+ UncleIntegrationTest: test_returning_the_parent_resource_from_a_resource_instance
2356
+ ---------------------------------------------------------------------------------
2357
+ Started GET "/thingies/1" for 127.0.0.1 at 2014-04-13 20:37:08 +0100
2358
+ Processing by ThingiesController#show as HTML
2359
+ Parameters: {"id"=>"1"}
2360
+ Completed 500 Internal Server Error in 1ms
2361
+  (0.1ms) rollback transaction
2362
+  (0.1ms) begin transaction
2363
+ ---------------------------------------------------------------------------------
2364
+ UncleIntegrationTest: test_returning_the_child_resources_from_a_resource_instance
2365
+ ---------------------------------------------------------------------------------
2366
+ Started GET "/widgets/1" for 127.0.0.1 at 2014-04-13 20:37:35 +0100
2367
+ Processing by WidgetsController#show as HTML
2368
+ Parameters: {"id"=>"1"}
2369
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
2370
+  (0.1ms) rollback transaction
2371
+  (0.1ms) begin transaction
2372
+ -----------------------------------------------------------------------------------
2373
+ UncleIntegrationTest: test_returning_the_parent_resource_from_a_collection_resource
2374
+ -----------------------------------------------------------------------------------
2375
+ Started GET "/widgets/1/gizmos" for 127.0.0.1 at 2014-04-13 20:37:35 +0100
2376
+ Processing by GizmosController#index as HTML
2377
+ Parameters: {"widget_id"=>"1"}
2378
+ Completed 500 Internal Server Error in 2ms
2379
+  (0.1ms) rollback transaction
2380
+  (0.0ms) begin transaction
2381
+ ---------------------------------------------------------------------------------
2382
+ UncleIntegrationTest: test_returning_the_parent_resource_from_a_resource_instance
2383
+ ---------------------------------------------------------------------------------
2384
+ Started GET "/thingies/1" for 127.0.0.1 at 2014-04-13 20:37:35 +0100
2385
+ Processing by ThingiesController#show as HTML
2386
+ Parameters: {"id"=>"1"}
2387
+ Completed 500 Internal Server Error in 2ms
2388
+  (0.1ms) rollback transaction
2389
+  (0.1ms) begin transaction
2390
+ ---------------------------------------------------------------------------------
2391
+ UncleIntegrationTest: test_returning_the_child_resources_from_a_resource_instance
2392
+ ---------------------------------------------------------------------------------
2393
+ Started GET "/widgets/1" for 127.0.0.1 at 2014-04-13 20:38:01 +0100
2394
+ Processing by WidgetsController#show as HTML
2395
+ Parameters: {"id"=>"1"}
2396
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
2397
+  (0.1ms) rollback transaction
2398
+  (0.1ms) begin transaction
2399
+ -----------------------------------------------------------------------------------
2400
+ UncleIntegrationTest: test_returning_the_parent_resource_from_a_collection_resource
2401
+ -----------------------------------------------------------------------------------
2402
+ Started GET "/widgets/1/gizmos" for 127.0.0.1 at 2014-04-13 20:38:01 +0100
2403
+ Processing by GizmosController#index as HTML
2404
+ Parameters: {"widget_id"=>"1"}
2405
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2406
+  (0.1ms) rollback transaction
2407
+  (0.0ms) begin transaction
2408
+ ---------------------------------------------------------------------------------
2409
+ UncleIntegrationTest: test_returning_the_parent_resource_from_a_resource_instance
2410
+ ---------------------------------------------------------------------------------
2411
+ Started GET "/thingies/1" for 127.0.0.1 at 2014-04-13 20:38:01 +0100
2412
+ Processing by ThingiesController#show as HTML
2413
+ Parameters: {"id"=>"1"}
2414
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
2415
+  (0.1ms) rollback transaction
2416
+  (0.2ms) begin transaction
2417
+ ---------------------------------------------------------------------------------
2418
+ UncleIntegrationTest: test_returning_the_child_resources_from_a_resource_instance
2419
+ ---------------------------------------------------------------------------------
2420
+ Started GET "/widgets/1" for 127.0.0.1 at 2014-04-13 20:38:35 +0100
2421
+ Processing by WidgetsController#show as HTML
2422
+ Parameters: {"id"=>"1"}
2423
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
2424
+  (0.1ms) rollback transaction
2425
+  (0.1ms) begin transaction
2426
+ -----------------------------------------------------------------------------------
2427
+ UncleIntegrationTest: test_returning_the_parent_resource_from_a_collection_resource
2428
+ -----------------------------------------------------------------------------------
2429
+ Started GET "/widgets/1/gizmos" for 127.0.0.1 at 2014-04-13 20:38:35 +0100
2430
+ Processing by GizmosController#index as HTML
2431
+ Parameters: {"widget_id"=>"1"}
2432
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2433
+  (0.1ms) rollback transaction
2434
+  (0.1ms) begin transaction
2435
+ ---------------------------------------------------------------------------------
2436
+ UncleIntegrationTest: test_returning_the_parent_resource_from_a_resource_instance
2437
+ ---------------------------------------------------------------------------------
2438
+ Started GET "/thingies/1" for 127.0.0.1 at 2014-04-13 20:38:35 +0100
2439
+ Processing by ThingiesController#show as HTML
2440
+ Parameters: {"id"=>"1"}
2441
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2442
+  (0.1ms) rollback transaction
2443
+  (0.1ms) begin transaction
2444
+ ---------------------------------------------------------------------------------
2445
+ UncleIntegrationTest: test_returning_the_child_resources_from_a_resource_instance
2446
+ ---------------------------------------------------------------------------------
2447
+ Started GET "/widgets/1" for 127.0.0.1 at 2014-04-13 20:42:47 +0100
2448
+ Processing by WidgetsController#show as HTML
2449
+ Parameters: {"id"=>"1"}
2450
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
2451
+  (0.1ms) rollback transaction
2452
+  (0.0ms) begin transaction
2453
+ -----------------------------------------------------------------------------------
2454
+ UncleIntegrationTest: test_returning_the_parent_resource_from_a_collection_resource
2455
+ -----------------------------------------------------------------------------------
2456
+ Started GET "/widgets/1/gizmos" for 127.0.0.1 at 2014-04-13 20:42:47 +0100
2457
+ Processing by GizmosController#index as HTML
2458
+ Parameters: {"widget_id"=>"1"}
2459
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2460
+  (0.1ms) rollback transaction
2461
+  (0.1ms) begin transaction
2462
+ ---------------------------------------------------------------------------------
2463
+ UncleIntegrationTest: test_returning_the_parent_resource_from_a_resource_instance
2464
+ ---------------------------------------------------------------------------------
2465
+ Started GET "/thingies/1" for 127.0.0.1 at 2014-04-13 20:42:47 +0100
2466
+ Processing by ThingiesController#show as HTML
2467
+ Parameters: {"id"=>"1"}
2468
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2469
+  (0.1ms) rollback transaction
2470
+  (0.1ms) begin transaction
2471
+ ---------------------------------------------------------------------------------
2472
+ UncleIntegrationTest: test_returning_the_child_resources_from_a_resource_instance
2473
+ ---------------------------------------------------------------------------------
2474
+ Started GET "/widgets/1" for 127.0.0.1 at 2014-04-13 20:44:53 +0100
2475
+ Processing by WidgetsController#show as HTML
2476
+ Parameters: {"id"=>"1"}
2477
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
2478
+  (0.1ms) rollback transaction
2479
+  (0.1ms) begin transaction
2480
+ -----------------------------------------------------------------------------------
2481
+ UncleIntegrationTest: test_returning_the_parent_resource_from_a_collection_resource
2482
+ -----------------------------------------------------------------------------------
2483
+ Started GET "/widgets/1/gizmos" for 127.0.0.1 at 2014-04-13 20:44:53 +0100
2484
+ Processing by GizmosController#index as HTML
2485
+ Parameters: {"widget_id"=>"1"}
2486
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2487
+  (0.1ms) rollback transaction
2488
+  (0.1ms) begin transaction
2489
+ ---------------------------------------------------------------------------------
2490
+ UncleIntegrationTest: test_returning_the_parent_resource_from_a_resource_instance
2491
+ ---------------------------------------------------------------------------------
2492
+ Started GET "/thingies/1" for 127.0.0.1 at 2014-04-13 20:44:53 +0100
2493
+ Processing by ThingiesController#show as HTML
2494
+ Parameters: {"id"=>"1"}
2495
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
2496
+  (0.1ms) rollback transaction
2497
+  (0.1ms) begin transaction
2498
+ ---------------------------------------------------------------------------------
2499
+ UncleIntegrationTest: test_returning_the_child_resources_from_a_resource_instance
2500
+ ---------------------------------------------------------------------------------
2501
+ Started GET "/widgets/1" for 127.0.0.1 at 2014-04-13 20:45:58 +0100
2502
+ Processing by WidgetsController#show as HTML
2503
+ Parameters: {"id"=>"1"}
2504
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
2505
+  (0.1ms) rollback transaction
2506
+  (0.0ms) begin transaction
2507
+ -----------------------------------------------------------------------------------
2508
+ UncleIntegrationTest: test_returning_the_parent_resource_from_a_collection_resource
2509
+ -----------------------------------------------------------------------------------
2510
+ Started GET "/widgets/1/gizmos" for 127.0.0.1 at 2014-04-13 20:45:58 +0100
2511
+ Processing by GizmosController#index as HTML
2512
+ Parameters: {"widget_id"=>"1"}
2513
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2514
+  (0.0ms) rollback transaction
2515
+  (0.0ms) begin transaction
2516
+ ---------------------------------------------------------------------------------
2517
+ UncleIntegrationTest: test_returning_the_parent_resource_from_a_resource_instance
2518
+ ---------------------------------------------------------------------------------
2519
+ Started GET "/thingies/1" for 127.0.0.1 at 2014-04-13 20:45:58 +0100
2520
+ Processing by ThingiesController#show as HTML
2521
+ Parameters: {"id"=>"1"}
2522
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2523
+  (0.1ms) rollback transaction
2524
+  (0.1ms) begin transaction
2525
+ ---------------------------------------------------------------------------------
2526
+ UncleIntegrationTest: test_returning_the_child_resources_from_a_resource_instance
2527
+ ---------------------------------------------------------------------------------
2528
+ Started GET "/widgets/1" for 127.0.0.1 at 2014-04-13 20:50:47 +0100
2529
+ Processing by WidgetsController#show as HTML
2530
+ Parameters: {"id"=>"1"}
2531
+ Completed 500 Internal Server Error in 3ms
2532
+  (0.1ms) rollback transaction
2533
+  (0.1ms) begin transaction
2534
+ -----------------------------------------------------------------------------------
2535
+ UncleIntegrationTest: test_returning_the_parent_resource_from_a_collection_resource
2536
+ -----------------------------------------------------------------------------------
2537
+ Started GET "/widgets/1/gizmos" for 127.0.0.1 at 2014-04-13 20:50:47 +0100
2538
+ Processing by GizmosController#index as HTML
2539
+ Parameters: {"widget_id"=>"1"}
2540
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
2541
+  (0.1ms) rollback transaction
2542
+  (0.0ms) begin transaction
2543
+ ---------------------------------------------------------------------------------
2544
+ UncleIntegrationTest: test_returning_the_parent_resource_from_a_resource_instance
2545
+ ---------------------------------------------------------------------------------
2546
+ Started GET "/thingies/1" for 127.0.0.1 at 2014-04-13 20:50:47 +0100
2547
+ Processing by ThingiesController#show as HTML
2548
+ Parameters: {"id"=>"1"}
2549
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2550
+  (0.1ms) rollback transaction
2551
+  (0.1ms) begin transaction
2552
+ ---------------------------------------------------------------------------------
2553
+ UncleIntegrationTest: test_returning_the_child_resources_from_a_resource_instance
2554
+ ---------------------------------------------------------------------------------
2555
+ Started GET "/widgets/1" for 127.0.0.1 at 2014-04-13 20:52:11 +0100
2556
+ Processing by WidgetsController#show as HTML
2557
+ Parameters: {"id"=>"1"}
2558
+ Completed 500 Internal Server Error in 3ms
2559
+  (0.1ms) rollback transaction
2560
+  (0.0ms) begin transaction
2561
+ -----------------------------------------------------------------------------------
2562
+ UncleIntegrationTest: test_returning_the_parent_resource_from_a_collection_resource
2563
+ -----------------------------------------------------------------------------------
2564
+ Started GET "/widgets/1/gizmos" for 127.0.0.1 at 2014-04-13 20:52:11 +0100
2565
+ Processing by GizmosController#index as HTML
2566
+ Parameters: {"widget_id"=>"1"}
2567
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
2568
+  (0.1ms) rollback transaction
2569
+  (0.0ms) begin transaction
2570
+ ---------------------------------------------------------------------------------
2571
+ UncleIntegrationTest: test_returning_the_parent_resource_from_a_resource_instance
2572
+ ---------------------------------------------------------------------------------
2573
+ Started GET "/thingies/1" for 127.0.0.1 at 2014-04-13 20:52:11 +0100
2574
+ Processing by ThingiesController#show as HTML
2575
+ Parameters: {"id"=>"1"}
2576
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2577
+  (0.0ms) rollback transaction
2578
+  (0.1ms) begin transaction
2579
+ ---------------------------------------------------------------------------------
2580
+ UncleIntegrationTest: test_returning_the_child_resources_from_a_resource_instance
2581
+ ---------------------------------------------------------------------------------
2582
+ Started GET "/widgets/1" for 127.0.0.1 at 2014-04-13 20:52:20 +0100
2583
+ Processing by WidgetsController#show as HTML
2584
+ Parameters: {"id"=>"1"}
2585
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
2586
+  (0.1ms) rollback transaction
2587
+  (0.0ms) begin transaction
2588
+ -----------------------------------------------------------------------------------
2589
+ UncleIntegrationTest: test_returning_the_parent_resource_from_a_collection_resource
2590
+ -----------------------------------------------------------------------------------
2591
+ Started GET "/widgets/1/gizmos" for 127.0.0.1 at 2014-04-13 20:52:20 +0100
2592
+ Processing by GizmosController#index as HTML
2593
+ Parameters: {"widget_id"=>"1"}
2594
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
2595
+  (0.1ms) rollback transaction
2596
+  (0.0ms) begin transaction
2597
+ ---------------------------------------------------------------------------------
2598
+ UncleIntegrationTest: test_returning_the_parent_resource_from_a_resource_instance
2599
+ ---------------------------------------------------------------------------------
2600
+ Started GET "/thingies/1" for 127.0.0.1 at 2014-04-13 20:52:20 +0100
2601
+ Processing by ThingiesController#show as HTML
2602
+ Parameters: {"id"=>"1"}
2603
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2604
+  (0.1ms) rollback transaction
2605
+  (0.1ms) begin transaction
2606
+ ---------------------------------------------------------------------------------
2607
+ UncleIntegrationTest: test_returning_the_child_resources_from_a_resource_instance
2608
+ ---------------------------------------------------------------------------------
2609
+ Started GET "/widgets/1" for 127.0.0.1 at 2014-04-13 20:55:02 +0100
2610
+ Processing by WidgetsController#show as HTML
2611
+ Parameters: {"id"=>"1"}
2612
+ Completed 500 Internal Server Error in 2ms
2613
+  (0.1ms) rollback transaction
2614
+  (0.0ms) begin transaction
2615
+ -----------------------------------------------------------------------------------
2616
+ UncleIntegrationTest: test_returning_the_parent_resource_from_a_collection_resource
2617
+ -----------------------------------------------------------------------------------
2618
+ Started GET "/widgets/1/gizmos" for 127.0.0.1 at 2014-04-13 20:55:02 +0100
2619
+ Processing by GizmosController#index as HTML
2620
+ Parameters: {"widget_id"=>"1"}
2621
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
2622
+  (0.1ms) rollback transaction
2623
+  (0.0ms) begin transaction
2624
+ ---------------------------------------------------------------------------------
2625
+ UncleIntegrationTest: test_returning_the_parent_resource_from_a_resource_instance
2626
+ ---------------------------------------------------------------------------------
2627
+ Started GET "/thingies/1" for 127.0.0.1 at 2014-04-13 20:55:02 +0100
2628
+ Processing by ThingiesController#show as HTML
2629
+ Parameters: {"id"=>"1"}
2630
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
2631
+  (0.1ms) rollback transaction
2632
+  (0.1ms) begin transaction
2633
+ ---------------------------------------------------------------------------------
2634
+ UncleIntegrationTest: test_returning_the_child_resources_from_a_resource_instance
2635
+ ---------------------------------------------------------------------------------
2636
+ Started GET "/widgets/1" for 127.0.0.1 at 2014-04-13 20:55:30 +0100
2637
+ Processing by WidgetsController#show as HTML
2638
+ Parameters: {"id"=>"1"}
2639
+ Completed 500 Internal Server Error in 2ms
2640
+  (0.1ms) rollback transaction
2641
+  (0.0ms) begin transaction
2642
+ -----------------------------------------------------------------------------------
2643
+ UncleIntegrationTest: test_returning_the_parent_resource_from_a_collection_resource
2644
+ -----------------------------------------------------------------------------------
2645
+ Started GET "/widgets/1/gizmos" for 127.0.0.1 at 2014-04-13 20:55:30 +0100
2646
+ Processing by GizmosController#index as HTML
2647
+ Parameters: {"widget_id"=>"1"}
2648
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
2649
+  (0.1ms) rollback transaction
2650
+  (0.0ms) begin transaction
2651
+ ---------------------------------------------------------------------------------
2652
+ UncleIntegrationTest: test_returning_the_parent_resource_from_a_resource_instance
2653
+ ---------------------------------------------------------------------------------
2654
+ Started GET "/thingies/1" for 127.0.0.1 at 2014-04-13 20:55:30 +0100
2655
+ Processing by ThingiesController#show as HTML
2656
+ Parameters: {"id"=>"1"}
2657
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2658
+  (0.1ms) rollback transaction
2659
+  (0.1ms) begin transaction
2660
+ ---------------------------------------------------------------------------------
2661
+ UncleIntegrationTest: test_returning_the_child_resources_from_a_resource_instance
2662
+ ---------------------------------------------------------------------------------
2663
+ Started GET "/widgets/1" for 127.0.0.1 at 2014-04-13 20:55:55 +0100
2664
+ Processing by WidgetsController#show as HTML
2665
+ Parameters: {"id"=>"1"}
2666
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
2667
+  (0.1ms) rollback transaction
2668
+  (0.1ms) begin transaction
2669
+ -----------------------------------------------------------------------------------
2670
+ UncleIntegrationTest: test_returning_the_parent_resource_from_a_collection_resource
2671
+ -----------------------------------------------------------------------------------
2672
+ Started GET "/widgets/1/gizmos" for 127.0.0.1 at 2014-04-13 20:55:55 +0100
2673
+ Processing by GizmosController#index as HTML
2674
+ Parameters: {"widget_id"=>"1"}
2675
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
2676
+  (0.1ms) rollback transaction
2677
+  (0.1ms) begin transaction
2678
+ ---------------------------------------------------------------------------------
2679
+ UncleIntegrationTest: test_returning_the_parent_resource_from_a_resource_instance
2680
+ ---------------------------------------------------------------------------------
2681
+ Started GET "/thingies/1" for 127.0.0.1 at 2014-04-13 20:55:55 +0100
2682
+ Processing by ThingiesController#show as HTML
2683
+ Parameters: {"id"=>"1"}
2684
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
2685
+  (0.1ms) rollback transaction
2686
+  (0.1ms) begin transaction
2687
+ ---------------------------------------------------------------------------------
2688
+ UncleIntegrationTest: test_returning_the_child_resources_from_a_resource_instance
2689
+ ---------------------------------------------------------------------------------
2690
+ Started GET "/widgets/1" for 127.0.0.1 at 2014-04-13 20:56:44 +0100
2691
+ Processing by WidgetsController#show as HTML
2692
+ Parameters: {"id"=>"1"}
2693
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
2694
+  (0.1ms) rollback transaction
2695
+  (0.1ms) begin transaction
2696
+ -----------------------------------------------------------------------------------
2697
+ UncleIntegrationTest: test_returning_the_parent_resource_from_a_collection_resource
2698
+ -----------------------------------------------------------------------------------
2699
+ Started GET "/widgets/1/gizmos" for 127.0.0.1 at 2014-04-13 20:56:44 +0100
2700
+ Processing by GizmosController#index as HTML
2701
+ Parameters: {"widget_id"=>"1"}
2702
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
2703
+  (0.1ms) rollback transaction
2704
+  (0.1ms) begin transaction
2705
+ ---------------------------------------------------------------------------------
2706
+ UncleIntegrationTest: test_returning_the_parent_resource_from_a_resource_instance
2707
+ ---------------------------------------------------------------------------------
2708
+ Started GET "/thingies/1" for 127.0.0.1 at 2014-04-13 20:56:44 +0100
2709
+ Processing by ThingiesController#show as HTML
2710
+ Parameters: {"id"=>"1"}
2711
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2712
+  (0.1ms) rollback transaction
2713
+  (0.1ms) begin transaction
2714
+ ---------------------------------------------------------------------------------
2715
+ UncleIntegrationTest: test_returning_the_child_resources_from_a_resource_instance
2716
+ ---------------------------------------------------------------------------------
2717
+ Started GET "/widgets/1" for 127.0.0.1 at 2014-04-13 20:57:56 +0100
2718
+ Processing by WidgetsController#show as HTML
2719
+ Parameters: {"id"=>"1"}
2720
+ Completed 200 OK in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
2721
+  (0.1ms) rollback transaction
2722
+  (0.1ms) begin transaction
2723
+ -----------------------------------------------------------------------------------
2724
+ UncleIntegrationTest: test_returning_the_parent_resource_from_a_collection_resource
2725
+ -----------------------------------------------------------------------------------
2726
+ Started GET "/widgets/1/gizmos" for 127.0.0.1 at 2014-04-13 20:57:56 +0100
2727
+ Processing by GizmosController#index as HTML
2728
+ Parameters: {"widget_id"=>"1"}
2729
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2730
+  (0.1ms) rollback transaction
2731
+  (0.0ms) begin transaction
2732
+ ---------------------------------------------------------------------------------
2733
+ UncleIntegrationTest: test_returning_the_parent_resource_from_a_resource_instance
2734
+ ---------------------------------------------------------------------------------
2735
+ Started GET "/thingies/1" for 127.0.0.1 at 2014-04-13 20:57:56 +0100
2736
+ Processing by ThingiesController#show as HTML
2737
+ Parameters: {"id"=>"1"}
2738
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2739
+  (0.0ms) rollback transaction
2740
+  (0.1ms) begin transaction
2741
+ ---------------------------------------------------------------------------------
2742
+ UncleIntegrationTest: test_returning_the_child_resources_from_a_resource_instance
2743
+ ---------------------------------------------------------------------------------
2744
+ Started GET "/widgets/1" for 127.0.0.1 at 2014-04-13 20:58:39 +0100
2745
+ Processing by WidgetsController#show as HTML
2746
+ Parameters: {"id"=>"1"}
2747
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
2748
+  (0.1ms) rollback transaction
2749
+  (0.0ms) begin transaction
2750
+ -----------------------------------------------------------------------------------
2751
+ UncleIntegrationTest: test_returning_the_parent_resource_from_a_collection_resource
2752
+ -----------------------------------------------------------------------------------
2753
+ Started GET "/widgets/1/gizmos" for 127.0.0.1 at 2014-04-13 20:58:39 +0100
2754
+ Processing by GizmosController#index as HTML
2755
+ Parameters: {"widget_id"=>"1"}
2756
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2757
+  (0.1ms) rollback transaction
2758
+  (0.0ms) begin transaction
2759
+ ---------------------------------------------------------------------------------
2760
+ UncleIntegrationTest: test_returning_the_parent_resource_from_a_resource_instance
2761
+ ---------------------------------------------------------------------------------
2762
+ Started GET "/thingies/1" for 127.0.0.1 at 2014-04-13 20:58:39 +0100
2763
+ Processing by ThingiesController#show as HTML
2764
+ Parameters: {"id"=>"1"}
2765
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2766
+  (0.1ms) rollback transaction
2767
+  (0.1ms) begin transaction
2768
+ ---------------------------------------------------------------------------------
2769
+ UncleIntegrationTest: test_returning_the_child_resources_from_a_resource_instance
2770
+ ---------------------------------------------------------------------------------
2771
+ Started GET "/widgets/1" for 127.0.0.1 at 2014-04-13 21:00:30 +0100
2772
+ Processing by WidgetsController#show as HTML
2773
+ Parameters: {"id"=>"1"}
2774
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
2775
+  (0.1ms) rollback transaction
2776
+  (0.0ms) begin transaction
2777
+ -----------------------------------------------------------------------------------
2778
+ UncleIntegrationTest: test_returning_the_parent_resource_from_a_collection_resource
2779
+ -----------------------------------------------------------------------------------
2780
+ Started GET "/widgets/1/gizmos" for 127.0.0.1 at 2014-04-13 21:00:30 +0100
2781
+ Processing by GizmosController#index as HTML
2782
+ Parameters: {"widget_id"=>"1"}
2783
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2784
+  (0.1ms) rollback transaction
2785
+  (0.2ms) begin transaction
2786
+ ---------------------------------------------------------------------------------
2787
+ UncleIntegrationTest: test_returning_the_parent_resource_from_a_resource_instance
2788
+ ---------------------------------------------------------------------------------
2789
+ Started GET "/thingies/1" for 127.0.0.1 at 2014-04-13 21:00:30 +0100
2790
+ Processing by ThingiesController#show as HTML
2791
+ Parameters: {"id"=>"1"}
2792
+ Completed 200 OK in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
2793
+  (0.1ms) rollback transaction
2794
+  (0.1ms) begin transaction
2795
+ ---------------------------------------------------------------------------------
2796
+ UncleIntegrationTest: test_returning_the_child_resources_from_a_resource_instance
2797
+ ---------------------------------------------------------------------------------
2798
+ Started GET "/widgets/1" for 127.0.0.1 at 2014-04-13 21:00:41 +0100
2799
+ Processing by WidgetsController#show as HTML
2800
+ Parameters: {"id"=>"1"}
2801
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
2802
+  (0.1ms) rollback transaction
2803
+  (0.1ms) begin transaction
2804
+ -----------------------------------------------------------------------------------
2805
+ UncleIntegrationTest: test_returning_the_parent_resource_from_a_collection_resource
2806
+ -----------------------------------------------------------------------------------
2807
+ Started GET "/widgets/1/gizmos" for 127.0.0.1 at 2014-04-13 21:00:41 +0100
2808
+ Processing by GizmosController#index as HTML
2809
+ Parameters: {"widget_id"=>"1"}
2810
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2811
+  (0.1ms) rollback transaction
2812
+  (0.1ms) begin transaction
2813
+ ---------------------------------------------------------------------------------
2814
+ UncleIntegrationTest: test_returning_the_parent_resource_from_a_resource_instance
2815
+ ---------------------------------------------------------------------------------
2816
+ Started GET "/thingies/1" for 127.0.0.1 at 2014-04-13 21:00:41 +0100
2817
+ Processing by ThingiesController#show as HTML
2818
+ Parameters: {"id"=>"1"}
2819
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2820
+  (0.1ms) rollback transaction
2821
+  (0.1ms) begin transaction
2822
+ ---------------------------------------------------------------------------------
2823
+ UncleIntegrationTest: test_returning_the_child_resources_from_a_resource_instance
2824
+ ---------------------------------------------------------------------------------
2825
+ Started GET "/widgets/1" for 127.0.0.1 at 2014-04-13 21:00:59 +0100
2826
+ Processing by WidgetsController#show as HTML
2827
+ Parameters: {"id"=>"1"}
2828
+ Completed 200 OK in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
2829
+  (0.1ms) rollback transaction
2830
+  (0.1ms) begin transaction
2831
+ -----------------------------------------------------------------------------------
2832
+ UncleIntegrationTest: test_returning_the_parent_resource_from_a_collection_resource
2833
+ -----------------------------------------------------------------------------------
2834
+ Started GET "/widgets/1/gizmos" for 127.0.0.1 at 2014-04-13 21:00:59 +0100
2835
+ Processing by GizmosController#index as HTML
2836
+ Parameters: {"widget_id"=>"1"}
2837
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2838
+  (0.1ms) rollback transaction
2839
+  (0.0ms) begin transaction
2840
+ ---------------------------------------------------------------------------------
2841
+ UncleIntegrationTest: test_returning_the_parent_resource_from_a_resource_instance
2842
+ ---------------------------------------------------------------------------------
2843
+ Started GET "/thingies/1" for 127.0.0.1 at 2014-04-13 21:00:59 +0100
2844
+ Processing by ThingiesController#show as HTML
2845
+ Parameters: {"id"=>"1"}
2846
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2847
+  (0.1ms) rollback transaction
2848
+  (0.1ms) begin transaction
2849
+ ---------------------------------------------------------------------------------
2850
+ UncleIntegrationTest: test_returning_the_child_resources_from_a_resource_instance
2851
+ ---------------------------------------------------------------------------------
2852
+ Started GET "/widgets/1" for 127.0.0.1 at 2014-04-13 21:02:23 +0100
2853
+ Processing by WidgetsController#show as HTML
2854
+ Parameters: {"id"=>"1"}
2855
+ Completed 200 OK in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
2856
+  (0.1ms) rollback transaction
2857
+  (0.1ms) begin transaction
2858
+ -----------------------------------------------------------------------------------
2859
+ UncleIntegrationTest: test_returning_the_parent_resource_from_a_collection_resource
2860
+ -----------------------------------------------------------------------------------
2861
+ Started GET "/widgets/1/gizmos" for 127.0.0.1 at 2014-04-13 21:02:23 +0100
2862
+ Processing by GizmosController#index as HTML
2863
+ Parameters: {"widget_id"=>"1"}
2864
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
2865
+  (0.1ms) rollback transaction
2866
+  (0.1ms) begin transaction
2867
+ ---------------------------------------------------------------------------------
2868
+ UncleIntegrationTest: test_returning_the_parent_resource_from_a_resource_instance
2869
+ ---------------------------------------------------------------------------------
2870
+ Started GET "/thingies/1" for 127.0.0.1 at 2014-04-13 21:02:23 +0100
2871
+ Processing by ThingiesController#show as HTML
2872
+ Parameters: {"id"=>"1"}
2873
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
2874
+  (0.1ms) rollback transaction
2875
+  (0.1ms) begin transaction
2876
+ ----------------------------------------------------------------------
2877
+ UncleTest: test_returning_the_child_resources_from_a_resource_instance
2878
+ ----------------------------------------------------------------------
2879
+ Started GET "/widgets/1" for 127.0.0.1 at 2014-04-13 21:14:25 +0100
2880
+ Processing by WidgetsController#show as HTML
2881
+ Parameters: {"id"=>"1"}
2882
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
2883
+  (0.1ms) rollback transaction
2884
+  (0.0ms) begin transaction
2885
+ ------------------------------------------------------------------------
2886
+ UncleTest: test_returning_the_parent_resource_from_a_collection_resource
2887
+ ------------------------------------------------------------------------
2888
+ Started GET "/widgets/1/gizmos" for 127.0.0.1 at 2014-04-13 21:14:25 +0100
2889
+ Processing by GizmosController#index as HTML
2890
+ Parameters: {"widget_id"=>"1"}
2891
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2892
+  (0.0ms) rollback transaction
2893
+  (0.0ms) begin transaction
2894
+ ----------------------------------------------------------------------
2895
+ UncleTest: test_returning_the_parent_resource_from_a_resource_instance
2896
+ ----------------------------------------------------------------------
2897
+ Started GET "/thingies/1" for 127.0.0.1 at 2014-04-13 21:14:25 +0100
2898
+ Processing by ThingiesController#show as HTML
2899
+ Parameters: {"id"=>"1"}
2900
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2901
+  (0.1ms) rollback transaction