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 +4 -4
- data/lib/uncle.rb +4 -0
- data/lib/uncle/railtie.rb +17 -0
- data/lib/uncle/request.rb +85 -0
- data/lib/uncle/resource_urls.rb +21 -0
- data/lib/uncle/version.rb +1 -1
- data/test/dummy/app/assets/javascripts/doo_dads.js +2 -0
- data/test/dummy/app/assets/javascripts/gizmos.js +2 -0
- data/test/dummy/app/assets/javascripts/widgets.js +2 -0
- data/test/dummy/app/assets/stylesheets/doo_dads.css +4 -0
- data/test/dummy/app/assets/stylesheets/gizmos.css +4 -0
- data/test/dummy/app/assets/stylesheets/widgets.css +4 -0
- data/test/dummy/app/controllers/doo_dads_controller.rb +2 -0
- data/test/dummy/app/controllers/gizmos_controller.rb +5 -0
- data/test/dummy/app/controllers/thingies_controller.rb +5 -0
- data/test/dummy/app/controllers/widgets_controller.rb +9 -0
- data/test/dummy/app/helpers/doo_dads_helper.rb +2 -0
- data/test/dummy/app/helpers/gizmos_helper.rb +2 -0
- data/test/dummy/app/helpers/widgets_helper.rb +2 -0
- data/test/dummy/config/routes.rb +5 -53
- data/test/dummy/db/test.sqlite3 +0 -0
- data/test/dummy/log/development.log +0 -0
- data/test/dummy/log/test.log +2901 -0
- data/test/uncle_test.rb +31 -2
- metadata +38 -17
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 336be1f9d0b34f0d33084cf21907b845aaf0428a
|
4
|
+
data.tar.gz: 1937bad55cb10178520575b5782201ff1c249b73
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4ec38753e03f0d585ae533245fa59f310b9b38849a065d181451ee45cc9a10b854085471d5bb6407fa17ff7a2403e84c3d64f0dc09f63c3ad62700e3aab499f1
|
7
|
+
data.tar.gz: 8baa9240f8661d4b8338737f47e5fa261880746c8cf3a674c9b06cac24e72d8e0ab93fc34466fa404de91883170107e0a99c4f1f38646479c74a9c3a58e04f57
|
data/lib/uncle.rb
CHANGED
@@ -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
|
data/lib/uncle/version.rb
CHANGED
data/test/dummy/config/routes.rb
CHANGED
@@ -1,56 +1,8 @@
|
|
1
1
|
Dummy::Application.routes.draw do
|
2
|
-
|
3
|
-
|
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
|
-
|
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
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2
|
+
-------------------
|
3
|
+
UncleTest: test_lol
|
4
|
+
-------------------
|
5
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
6
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
7
|
+
-------------------
|
8
|
+
UncleTest: test_lol
|
9
|
+
-------------------
|
10
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
11
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
12
|
+
-------------------
|
13
|
+
UncleTest: test_lol
|
14
|
+
-------------------
|
15
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
16
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
17
|
+
--------------------------------------------------------
|
18
|
+
UncleTest: test_returning_the_url_of_the_parent_resource
|
19
|
+
--------------------------------------------------------
|
20
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
21
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
22
|
+
--------------------------------------------------------
|
23
|
+
UncleTest: test_returning_the_url_of_the_parent_resource
|
24
|
+
--------------------------------------------------------
|
25
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
26
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
36
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
46
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.3ms)[0m rollback transaction
|
56
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
57
|
+
----------------------------------------------------------------------------------------------
|
58
|
+
UncleIntegrationTest: test_returning_the_urls_of_children_resources_from_a_collection_resource
|
59
|
+
----------------------------------------------------------------------------------------------
|
60
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
61
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
62
|
+
--------------------------------------------------------------------------------------------
|
63
|
+
UncleIntegrationTest: test_returning_the_urls_of_children_resources_from_a_resource_instance
|
64
|
+
--------------------------------------------------------------------------------------------
|
65
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
66
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
76
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
77
|
+
----------------------------------------------------------------------------------------------
|
78
|
+
UncleIntegrationTest: test_returning_the_urls_of_children_resources_from_a_collection_resource
|
79
|
+
----------------------------------------------------------------------------------------------
|
80
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
81
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
82
|
+
--------------------------------------------------------------------------------------------
|
83
|
+
UncleIntegrationTest: test_returning_the_urls_of_children_resources_from_a_resource_instance
|
84
|
+
--------------------------------------------------------------------------------------------
|
85
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
86
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
96
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
97
|
+
----------------------------------------------------------------------------------------------
|
98
|
+
UncleIntegrationTest: test_returning_the_urls_of_children_resources_from_a_collection_resource
|
99
|
+
----------------------------------------------------------------------------------------------
|
100
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
101
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
102
|
+
--------------------------------------------------------------------------------------------
|
103
|
+
UncleIntegrationTest: test_returning_the_urls_of_children_resources_from_a_resource_instance
|
104
|
+
--------------------------------------------------------------------------------------------
|
105
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
106
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
116
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
122
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
128
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
138
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
146
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
155
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
165
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
173
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
182
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
191
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
199
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
208
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
217
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
225
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
234
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
243
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
251
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
260
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
269
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
277
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
286
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
295
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
303
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
312
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
321
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
329
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
338
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
347
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
355
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
364
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
373
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
381
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
390
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
400
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
408
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
417
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
427
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
435
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
444
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
453
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
461
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
470
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
479
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
487
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
496
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
505
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
513
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
522
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
531
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
539
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
548
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
557
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
565
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
574
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
583
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
591
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
600
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
609
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
617
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
626
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
636
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
644
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
653
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
662
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
670
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
679
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (1.4ms)[0m rollback transaction
|
688
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
698
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
706
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
715
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
725
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
733
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
742
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
752
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
760
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
769
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
778
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
786
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
795
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
804
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
812
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
821
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
831
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
839
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
848
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
858
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
866
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
875
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.3ms)[0m rollback transaction
|
885
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
893
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
902
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
912
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
920
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
929
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
938
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
946
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
955
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
964
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
972
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
981
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.3ms)[0m rollback transaction
|
991
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
999
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1008
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.9ms)[0m rollback transaction
|
1018
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1026
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1035
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1045
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1053
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1062
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.3ms)[0m rollback transaction
|
1072
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1082
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1090
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1099
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1109
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1117
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1126
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1136
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1144
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1153
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1163
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1171
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1180
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1190
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1198
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1207
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1217
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1225
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1234
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1243
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1251
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1260
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1270
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1278
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1287
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1296
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1304
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1313
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
1322
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1330
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1339
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1348
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1357
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1366
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1375
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1384
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1393
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1402
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1411
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
1420
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1429
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
1438
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
1447
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1456
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1465
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1474
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1483
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1492
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1501
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
1510
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1519
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1528
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1537
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1546
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.4ms)[0m rollback transaction
|
1555
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
1564
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1573
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1582
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1591
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1600
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1609
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1618
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1627
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1636
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.4ms)[0m rollback transaction
|
1645
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
1654
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1660
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.4ms)[0m rollback transaction
|
1669
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
1678
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.4ms)[0m rollback transaction
|
1687
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.4ms)[0m rollback transaction
|
1696
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
1705
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
1714
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
1723
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1732
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1741
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1750
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1759
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1768
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1777
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1786
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1795
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1804
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1813
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1822
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1831
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1840
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1849
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
1858
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1867
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1876
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1885
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1894
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1903
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1912
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1921
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1930
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.3ms)[0m rollback transaction
|
1939
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1948
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1957
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1966
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1975
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1984
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1993
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
2002
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2011
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2020
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2029
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2038
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2047
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2056
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2065
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2074
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2083
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2092
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2101
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
2110
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2119
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2128
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
2137
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2146
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2155
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2164
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2173
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2182
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2191
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2200
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2209
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2218
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2227
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2236
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2245
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2254
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2263
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.3ms)[0m rollback transaction
|
2272
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2281
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2290
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2299
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2308
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2317
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
2326
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
2335
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2344
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2353
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2362
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2371
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2380
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2389
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2398
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2407
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2416
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2425
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2434
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2443
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2452
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2461
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2470
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2479
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2488
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2497
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2506
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
2515
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2524
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2533
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2542
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2551
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2560
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2569
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
2578
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2587
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2596
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2605
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2614
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2623
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2632
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2641
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2650
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2659
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2668
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2677
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2686
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2695
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2704
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2713
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2722
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2731
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
2740
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2749
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2758
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2767
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2776
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2785
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2794
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2803
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2812
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2821
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2830
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2839
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2848
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2857
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2866
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2875
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2884
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
2893
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|