erector 0.8.3 → 0.9.0.pre1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (115) hide show
  1. data/Gemfile +21 -0
  2. data/Rakefile +171 -0
  3. data/VERSION.yml +3 -2
  4. data/lib/erector.rb +3 -5
  5. data/lib/erector/abstract_widget.rb +76 -31
  6. data/lib/erector/attributes.rb +34 -0
  7. data/lib/erector/caching.rb +1 -0
  8. data/lib/erector/convenience.rb +12 -4
  9. data/lib/erector/dependency.rb +2 -1
  10. data/lib/erector/element.rb +113 -0
  11. data/lib/erector/erect/erect.rb +10 -7
  12. data/lib/erector/externals.rb +2 -1
  13. data/lib/erector/html.rb +6 -340
  14. data/lib/erector/html_widget.rb +300 -0
  15. data/lib/erector/inline.rb +1 -1
  16. data/lib/erector/output.rb +39 -12
  17. data/lib/erector/promise.rb +137 -0
  18. data/lib/erector/rails2/extensions/rails_widget.rb +1 -1
  19. data/lib/erector/rails3.rb +1 -1
  20. data/lib/erector/sass.rb +14 -19
  21. data/lib/erector/tag.rb +65 -0
  22. data/lib/erector/text.rb +123 -0
  23. data/lib/erector/version.rb +1 -1
  24. data/lib/erector/widget.rb +52 -12
  25. data/lib/erector/widgets/page.rb +12 -10
  26. data/lib/erector/xml_widget.rb +131 -0
  27. data/spec/erector/caching_spec.rb +1 -0
  28. data/spec/erector/externals_spec.rb +0 -1
  29. data/spec/erector/html_spec.rb +9 -25
  30. data/spec/erector/output_spec.rb +102 -9
  31. data/spec/erector/promise_spec.rb +173 -0
  32. data/spec/erector/sass_spec.rb +1 -1
  33. data/spec/erector/tag_spec.rb +67 -0
  34. data/spec/erector/widget_spec.rb +53 -2
  35. data/spec/erector/xml_widget_spec.rb +74 -0
  36. data/spec/rails2/rails_app/Gemfile +1 -0
  37. data/spec/rails2/rails_app/spec/rails_spec_helper.rb +2 -0
  38. data/spec/rails_root/Gemfile +11 -0
  39. data/spec/rails_root/README +256 -0
  40. data/spec/rails_root/Rakefile +7 -0
  41. data/spec/rails_root/app/controllers/application.rb +6 -0
  42. data/spec/rails_root/app/controllers/application_controller.rb +3 -0
  43. data/spec/rails_root/app/helpers/application_helper.rb +2 -0
  44. data/spec/rails_root/app/views/layouts/application.html.erb +14 -0
  45. data/spec/rails_root/app/views/test/_erb.erb +1 -0
  46. data/spec/rails_root/app/views/test/_erector.rb +5 -0
  47. data/spec/rails_root/app/views/test/_partial_with_locals.rb +7 -0
  48. data/spec/rails_root/app/views/test/bare.rb +5 -0
  49. data/spec/rails_root/app/views/test/erb_from_erector.html.rb +5 -0
  50. data/spec/rails_root/app/views/test/erector_from_erb.html.erb +1 -0
  51. data/spec/rails_root/app/views/test/erector_with_locals_from_erb.html.erb +6 -0
  52. data/spec/rails_root/app/views/test/implicit_assigns.html.rb +5 -0
  53. data/spec/rails_root/app/views/test/needs.html.rb +7 -0
  54. data/spec/rails_root/app/views/test/needs_subclass.html.rb +5 -0
  55. data/spec/rails_root/app/views/test/protected_instance_variable.html.rb +5 -0
  56. data/spec/rails_root/app/views/test/render_default.html.rb +5 -0
  57. data/spec/rails_root/app/views/test/render_partial.html.rb +5 -0
  58. data/spec/rails_root/config.ru +4 -0
  59. data/spec/rails_root/config/application.rb +42 -0
  60. data/spec/rails_root/config/boot.rb +13 -0
  61. data/spec/rails_root/config/database.yml +22 -0
  62. data/spec/rails_root/config/environment.rb +5 -0
  63. data/spec/rails_root/config/environments/development.rb +22 -0
  64. data/spec/rails_root/config/environments/production.rb +49 -0
  65. data/spec/rails_root/config/environments/test.rb +35 -0
  66. data/spec/rails_root/config/initializers/backtrace_silencers.rb +7 -0
  67. data/spec/rails_root/config/initializers/inflections.rb +10 -0
  68. data/spec/rails_root/config/initializers/mime_types.rb +5 -0
  69. data/spec/rails_root/config/initializers/secret_token.rb +7 -0
  70. data/spec/rails_root/config/initializers/session_store.rb +8 -0
  71. data/spec/rails_root/config/locales/en.yml +5 -0
  72. data/spec/rails_root/config/routes.rb +58 -0
  73. data/spec/rails_root/db/seeds.rb +7 -0
  74. data/spec/rails_root/doc/README_FOR_APP +2 -0
  75. data/spec/rails_root/log/development.log +17 -0
  76. data/spec/rails_root/log/test.log +3750 -0
  77. data/spec/rails_root/public/404.html +26 -0
  78. data/spec/rails_root/public/422.html +26 -0
  79. data/spec/rails_root/public/500.html +26 -0
  80. data/spec/rails_root/public/dispatch.cgi +10 -0
  81. data/spec/rails_root/public/dispatch.fcgi +24 -0
  82. data/spec/rails_root/public/dispatch.rb +10 -0
  83. data/spec/rails_root/public/favicon.ico +0 -0
  84. data/spec/rails_root/public/images/rails.png +0 -0
  85. data/spec/rails_root/public/index.html +262 -0
  86. data/spec/rails_root/public/javascripts/application.js +2 -0
  87. data/spec/rails_root/public/javascripts/controls.js +965 -0
  88. data/spec/rails_root/public/javascripts/dragdrop.js +974 -0
  89. data/spec/rails_root/public/javascripts/effects.js +1123 -0
  90. data/spec/rails_root/public/javascripts/prototype.js +6001 -0
  91. data/spec/rails_root/public/javascripts/rails.js +175 -0
  92. data/spec/rails_root/public/robots.txt +5 -0
  93. data/spec/rails_root/script/about +3 -0
  94. data/spec/rails_root/script/console +3 -0
  95. data/spec/rails_root/script/destroy +3 -0
  96. data/spec/rails_root/script/generate +3 -0
  97. data/spec/rails_root/script/performance/benchmarker +3 -0
  98. data/spec/rails_root/script/performance/profiler +3 -0
  99. data/spec/rails_root/script/performance/request +3 -0
  100. data/spec/rails_root/script/plugin +3 -0
  101. data/spec/rails_root/script/process/inspector +3 -0
  102. data/spec/rails_root/script/process/reaper +3 -0
  103. data/spec/rails_root/script/process/spawner +3 -0
  104. data/spec/rails_root/script/rails +6 -0
  105. data/spec/rails_root/script/runner +3 -0
  106. data/spec/rails_root/script/server +3 -0
  107. data/spec/rails_root/spec/form_builder_spec.rb +21 -0
  108. data/spec/rails_root/spec/rails_helpers_spec.rb +220 -0
  109. data/spec/rails_root/spec/rails_spec_helper.rb +10 -0
  110. data/spec/rails_root/spec/rails_widget_spec.rb +83 -0
  111. data/spec/rails_root/spec/render_spec.rb +298 -0
  112. data/spec/rails_root/test/performance/browsing_test.rb +9 -0
  113. data/spec/rails_root/test/test_helper.rb +13 -0
  114. data/spec/spec_helper.rb +3 -1
  115. metadata +202 -66
@@ -0,0 +1,3750 @@
1
+ Rendered text template (0.0ms)
2
+ Processing by TestController#render_widget_class as HTML
3
+ Completed 200 OK in 580ms (Views: 2.7ms)
4
+ Processing by TestController#render_widget_instance as HTML
5
+ Completed 200 OK in 1ms (Views: 0.4ms)
6
+ Processing by TestController#render_widget_with_ignored_controller_variables as HTML
7
+ Completed 200 OK in 1ms (Views: 0.5ms)
8
+ Processing by TestController#render_widget_with_extra_controller_variables as HTML
9
+ Completed 500 Internal Server Error in 1ms
10
+ Processing by TestController#render_with_content_method as HTML
11
+ Completed 200 OK in 1ms (Views: 0.4ms)
12
+ Processing by TestController#render_with_rails_options as HTML
13
+ Completed 500 Internal Server Error in 1ms (Views: 0.4ms)
14
+ Processing by TestController#render_template_with_implicit_assigns as HTML
15
+ Rendered test/implicit_assigns.html.rb (1.3ms)
16
+ Completed 200 OK in 3ms (Views: 3.1ms)
17
+ Processing by TestController#render_template_with_protected_instance_variable as HTML
18
+ Rendered test/protected_instance_variable.html.rb (1.1ms)
19
+ Completed 200 OK in 3ms (Views: 2.9ms)
20
+ Processing by TestController#render_bare_rb as HTML
21
+ Rendered test/bare.rb (1.8ms)
22
+ Completed 200 OK in 4ms (Views: 3.5ms)
23
+ Processing by TestController#render_template_with_excess_variables as HTML
24
+ Rendered test/render_default.html.rb (1.2ms)
25
+ Completed 200 OK in 4ms (Views: 3.1ms)
26
+ Processing by TestController#render_needs_template_with_excess_variables as HTML
27
+ Rendered test/needs.html.rb (0.9ms)
28
+ Completed 500 Internal Server Error in 3ms
29
+ Processing by TestController#render_needs_template_with_excess_variables_and_ignoring_extras as HTML
30
+ Rendered test/needs.html.rb (0.2ms)
31
+ Completed 200 OK in 1ms (Views: 0.6ms)
32
+ Processing by TestController#render_needs_subclass_template_with_excess_variables_and_ignoring_extras as HTML
33
+ Rendered test/needs_subclass.html.rb (1.2ms)
34
+ Completed 200 OK in 3ms (Views: 3.1ms)
35
+ Processing by TestController#render_template_with_partial as HTML
36
+ Rendered test/_erector.rb (1.7ms)
37
+ Rendered test/render_partial.html.rb (4.2ms)
38
+ Completed 200 OK in 6ms (Views: 5.9ms)
39
+ Processing by TestController#render_erb_from_erector as HTML
40
+ Rendered test/_erb.erb (0.5ms)
41
+ Rendered test/erb_from_erector.html.rb (44.6ms)
42
+ Completed 200 OK in 47ms (Views: 46.3ms)
43
+ Processing by TestController#render_erector_from_erb as HTML
44
+ Rendered test/_erector.rb (0.2ms)
45
+ Rendered test/erector_from_erb.html.erb (0.9ms)
46
+ Completed 200 OK in 3ms (Views: 2.8ms)
47
+ Processing by TestController#render_erector_with_locals_from_erb as HTML
48
+ Rendered test/_partial_with_locals.rb (1.9ms)
49
+ Rendered test/erector_with_locals_from_erb.html.erb (3.8ms)
50
+ Completed 200 OK in 6ms (Views: 5.7ms)
51
+ Processing by TestController#render_erector_with_locals_from_erb_defaulted as HTML
52
+ Rendered test/_partial_with_locals.rb (0.5ms)
53
+ Rendered test/erector_with_locals_from_erb.html.erb (0.7ms)
54
+ Completed 200 OK in 1ms (Views: 1.1ms)
55
+ Processing by TestController#render_erector_with_locals_from_erb_override as HTML
56
+ Rendered test/_partial_with_locals.rb (0.2ms)
57
+ Rendered test/erector_with_locals_from_erb.html.erb (0.4ms)
58
+ Completed 200 OK in 1ms (Views: 0.8ms)
59
+ Processing by TestController#render_erector_with_locals_from_erb_not_needed as HTML
60
+ Rendered test/_partial_with_locals.rb (0.7ms)
61
+ Rendered test/erector_with_locals_from_erb.html.erb (0.9ms)
62
+ Completed 500 Internal Server Error in 1ms
63
+ Processing by TestController#render_erector_partial_with_unneeded_controller_variables as HTML
64
+ Rendered test/_partial_with_locals.rb (0.2ms)
65
+ Rendered test/erector_with_locals_from_erb.html.erb (0.4ms)
66
+ Completed 200 OK in 1ms (Views: 0.8ms)
67
+ Processing by TestController#render_erector_partial_without_controller_variables as HTML
68
+ Rendered test/_partial_with_locals.rb (0.2ms)
69
+ Rendered test/erector_with_locals_from_erb.html.erb (0.4ms)
70
+ Completed 200 OK in 1ms (Views: 0.8ms)
71
+ Processing by TestController#render_default as HTML
72
+ Rendered test/render_default.html.rb (0.5ms)
73
+ Completed 200 OK in 2ms (Views: 2.2ms)
74
+ Processing by TestController#render_with_needs as HTML
75
+ Completed 200 OK in 1ms (Views: 0.4ms)
76
+ Rendered text template (0.0ms)
77
+ Processing by TestController#render_widget_class as HTML
78
+ Completed 200 OK in 500ms (Views: 2.5ms)
79
+ Processing by TestController#render_widget_instance as HTML
80
+ Completed 200 OK in 1ms (Views: 0.4ms)
81
+ Processing by TestController#render_widget_with_ignored_controller_variables as HTML
82
+ Completed 200 OK in 1ms (Views: 0.5ms)
83
+ Processing by TestController#render_widget_with_extra_controller_variables as HTML
84
+ Completed 500 Internal Server Error in 1ms
85
+ Processing by TestController#render_with_content_method as HTML
86
+ Completed 200 OK in 1ms (Views: 0.4ms)
87
+ Processing by TestController#render_with_rails_options as HTML
88
+ Completed 500 Internal Server Error in 1ms (Views: 0.4ms)
89
+ Processing by TestController#render_template_with_implicit_assigns as HTML
90
+ Rendered test/implicit_assigns.html.rb (1.3ms)
91
+ Completed 200 OK in 3ms (Views: 2.8ms)
92
+ Processing by TestController#render_template_with_protected_instance_variable as HTML
93
+ Rendered test/protected_instance_variable.html.rb (1.1ms)
94
+ Completed 200 OK in 3ms (Views: 2.6ms)
95
+ Processing by TestController#render_bare_rb as HTML
96
+ Rendered test/bare.rb (1.8ms)
97
+ Completed 200 OK in 3ms (Views: 3.1ms)
98
+ Processing by TestController#render_template_with_excess_variables as HTML
99
+ Rendered test/render_default.html.rb (1.3ms)
100
+ Completed 200 OK in 3ms (Views: 2.9ms)
101
+ Processing by TestController#render_needs_template_with_excess_variables as HTML
102
+ Rendered test/needs.html.rb (0.9ms)
103
+ Completed 500 Internal Server Error in 3ms
104
+ Processing by TestController#render_needs_template_with_excess_variables_and_ignoring_extras as HTML
105
+ Rendered test/needs.html.rb (0.2ms)
106
+ Completed 200 OK in 1ms (Views: 0.6ms)
107
+ Processing by TestController#render_needs_subclass_template_with_excess_variables_and_ignoring_extras as HTML
108
+ Rendered test/needs_subclass.html.rb (1.2ms)
109
+ Completed 200 OK in 3ms (Views: 2.7ms)
110
+ Processing by TestController#render_template_with_partial as HTML
111
+ Rendered test/_erector.rb (1.8ms)
112
+ Rendered test/render_partial.html.rb (4.0ms)
113
+ Completed 200 OK in 6ms (Views: 5.5ms)
114
+ Processing by TestController#render_erb_from_erector as HTML
115
+ Rendered test/_erb.erb (0.5ms)
116
+ Rendered test/erb_from_erector.html.rb (43.5ms)
117
+ Completed 200 OK in 45ms (Views: 44.9ms)
118
+ Processing by TestController#render_erector_from_erb as HTML
119
+ Rendered test/_erector.rb (0.2ms)
120
+ Rendered test/erector_from_erb.html.erb (0.8ms)
121
+ Completed 200 OK in 2ms (Views: 2.2ms)
122
+ Processing by TestController#render_erector_with_locals_from_erb as HTML
123
+ Rendered test/_partial_with_locals.rb (1.9ms)
124
+ Rendered test/erector_with_locals_from_erb.html.erb (3.4ms)
125
+ Completed 200 OK in 5ms (Views: 4.8ms)
126
+ Processing by TestController#render_erector_with_locals_from_erb_defaulted as HTML
127
+ Rendered test/_partial_with_locals.rb (0.5ms)
128
+ Rendered test/erector_with_locals_from_erb.html.erb (0.7ms)
129
+ Completed 200 OK in 1ms (Views: 1.1ms)
130
+ Processing by TestController#render_erector_with_locals_from_erb_override as HTML
131
+ Rendered test/_partial_with_locals.rb (0.2ms)
132
+ Rendered test/erector_with_locals_from_erb.html.erb (0.4ms)
133
+ Completed 200 OK in 1ms (Views: 0.8ms)
134
+ Processing by TestController#render_erector_with_locals_from_erb_not_needed as HTML
135
+ Rendered test/_partial_with_locals.rb (0.6ms)
136
+ Rendered test/erector_with_locals_from_erb.html.erb (0.8ms)
137
+ Completed 500 Internal Server Error in 1ms
138
+ Processing by TestController#render_erector_partial_with_unneeded_controller_variables as HTML
139
+ Rendered test/_partial_with_locals.rb (0.2ms)
140
+ Rendered test/erector_with_locals_from_erb.html.erb (0.4ms)
141
+ Completed 200 OK in 1ms (Views: 0.8ms)
142
+ Processing by TestController#render_erector_partial_without_controller_variables as HTML
143
+ Rendered test/_partial_with_locals.rb (0.2ms)
144
+ Rendered test/erector_with_locals_from_erb.html.erb (0.4ms)
145
+ Completed 200 OK in 1ms (Views: 0.7ms)
146
+ Processing by TestController#render_default as HTML
147
+ Rendered test/render_default.html.rb (0.5ms)
148
+ Completed 200 OK in 2ms (Views: 2.0ms)
149
+ Processing by TestController#render_with_needs as HTML
150
+ Completed 200 OK in 1ms (Views: 0.4ms)
151
+ Rendered text template (0.0ms)
152
+ Processing by TestController#render_widget_class as HTML
153
+ Completed 200 OK in 561ms (Views: 2.5ms)
154
+ Processing by TestController#render_widget_instance as HTML
155
+ Completed 200 OK in 1ms (Views: 0.4ms)
156
+ Processing by TestController#render_widget_with_ignored_controller_variables as HTML
157
+ Completed 200 OK in 1ms (Views: 0.5ms)
158
+ Processing by TestController#render_widget_with_extra_controller_variables as HTML
159
+ Completed 500 Internal Server Error in 1ms
160
+ Processing by TestController#render_with_content_method as HTML
161
+ Completed 200 OK in 1ms (Views: 0.4ms)
162
+ Processing by TestController#render_with_rails_options as HTML
163
+ Completed 500 Internal Server Error in 1ms (Views: 0.4ms)
164
+ Processing by TestController#render_template_with_implicit_assigns as HTML
165
+ Rendered test/implicit_assigns.html.rb (1.2ms)
166
+ Completed 200 OK in 3ms (Views: 2.8ms)
167
+ Processing by TestController#render_template_with_protected_instance_variable as HTML
168
+ Rendered test/protected_instance_variable.html.rb (1.0ms)
169
+ Completed 200 OK in 3ms (Views: 2.5ms)
170
+ Processing by TestController#render_bare_rb as HTML
171
+ Rendered test/bare.rb (1.8ms)
172
+ Completed 200 OK in 3ms (Views: 3.1ms)
173
+ Processing by TestController#render_template_with_excess_variables as HTML
174
+ Rendered test/render_default.html.rb (1.1ms)
175
+ Completed 200 OK in 3ms (Views: 2.6ms)
176
+ Processing by TestController#render_needs_template_with_excess_variables as HTML
177
+ Rendered test/needs.html.rb (0.9ms)
178
+ Completed 500 Internal Server Error in 3ms
179
+ Processing by TestController#render_needs_template_with_excess_variables_and_ignoring_extras as HTML
180
+ Rendered test/needs.html.rb (0.2ms)
181
+ Completed 200 OK in 1ms (Views: 0.6ms)
182
+ Processing by TestController#render_needs_subclass_template_with_excess_variables_and_ignoring_extras as HTML
183
+ Rendered test/needs_subclass.html.rb (1.1ms)
184
+ Completed 200 OK in 3ms (Views: 2.6ms)
185
+ Processing by TestController#render_template_with_partial as HTML
186
+ Rendered test/_erector.rb (1.7ms)
187
+ Rendered test/render_partial.html.rb (3.8ms)
188
+ Completed 200 OK in 5ms (Views: 5.3ms)
189
+ Processing by TestController#render_erb_from_erector as HTML
190
+ Rendered test/_erb.erb (0.5ms)
191
+ Rendered test/erb_from_erector.html.rb (43.6ms)
192
+ Completed 200 OK in 45ms (Views: 45.1ms)
193
+ Processing by TestController#render_erector_from_erb as HTML
194
+ Rendered test/_erector.rb (0.2ms)
195
+ Rendered test/erector_from_erb.html.erb (0.8ms)
196
+ Completed 200 OK in 2ms (Views: 2.2ms)
197
+ Processing by TestController#render_erector_with_locals_from_erb as HTML
198
+ Rendered test/_partial_with_locals.rb (1.8ms)
199
+ Rendered test/erector_with_locals_from_erb.html.erb (3.4ms)
200
+ Completed 200 OK in 5ms (Views: 4.9ms)
201
+ Processing by TestController#render_erector_with_locals_from_erb_defaulted as HTML
202
+ Rendered test/_partial_with_locals.rb (0.5ms)
203
+ Rendered test/erector_with_locals_from_erb.html.erb (0.7ms)
204
+ Completed 200 OK in 1ms (Views: 1.1ms)
205
+ Processing by TestController#render_erector_with_locals_from_erb_override as HTML
206
+ Rendered test/_partial_with_locals.rb (0.2ms)
207
+ Rendered test/erector_with_locals_from_erb.html.erb (0.4ms)
208
+ Completed 200 OK in 1ms (Views: 0.7ms)
209
+ Processing by TestController#render_erector_with_locals_from_erb_not_needed as HTML
210
+ Rendered test/_partial_with_locals.rb (0.6ms)
211
+ Rendered test/erector_with_locals_from_erb.html.erb (0.8ms)
212
+ Completed 500 Internal Server Error in 1ms
213
+ Processing by TestController#render_erector_partial_with_unneeded_controller_variables as HTML
214
+ Rendered test/_partial_with_locals.rb (0.2ms)
215
+ Rendered test/erector_with_locals_from_erb.html.erb (0.4ms)
216
+ Completed 200 OK in 1ms (Views: 0.8ms)
217
+ Processing by TestController#render_erector_partial_without_controller_variables as HTML
218
+ Rendered test/_partial_with_locals.rb (0.2ms)
219
+ Rendered test/erector_with_locals_from_erb.html.erb (0.3ms)
220
+ Completed 200 OK in 1ms (Views: 0.7ms)
221
+ Processing by TestController#render_default as HTML
222
+ Rendered test/render_default.html.rb (0.5ms)
223
+ Completed 200 OK in 2ms (Views: 2.0ms)
224
+ Processing by TestController#render_with_needs as HTML
225
+ Completed 200 OK in 1ms (Views: 0.4ms)
226
+ Rendered text template (0.0ms)
227
+ Processing by TestController#render_widget_class as HTML
228
+ Completed 200 OK in 600ms (Views: 2.7ms)
229
+ Processing by TestController#render_widget_instance as HTML
230
+ Completed 200 OK in 1ms (Views: 0.4ms)
231
+ Processing by TestController#render_widget_with_ignored_controller_variables as HTML
232
+ Completed 200 OK in 1ms (Views: 0.5ms)
233
+ Processing by TestController#render_widget_with_extra_controller_variables as HTML
234
+ Completed 500 Internal Server Error in 1ms
235
+ Processing by TestController#render_with_content_method as HTML
236
+ Completed 200 OK in 1ms (Views: 0.4ms)
237
+ Processing by TestController#render_with_rails_options as HTML
238
+ Completed 500 Internal Server Error in 1ms (Views: 0.4ms)
239
+ Processing by TestController#render_template_with_implicit_assigns as HTML
240
+ Rendered test/implicit_assigns.html.rb (1.4ms)
241
+ Completed 200 OK in 11ms (Views: 10.3ms)
242
+ Processing by TestController#render_template_with_protected_instance_variable as HTML
243
+ Rendered test/protected_instance_variable.html.rb (1.2ms)
244
+ Completed 200 OK in 4ms (Views: 3.3ms)
245
+ Processing by TestController#render_bare_rb as HTML
246
+ Rendered test/bare.rb (2.0ms)
247
+ Completed 200 OK in 11ms (Views: 10.7ms)
248
+ Processing by TestController#render_template_with_excess_variables as HTML
249
+ Rendered test/render_default.html.rb (1.2ms)
250
+ Completed 200 OK in 3ms (Views: 3.0ms)
251
+ Processing by TestController#render_needs_template_with_excess_variables as HTML
252
+ Rendered test/needs.html.rb (1.0ms)
253
+ Completed 500 Internal Server Error in 3ms
254
+ Processing by TestController#render_needs_template_with_excess_variables_and_ignoring_extras as HTML
255
+ Rendered test/needs.html.rb (0.2ms)
256
+ Completed 200 OK in 1ms (Views: 0.6ms)
257
+ Processing by TestController#render_needs_subclass_template_with_excess_variables_and_ignoring_extras as HTML
258
+ Rendered test/needs_subclass.html.rb (1.3ms)
259
+ Completed 200 OK in 4ms (Views: 3.4ms)
260
+ Processing by TestController#render_template_with_partial as HTML
261
+ Rendered test/_erector.rb (1.8ms)
262
+ Rendered test/render_partial.html.rb (7.0ms)
263
+ Completed 200 OK in 9ms (Views: 8.9ms)
264
+ Processing by TestController#render_erb_from_erector as HTML
265
+ Rendered test/_erb.erb (0.6ms)
266
+ Rendered test/erb_from_erector.html.rb (52.6ms)
267
+ Completed 200 OK in 55ms (Views: 54.5ms)
268
+ Processing by TestController#render_erector_from_erb as HTML
269
+ Rendered test/_erector.rb (0.2ms)
270
+ Rendered test/erector_from_erb.html.erb (0.8ms)
271
+ Completed 200 OK in 3ms (Views: 2.6ms)
272
+ Processing by TestController#render_erector_with_locals_from_erb as HTML
273
+ Rendered test/_partial_with_locals.rb (2.2ms)
274
+ Rendered test/erector_with_locals_from_erb.html.erb (4.4ms)
275
+ Completed 200 OK in 7ms (Views: 6.3ms)
276
+ Processing by TestController#render_erector_with_locals_from_erb_defaulted as HTML
277
+ Rendered test/_partial_with_locals.rb (0.6ms)
278
+ Rendered test/erector_with_locals_from_erb.html.erb (0.9ms)
279
+ Completed 200 OK in 2ms (Views: 1.4ms)
280
+ Processing by TestController#render_erector_with_locals_from_erb_override as HTML
281
+ Rendered test/_partial_with_locals.rb (0.2ms)
282
+ Rendered test/erector_with_locals_from_erb.html.erb (0.4ms)
283
+ Completed 200 OK in 1ms (Views: 0.9ms)
284
+ Processing by TestController#render_erector_with_locals_from_erb_not_needed as HTML
285
+ Rendered test/_partial_with_locals.rb (0.6ms)
286
+ Rendered test/erector_with_locals_from_erb.html.erb (0.9ms)
287
+ Completed 500 Internal Server Error in 1ms
288
+ Processing by TestController#render_erector_partial_with_unneeded_controller_variables as HTML
289
+ Rendered test/_partial_with_locals.rb (0.2ms)
290
+ Rendered test/erector_with_locals_from_erb.html.erb (0.4ms)
291
+ Completed 200 OK in 1ms (Views: 0.8ms)
292
+ Processing by TestController#render_erector_partial_without_controller_variables as HTML
293
+ Rendered test/_partial_with_locals.rb (0.2ms)
294
+ Rendered test/erector_with_locals_from_erb.html.erb (0.4ms)
295
+ Completed 200 OK in 1ms (Views: 0.7ms)
296
+ Processing by TestController#render_default as HTML
297
+ Rendered test/render_default.html.rb (0.5ms)
298
+ Completed 200 OK in 2ms (Views: 2.2ms)
299
+ Processing by TestController#render_with_needs as HTML
300
+ Completed 200 OK in 1ms (Views: 0.4ms)
301
+ Rendered text template (0.0ms)
302
+ Processing by TestController#render_widget_class as HTML
303
+ Completed 200 OK in 501ms (Views: 2.5ms)
304
+ Processing by TestController#render_widget_instance as HTML
305
+ Completed 200 OK in 1ms (Views: 0.4ms)
306
+ Processing by TestController#render_widget_with_ignored_controller_variables as HTML
307
+ Completed 200 OK in 1ms (Views: 0.5ms)
308
+ Processing by TestController#render_widget_with_extra_controller_variables as HTML
309
+ Completed 500 Internal Server Error in 1ms
310
+ Processing by TestController#render_with_content_method as HTML
311
+ Completed 200 OK in 1ms (Views: 0.4ms)
312
+ Processing by TestController#render_with_rails_options as HTML
313
+ Completed 500 Internal Server Error in 1ms (Views: 0.4ms)
314
+ Processing by TestController#render_template_with_implicit_assigns as HTML
315
+ Rendered test/implicit_assigns.html.rb (1.2ms)
316
+ Completed 200 OK in 3ms (Views: 2.8ms)
317
+ Processing by TestController#render_template_with_protected_instance_variable as HTML
318
+ Rendered test/protected_instance_variable.html.rb (1.1ms)
319
+ Completed 200 OK in 3ms (Views: 2.6ms)
320
+ Processing by TestController#render_bare_rb as HTML
321
+ Rendered test/bare.rb (1.8ms)
322
+ Completed 200 OK in 3ms (Views: 3.2ms)
323
+ Processing by TestController#render_template_with_excess_variables as HTML
324
+ Rendered test/render_default.html.rb (1.2ms)
325
+ Completed 200 OK in 3ms (Views: 2.7ms)
326
+ Processing by TestController#render_needs_template_with_excess_variables as HTML
327
+ Rendered test/needs.html.rb (1.0ms)
328
+ Completed 500 Internal Server Error in 3ms
329
+ Processing by TestController#render_needs_template_with_excess_variables_and_ignoring_extras as HTML
330
+ Rendered test/needs.html.rb (0.2ms)
331
+ Completed 200 OK in 1ms (Views: 0.6ms)
332
+ Processing by TestController#render_needs_subclass_template_with_excess_variables_and_ignoring_extras as HTML
333
+ Rendered test/needs_subclass.html.rb (1.1ms)
334
+ Completed 200 OK in 3ms (Views: 2.6ms)
335
+ Processing by TestController#render_template_with_partial as HTML
336
+ Rendered test/_erector.rb (1.6ms)
337
+ Rendered test/render_partial.html.rb (3.7ms)
338
+ Completed 200 OK in 5ms (Views: 5.1ms)
339
+ Processing by TestController#render_erb_from_erector as HTML
340
+ Rendered test/_erb.erb (0.5ms)
341
+ Rendered test/erb_from_erector.html.rb (43.4ms)
342
+ Completed 200 OK in 45ms (Views: 44.8ms)
343
+ Processing by TestController#render_erector_from_erb as HTML
344
+ Rendered test/_erector.rb (0.2ms)
345
+ Rendered test/erector_from_erb.html.erb (0.8ms)
346
+ Completed 200 OK in 2ms (Views: 2.2ms)
347
+ Processing by TestController#render_erector_with_locals_from_erb as HTML
348
+ Rendered test/_partial_with_locals.rb (2.0ms)
349
+ Rendered test/erector_with_locals_from_erb.html.erb (3.5ms)
350
+ Completed 200 OK in 5ms (Views: 5.0ms)
351
+ Processing by TestController#render_erector_with_locals_from_erb_defaulted as HTML
352
+ Rendered test/_partial_with_locals.rb (0.5ms)
353
+ Rendered test/erector_with_locals_from_erb.html.erb (0.7ms)
354
+ Completed 200 OK in 1ms (Views: 1.2ms)
355
+ Processing by TestController#render_erector_with_locals_from_erb_override as HTML
356
+ Rendered test/_partial_with_locals.rb (0.2ms)
357
+ Rendered test/erector_with_locals_from_erb.html.erb (0.4ms)
358
+ Completed 200 OK in 1ms (Views: 0.8ms)
359
+ Processing by TestController#render_erector_with_locals_from_erb_not_needed as HTML
360
+ Rendered test/_partial_with_locals.rb (0.6ms)
361
+ Rendered test/erector_with_locals_from_erb.html.erb (0.8ms)
362
+ Completed 500 Internal Server Error in 1ms
363
+ Processing by TestController#render_erector_partial_with_unneeded_controller_variables as HTML
364
+ Rendered test/_partial_with_locals.rb (0.2ms)
365
+ Rendered test/erector_with_locals_from_erb.html.erb (0.4ms)
366
+ Completed 200 OK in 1ms (Views: 0.8ms)
367
+ Processing by TestController#render_erector_partial_without_controller_variables as HTML
368
+ Rendered test/_partial_with_locals.rb (0.2ms)
369
+ Rendered test/erector_with_locals_from_erb.html.erb (0.4ms)
370
+ Completed 200 OK in 1ms (Views: 0.8ms)
371
+ Processing by TestController#render_default as HTML
372
+ Rendered test/render_default.html.rb (0.5ms)
373
+ Completed 200 OK in 2ms (Views: 2.0ms)
374
+ Processing by TestController#render_with_needs as HTML
375
+ Completed 200 OK in 1ms (Views: 0.4ms)
376
+ Rendered text template (0.0ms)
377
+ Processing by TestController#render_widget_class as HTML
378
+ Completed 200 OK in 500ms (Views: 2.5ms)
379
+ Processing by TestController#render_widget_instance as HTML
380
+ Completed 200 OK in 1ms (Views: 0.4ms)
381
+ Processing by TestController#render_widget_with_ignored_controller_variables as HTML
382
+ Completed 200 OK in 1ms (Views: 0.5ms)
383
+ Processing by TestController#render_widget_with_extra_controller_variables as HTML
384
+ Completed 500 Internal Server Error in 1ms
385
+ Processing by TestController#render_with_content_method as HTML
386
+ Completed 200 OK in 1ms (Views: 0.4ms)
387
+ Processing by TestController#render_with_rails_options as HTML
388
+ Completed 500 Internal Server Error in 1ms (Views: 0.3ms)
389
+ Processing by TestController#render_template_with_implicit_assigns as HTML
390
+ Rendered test/implicit_assigns.html.rb (1.2ms)
391
+ Completed 200 OK in 3ms (Views: 2.7ms)
392
+ Processing by TestController#render_template_with_protected_instance_variable as HTML
393
+ Rendered test/protected_instance_variable.html.rb (1.0ms)
394
+ Completed 200 OK in 3ms (Views: 2.5ms)
395
+ Processing by TestController#render_bare_rb as HTML
396
+ Rendered test/bare.rb (1.9ms)
397
+ Completed 200 OK in 3ms (Views: 3.2ms)
398
+ Processing by TestController#render_template_with_excess_variables as HTML
399
+ Rendered test/render_default.html.rb (1.1ms)
400
+ Completed 200 OK in 3ms (Views: 2.6ms)
401
+ Processing by TestController#render_needs_template_with_excess_variables as HTML
402
+ Rendered test/needs.html.rb (0.9ms)
403
+ Completed 500 Internal Server Error in 3ms
404
+ Processing by TestController#render_needs_template_with_excess_variables_and_ignoring_extras as HTML
405
+ Rendered test/needs.html.rb (0.2ms)
406
+ Completed 200 OK in 1ms (Views: 0.6ms)
407
+ Processing by TestController#render_needs_subclass_template_with_excess_variables_and_ignoring_extras as HTML
408
+ Rendered test/needs_subclass.html.rb (1.1ms)
409
+ Completed 200 OK in 3ms (Views: 2.6ms)
410
+ Processing by TestController#render_template_with_partial as HTML
411
+ Rendered test/_erector.rb (1.6ms)
412
+ Rendered test/render_partial.html.rb (3.8ms)
413
+ Completed 200 OK in 5ms (Views: 5.2ms)
414
+ Processing by TestController#render_erb_from_erector as HTML
415
+ Rendered test/_erb.erb (0.5ms)
416
+ Rendered test/erb_from_erector.html.rb (43.5ms)
417
+ Completed 200 OK in 45ms (Views: 44.9ms)
418
+ Processing by TestController#render_erector_from_erb as HTML
419
+ Rendered test/_erector.rb (0.2ms)
420
+ Rendered test/erector_from_erb.html.erb (0.8ms)
421
+ Completed 200 OK in 2ms (Views: 2.2ms)
422
+ Processing by TestController#render_erector_with_locals_from_erb as HTML
423
+ Rendered test/_partial_with_locals.rb (1.9ms)
424
+ Rendered test/erector_with_locals_from_erb.html.erb (3.4ms)
425
+ Completed 200 OK in 5ms (Views: 4.9ms)
426
+ Processing by TestController#render_erector_with_locals_from_erb_defaulted as HTML
427
+ Rendered test/_partial_with_locals.rb (0.5ms)
428
+ Rendered test/erector_with_locals_from_erb.html.erb (0.7ms)
429
+ Completed 200 OK in 1ms (Views: 1.1ms)
430
+ Processing by TestController#render_erector_with_locals_from_erb_override as HTML
431
+ Rendered test/_partial_with_locals.rb (0.2ms)
432
+ Rendered test/erector_with_locals_from_erb.html.erb (0.4ms)
433
+ Completed 200 OK in 1ms (Views: 0.7ms)
434
+ Processing by TestController#render_erector_with_locals_from_erb_not_needed as HTML
435
+ Rendered test/_partial_with_locals.rb (0.6ms)
436
+ Rendered test/erector_with_locals_from_erb.html.erb (0.8ms)
437
+ Completed 500 Internal Server Error in 1ms
438
+ Processing by TestController#render_erector_partial_with_unneeded_controller_variables as HTML
439
+ Rendered test/_partial_with_locals.rb (0.2ms)
440
+ Rendered test/erector_with_locals_from_erb.html.erb (0.4ms)
441
+ Completed 200 OK in 1ms (Views: 0.7ms)
442
+ Processing by TestController#render_erector_partial_without_controller_variables as HTML
443
+ Rendered test/_partial_with_locals.rb (0.2ms)
444
+ Rendered test/erector_with_locals_from_erb.html.erb (0.3ms)
445
+ Completed 200 OK in 1ms (Views: 0.7ms)
446
+ Processing by TestController#render_default as HTML
447
+ Rendered test/render_default.html.rb (0.5ms)
448
+ Completed 200 OK in 2ms (Views: 2.0ms)
449
+ Processing by TestController#render_with_needs as HTML
450
+ Completed 200 OK in 1ms (Views: 0.4ms)
451
+ Rendered text template (0.0ms)
452
+ Processing by TestController#render_widget_class as HTML
453
+ Completed 200 OK in 501ms (Views: 2.5ms)
454
+ Processing by TestController#render_widget_instance as HTML
455
+ Completed 200 OK in 1ms (Views: 0.4ms)
456
+ Processing by TestController#render_widget_with_ignored_controller_variables as HTML
457
+ Completed 200 OK in 1ms (Views: 0.5ms)
458
+ Processing by TestController#render_widget_with_extra_controller_variables as HTML
459
+ Completed 500 Internal Server Error in 1ms
460
+ Processing by TestController#render_with_content_method as HTML
461
+ Completed 200 OK in 1ms (Views: 0.4ms)
462
+ Processing by TestController#render_with_rails_options as HTML
463
+ Completed 500 Internal Server Error in 1ms (Views: 0.4ms)
464
+ Processing by TestController#render_template_with_implicit_assigns as HTML
465
+ Rendered test/implicit_assigns.html.rb (1.3ms)
466
+ Completed 200 OK in 3ms (Views: 2.9ms)
467
+ Processing by TestController#render_template_with_protected_instance_variable as HTML
468
+ Rendered test/protected_instance_variable.html.rb (1.1ms)
469
+ Completed 200 OK in 3ms (Views: 2.7ms)
470
+ Processing by TestController#render_bare_rb as HTML
471
+ Rendered test/bare.rb (1.8ms)
472
+ Completed 200 OK in 3ms (Views: 3.2ms)
473
+ Processing by TestController#render_template_with_excess_variables as HTML
474
+ Rendered test/render_default.html.rb (1.3ms)
475
+ Completed 200 OK in 3ms (Views: 3.0ms)
476
+ Processing by TestController#render_needs_template_with_excess_variables as HTML
477
+ Rendered test/needs.html.rb (0.9ms)
478
+ Completed 500 Internal Server Error in 3ms
479
+ Processing by TestController#render_needs_template_with_excess_variables_and_ignoring_extras as HTML
480
+ Rendered test/needs.html.rb (0.2ms)
481
+ Completed 200 OK in 1ms (Views: 0.6ms)
482
+ Processing by TestController#render_needs_subclass_template_with_excess_variables_and_ignoring_extras as HTML
483
+ Rendered test/needs_subclass.html.rb (1.2ms)
484
+ Completed 200 OK in 3ms (Views: 2.6ms)
485
+ Processing by TestController#render_template_with_partial as HTML
486
+ Rendered test/_erector.rb (1.7ms)
487
+ Rendered test/render_partial.html.rb (3.9ms)
488
+ Completed 200 OK in 6ms (Views: 5.4ms)
489
+ Processing by TestController#render_erb_from_erector as HTML
490
+ Rendered test/_erb.erb (0.6ms)
491
+ Rendered test/erb_from_erector.html.rb (43.7ms)
492
+ Completed 200 OK in 45ms (Views: 45.2ms)
493
+ Processing by TestController#render_erector_from_erb as HTML
494
+ Rendered test/_erector.rb (0.2ms)
495
+ Rendered test/erector_from_erb.html.erb (0.8ms)
496
+ Completed 200 OK in 3ms (Views: 2.2ms)
497
+ Processing by TestController#render_erector_with_locals_from_erb as HTML
498
+ Rendered test/_partial_with_locals.rb (1.9ms)
499
+ Rendered test/erector_with_locals_from_erb.html.erb (3.4ms)
500
+ Completed 200 OK in 5ms (Views: 4.8ms)
501
+ Processing by TestController#render_erector_with_locals_from_erb_defaulted as HTML
502
+ Rendered test/_partial_with_locals.rb (0.5ms)
503
+ Rendered test/erector_with_locals_from_erb.html.erb (0.7ms)
504
+ Completed 200 OK in 1ms (Views: 1.1ms)
505
+ Processing by TestController#render_erector_with_locals_from_erb_override as HTML
506
+ Rendered test/_partial_with_locals.rb (0.2ms)
507
+ Rendered test/erector_with_locals_from_erb.html.erb (0.4ms)
508
+ Completed 200 OK in 1ms (Views: 0.8ms)
509
+ Processing by TestController#render_erector_with_locals_from_erb_not_needed as HTML
510
+ Rendered test/_partial_with_locals.rb (0.6ms)
511
+ Rendered test/erector_with_locals_from_erb.html.erb (0.9ms)
512
+ Completed 500 Internal Server Error in 1ms
513
+ Processing by TestController#render_erector_partial_with_unneeded_controller_variables as HTML
514
+ Rendered test/_partial_with_locals.rb (0.2ms)
515
+ Rendered test/erector_with_locals_from_erb.html.erb (0.4ms)
516
+ Completed 200 OK in 1ms (Views: 0.8ms)
517
+ Processing by TestController#render_erector_partial_without_controller_variables as HTML
518
+ Rendered test/_partial_with_locals.rb (0.2ms)
519
+ Rendered test/erector_with_locals_from_erb.html.erb (0.4ms)
520
+ Completed 200 OK in 1ms (Views: 0.7ms)
521
+ Processing by TestController#render_default as HTML
522
+ Rendered test/render_default.html.rb (0.5ms)
523
+ Completed 200 OK in 2ms (Views: 2.0ms)
524
+ Processing by TestController#render_with_needs as HTML
525
+ Completed 200 OK in 1ms (Views: 0.4ms)
526
+ Rendered text template (0.0ms)
527
+ Processing by TestController#render_widget_class as HTML
528
+ Completed 200 OK in 602ms (Views: 2.4ms)
529
+ Processing by TestController#render_widget_instance as HTML
530
+ Completed 200 OK in 1ms (Views: 0.4ms)
531
+ Processing by TestController#render_widget_with_ignored_controller_variables as HTML
532
+ Completed 200 OK in 1ms (Views: 0.5ms)
533
+ Processing by TestController#render_widget_with_extra_controller_variables as HTML
534
+ Completed 500 Internal Server Error in 1ms
535
+ Processing by TestController#render_with_content_method as HTML
536
+ Completed 200 OK in 1ms (Views: 0.4ms)
537
+ Processing by TestController#render_with_rails_options as HTML
538
+ Completed 500 Internal Server Error in 1ms (Views: 0.4ms)
539
+ Processing by TestController#render_template_with_implicit_assigns as HTML
540
+ Rendered test/implicit_assigns.html.rb (1.3ms)
541
+ Completed 200 OK in 3ms (Views: 2.8ms)
542
+ Processing by TestController#render_template_with_protected_instance_variable as HTML
543
+ Rendered test/protected_instance_variable.html.rb (1.1ms)
544
+ Completed 200 OK in 3ms (Views: 2.6ms)
545
+ Processing by TestController#render_bare_rb as HTML
546
+ Rendered test/bare.rb (1.8ms)
547
+ Completed 200 OK in 3ms (Views: 3.2ms)
548
+ Processing by TestController#render_template_with_excess_variables as HTML
549
+ Rendered test/render_default.html.rb (1.1ms)
550
+ Completed 200 OK in 3ms (Views: 2.6ms)
551
+ Processing by TestController#render_needs_template_with_excess_variables as HTML
552
+ Rendered test/needs.html.rb (0.9ms)
553
+ Completed 500 Internal Server Error in 3ms
554
+ Processing by TestController#render_needs_template_with_excess_variables_and_ignoring_extras as HTML
555
+ Rendered test/needs.html.rb (0.1ms)
556
+ Completed 200 OK in 1ms (Views: 0.5ms)
557
+ Processing by TestController#render_needs_subclass_template_with_excess_variables_and_ignoring_extras as HTML
558
+ Rendered test/needs_subclass.html.rb (1.2ms)
559
+ Completed 200 OK in 3ms (Views: 2.7ms)
560
+ Processing by TestController#render_template_with_partial as HTML
561
+ Rendered test/_erector.rb (1.8ms)
562
+ Rendered test/render_partial.html.rb (4.1ms)
563
+ Completed 200 OK in 6ms (Views: 5.5ms)
564
+ Processing by TestController#render_erb_from_erector as HTML
565
+ Rendered test/_erb.erb (0.5ms)
566
+ Rendered test/erb_from_erector.html.rb (2.7ms)
567
+ Completed 200 OK in 4ms (Views: 4.2ms)
568
+ Processing by TestController#render_erector_from_erb as HTML
569
+ Rendered test/_erector.rb (0.2ms)
570
+ Rendered test/erector_from_erb.html.erb (0.8ms)
571
+ Completed 200 OK in 2ms (Views: 2.2ms)
572
+ Processing by TestController#render_erector_with_locals_from_erb as HTML
573
+ Rendered test/_partial_with_locals.rb (1.8ms)
574
+ Rendered test/erector_with_locals_from_erb.html.erb (3.4ms)
575
+ Completed 200 OK in 5ms (Views: 4.8ms)
576
+ Processing by TestController#render_erector_with_locals_from_erb_defaulted as HTML
577
+ Rendered test/_partial_with_locals.rb (0.5ms)
578
+ Rendered test/erector_with_locals_from_erb.html.erb (0.7ms)
579
+ Completed 200 OK in 1ms (Views: 1.1ms)
580
+ Processing by TestController#render_erector_with_locals_from_erb_override as HTML
581
+ Rendered test/_partial_with_locals.rb (0.2ms)
582
+ Rendered test/erector_with_locals_from_erb.html.erb (0.4ms)
583
+ Completed 200 OK in 1ms (Views: 0.8ms)
584
+ Processing by TestController#render_erector_with_locals_from_erb_not_needed as HTML
585
+ Rendered test/_partial_with_locals.rb (0.6ms)
586
+ Rendered test/erector_with_locals_from_erb.html.erb (0.8ms)
587
+ Completed 500 Internal Server Error in 1ms
588
+ Processing by TestController#render_erector_partial_with_unneeded_controller_variables as HTML
589
+ Rendered test/_partial_with_locals.rb (0.2ms)
590
+ Rendered test/erector_with_locals_from_erb.html.erb (0.3ms)
591
+ Completed 200 OK in 1ms (Views: 0.7ms)
592
+ Processing by TestController#render_erector_partial_without_controller_variables as HTML
593
+ Rendered test/_partial_with_locals.rb (0.2ms)
594
+ Rendered test/erector_with_locals_from_erb.html.erb (0.5ms)
595
+ Completed 200 OK in 1ms (Views: 1.0ms)
596
+ Processing by TestController#render_default as HTML
597
+ Rendered test/render_default.html.rb (0.6ms)
598
+ Completed 200 OK in 3ms (Views: 2.2ms)
599
+ Processing by TestController#render_with_needs as HTML
600
+ Completed 200 OK in 1ms (Views: 0.4ms)
601
+ Rendered text template (0.0ms)
602
+ Processing by TestController#render_widget_class as HTML
603
+ Completed 200 OK in 526ms (Views: 2.5ms)
604
+ Processing by TestController#render_widget_instance as HTML
605
+ Completed 200 OK in 1ms (Views: 0.4ms)
606
+ Processing by TestController#render_widget_with_ignored_controller_variables as HTML
607
+ Completed 200 OK in 1ms (Views: 0.5ms)
608
+ Processing by TestController#render_widget_with_extra_controller_variables as HTML
609
+ Completed 500 Internal Server Error in 1ms
610
+ Processing by TestController#render_with_content_method as HTML
611
+ Completed 200 OK in 1ms (Views: 0.3ms)
612
+ Processing by TestController#render_with_rails_options as HTML
613
+ Completed 500 Internal Server Error in 1ms (Views: 0.3ms)
614
+ Processing by TestController#render_template_with_implicit_assigns as HTML
615
+ Rendered test/implicit_assigns.html.rb (1.2ms)
616
+ Completed 200 OK in 3ms (Views: 2.7ms)
617
+ Processing by TestController#render_template_with_protected_instance_variable as HTML
618
+ Rendered test/protected_instance_variable.html.rb (1.0ms)
619
+ Completed 200 OK in 3ms (Views: 2.5ms)
620
+ Processing by TestController#render_bare_rb as HTML
621
+ Rendered test/bare.rb (1.9ms)
622
+ Completed 200 OK in 3ms (Views: 3.2ms)
623
+ Processing by TestController#render_template_with_excess_variables as HTML
624
+ Rendered test/render_default.html.rb (1.1ms)
625
+ Completed 200 OK in 3ms (Views: 2.5ms)
626
+ Processing by TestController#render_needs_template_with_excess_variables as HTML
627
+ Rendered test/needs.html.rb (0.9ms)
628
+ Completed 500 Internal Server Error in 3ms
629
+ Processing by TestController#render_needs_template_with_excess_variables_and_ignoring_extras as HTML
630
+ Rendered test/needs.html.rb (0.2ms)
631
+ Completed 200 OK in 1ms (Views: 0.6ms)
632
+ Processing by TestController#render_needs_subclass_template_with_excess_variables_and_ignoring_extras as HTML
633
+ Rendered test/needs_subclass.html.rb (1.5ms)
634
+ Completed 200 OK in 3ms (Views: 3.1ms)
635
+ Processing by TestController#render_template_with_partial as HTML
636
+ Rendered test/_erector.rb (1.7ms)
637
+ Rendered test/render_partial.html.rb (4.1ms)
638
+ Completed 200 OK in 6ms (Views: 5.6ms)
639
+ Processing by TestController#render_erb_from_erector as HTML
640
+ Rendered test/_erb.erb (0.5ms)
641
+ Rendered test/erb_from_erector.html.rb (2.9ms)
642
+ Completed 200 OK in 5ms (Views: 4.3ms)
643
+ Processing by TestController#render_erector_from_erb as HTML
644
+ Rendered test/_erector.rb (0.2ms)
645
+ Rendered test/erector_from_erb.html.erb (0.8ms)
646
+ Completed 200 OK in 2ms (Views: 2.1ms)
647
+ Processing by TestController#render_erector_with_locals_from_erb as HTML
648
+ Rendered test/_partial_with_locals.rb (1.9ms)
649
+ Rendered test/erector_with_locals_from_erb.html.erb (3.4ms)
650
+ Completed 200 OK in 5ms (Views: 4.9ms)
651
+ Processing by TestController#render_erector_with_locals_from_erb_defaulted as HTML
652
+ Rendered test/_partial_with_locals.rb (0.5ms)
653
+ Rendered test/erector_with_locals_from_erb.html.erb (0.8ms)
654
+ Completed 200 OK in 1ms (Views: 1.1ms)
655
+ Processing by TestController#render_erector_with_locals_from_erb_override as HTML
656
+ Rendered test/_partial_with_locals.rb (0.2ms)
657
+ Rendered test/erector_with_locals_from_erb.html.erb (0.4ms)
658
+ Completed 200 OK in 1ms (Views: 0.8ms)
659
+ Processing by TestController#render_erector_with_locals_from_erb_not_needed as HTML
660
+ Rendered test/_partial_with_locals.rb (0.7ms)
661
+ Rendered test/erector_with_locals_from_erb.html.erb (1.0ms)
662
+ Completed 500 Internal Server Error in 2ms
663
+ Processing by TestController#render_erector_partial_with_unneeded_controller_variables as HTML
664
+ Rendered test/_partial_with_locals.rb (0.2ms)
665
+ Rendered test/erector_with_locals_from_erb.html.erb (0.4ms)
666
+ Completed 200 OK in 1ms (Views: 0.8ms)
667
+ Processing by TestController#render_erector_partial_without_controller_variables as HTML
668
+ Rendered test/_partial_with_locals.rb (0.2ms)
669
+ Rendered test/erector_with_locals_from_erb.html.erb (0.4ms)
670
+ Completed 200 OK in 1ms (Views: 0.8ms)
671
+ Processing by TestController#render_default as HTML
672
+ Rendered test/render_default.html.rb (0.6ms)
673
+ Completed 200 OK in 3ms (Views: 2.3ms)
674
+ Processing by TestController#render_with_needs as HTML
675
+ Completed 200 OK in 1ms (Views: 0.4ms)
676
+ Rendered text template (0.0ms)
677
+ Processing by TestController#render_widget_class as HTML
678
+ Completed 200 OK in 516ms (Views: 2.5ms)
679
+ Processing by TestController#render_widget_instance as HTML
680
+ Completed 200 OK in 1ms (Views: 0.4ms)
681
+ Processing by TestController#render_widget_with_ignored_controller_variables as HTML
682
+ Completed 200 OK in 1ms (Views: 0.5ms)
683
+ Processing by TestController#render_widget_with_extra_controller_variables as HTML
684
+ Completed 500 Internal Server Error in 1ms
685
+ Processing by TestController#render_with_content_method as HTML
686
+ Completed 200 OK in 1ms (Views: 0.4ms)
687
+ Processing by TestController#render_with_rails_options as HTML
688
+ Completed 500 Internal Server Error in 1ms (Views: 0.3ms)
689
+ Processing by TestController#render_template_with_implicit_assigns as HTML
690
+ Rendered test/implicit_assigns.html.rb (1.2ms)
691
+ Completed 200 OK in 3ms (Views: 2.8ms)
692
+ Processing by TestController#render_template_with_protected_instance_variable as HTML
693
+ Rendered test/protected_instance_variable.html.rb (1.0ms)
694
+ Completed 200 OK in 3ms (Views: 2.5ms)
695
+ Processing by TestController#render_bare_rb as HTML
696
+ Rendered test/bare.rb (1.9ms)
697
+ Completed 200 OK in 3ms (Views: 3.3ms)
698
+ Processing by TestController#render_template_with_excess_variables as HTML
699
+ Rendered test/render_default.html.rb (1.1ms)
700
+ Completed 200 OK in 3ms (Views: 2.6ms)
701
+ Processing by TestController#render_needs_template_with_excess_variables as HTML
702
+ Rendered test/needs.html.rb (0.8ms)
703
+ Completed 500 Internal Server Error in 3ms
704
+ Processing by TestController#render_needs_template_with_excess_variables_and_ignoring_extras as HTML
705
+ Rendered test/needs.html.rb (0.1ms)
706
+ Completed 200 OK in 1ms (Views: 0.6ms)
707
+ Processing by TestController#render_needs_subclass_template_with_excess_variables_and_ignoring_extras as HTML
708
+ Rendered test/needs_subclass.html.rb (1.1ms)
709
+ Completed 200 OK in 3ms (Views: 2.7ms)
710
+ Processing by TestController#render_template_with_partial as HTML
711
+ Rendered test/_erector.rb (1.7ms)
712
+ Rendered test/render_partial.html.rb (3.9ms)
713
+ Completed 200 OK in 6ms (Views: 5.3ms)
714
+ Processing by TestController#render_erb_from_erector as HTML
715
+ Rendered test/_erb.erb (0.5ms)
716
+ Rendered test/erb_from_erector.html.rb (2.7ms)
717
+ Completed 200 OK in 4ms (Views: 4.1ms)
718
+ Processing by TestController#render_erector_from_erb as HTML
719
+ Rendered test/_erector.rb (0.2ms)
720
+ Rendered test/erector_from_erb.html.erb (0.7ms)
721
+ Completed 200 OK in 2ms (Views: 2.1ms)
722
+ Processing by TestController#render_erector_with_locals_from_erb as HTML
723
+ Rendered test/_partial_with_locals.rb (1.8ms)
724
+ Rendered test/erector_with_locals_from_erb.html.erb (3.3ms)
725
+ Completed 200 OK in 5ms (Views: 4.8ms)
726
+ Processing by TestController#render_erector_with_locals_from_erb_defaulted as HTML
727
+ Rendered test/_partial_with_locals.rb (0.5ms)
728
+ Rendered test/erector_with_locals_from_erb.html.erb (0.7ms)
729
+ Completed 200 OK in 1ms (Views: 1.1ms)
730
+ Processing by TestController#render_erector_with_locals_from_erb_override as HTML
731
+ Rendered test/_partial_with_locals.rb (0.2ms)
732
+ Rendered test/erector_with_locals_from_erb.html.erb (0.4ms)
733
+ Completed 200 OK in 1ms (Views: 0.7ms)
734
+ Processing by TestController#render_erector_with_locals_from_erb_not_needed as HTML
735
+ Rendered test/_partial_with_locals.rb (0.6ms)
736
+ Rendered test/erector_with_locals_from_erb.html.erb (0.8ms)
737
+ Completed 500 Internal Server Error in 1ms
738
+ Processing by TestController#render_erector_partial_with_unneeded_controller_variables as HTML
739
+ Rendered test/_partial_with_locals.rb (0.2ms)
740
+ Rendered test/erector_with_locals_from_erb.html.erb (0.4ms)
741
+ Completed 200 OK in 1ms (Views: 0.7ms)
742
+ Processing by TestController#render_erector_partial_without_controller_variables as HTML
743
+ Rendered test/_partial_with_locals.rb (0.2ms)
744
+ Rendered test/erector_with_locals_from_erb.html.erb (0.3ms)
745
+ Completed 200 OK in 1ms (Views: 0.7ms)
746
+ Processing by TestController#render_default as HTML
747
+ Rendered test/render_default.html.rb (0.6ms)
748
+ Completed 200 OK in 2ms (Views: 2.2ms)
749
+ Processing by TestController#render_with_needs as HTML
750
+ Completed 200 OK in 1ms (Views: 0.4ms)
751
+ Rendered text template (0.0ms)
752
+ Processing by TestController#render_widget_class as HTML
753
+ Completed 200 OK in 512ms (Views: 2.7ms)
754
+ Processing by TestController#render_widget_instance as HTML
755
+ Completed 200 OK in 1ms (Views: 0.4ms)
756
+ Processing by TestController#render_widget_with_ignored_controller_variables as HTML
757
+ Completed 200 OK in 1ms (Views: 0.4ms)
758
+ Processing by TestController#render_widget_with_extra_controller_variables as HTML
759
+ Completed 500 Internal Server Error in 1ms
760
+ Processing by TestController#render_with_content_method as HTML
761
+ Completed 200 OK in 1ms (Views: 0.4ms)
762
+ Processing by TestController#render_with_rails_options as HTML
763
+ Completed 500 Internal Server Error in 1ms (Views: 0.3ms)
764
+ Processing by TestController#render_template_with_implicit_assigns as HTML
765
+ Rendered test/implicit_assigns.html.rb (1.3ms)
766
+ Completed 200 OK in 12ms (Views: 11.8ms)
767
+ Processing by TestController#render_template_with_protected_instance_variable as HTML
768
+ Rendered test/protected_instance_variable.html.rb (1.2ms)
769
+ Completed 200 OK in 4ms (Views: 3.3ms)
770
+ Processing by TestController#render_bare_rb as HTML
771
+ Rendered test/bare.rb (2.0ms)
772
+ Completed 200 OK in 11ms (Views: 10.9ms)
773
+ Processing by TestController#render_template_with_excess_variables as HTML
774
+ Rendered test/render_default.html.rb (1.2ms)
775
+ Completed 200 OK in 4ms (Views: 3.3ms)
776
+ Processing by TestController#render_needs_template_with_excess_variables as HTML
777
+ Rendered test/needs.html.rb (0.9ms)
778
+ Completed 500 Internal Server Error in 3ms
779
+ Processing by TestController#render_needs_template_with_excess_variables_and_ignoring_extras as HTML
780
+ Rendered test/needs.html.rb (0.2ms)
781
+ Completed 200 OK in 1ms (Views: 0.6ms)
782
+ Processing by TestController#render_needs_subclass_template_with_excess_variables_and_ignoring_extras as HTML
783
+ Rendered test/needs_subclass.html.rb (1.3ms)
784
+ Completed 200 OK in 9ms (Views: 8.4ms)
785
+ Processing by TestController#render_template_with_partial as HTML
786
+ Rendered test/_erector.rb (1.8ms)
787
+ Rendered test/render_partial.html.rb (11.6ms)
788
+ Completed 200 OK in 14ms (Views: 13.5ms)
789
+ Processing by TestController#render_erb_from_erector as HTML
790
+ Rendered test/_erb.erb (0.5ms)
791
+ Rendered test/erb_from_erector.html.rb (2.9ms)
792
+ Completed 200 OK in 5ms (Views: 4.9ms)
793
+ Processing by TestController#render_erector_from_erb as HTML
794
+ Rendered test/_erector.rb (0.2ms)
795
+ Rendered test/erector_from_erb.html.erb (0.8ms)
796
+ Completed 200 OK in 3ms (Views: 2.8ms)
797
+ Processing by TestController#render_erector_with_locals_from_erb as HTML
798
+ Rendered test/_partial_with_locals.rb (2.0ms)
799
+ Rendered test/erector_with_locals_from_erb.html.erb (8.0ms)
800
+ Completed 200 OK in 10ms (Views: 9.9ms)
801
+ Processing by TestController#render_erector_with_locals_from_erb_defaulted as HTML
802
+ Rendered test/_partial_with_locals.rb (0.5ms)
803
+ Rendered test/erector_with_locals_from_erb.html.erb (0.7ms)
804
+ Completed 200 OK in 1ms (Views: 1.1ms)
805
+ Processing by TestController#render_erector_with_locals_from_erb_override as HTML
806
+ Rendered test/_partial_with_locals.rb (0.2ms)
807
+ Rendered test/erector_with_locals_from_erb.html.erb (0.4ms)
808
+ Completed 200 OK in 1ms (Views: 0.8ms)
809
+ Processing by TestController#render_erector_with_locals_from_erb_not_needed as HTML
810
+ Rendered test/_partial_with_locals.rb (0.6ms)
811
+ Rendered test/erector_with_locals_from_erb.html.erb (0.8ms)
812
+ Completed 500 Internal Server Error in 1ms
813
+ Processing by TestController#render_erector_partial_with_unneeded_controller_variables as HTML
814
+ Rendered test/_partial_with_locals.rb (0.2ms)
815
+ Rendered test/erector_with_locals_from_erb.html.erb (0.4ms)
816
+ Completed 200 OK in 1ms (Views: 0.7ms)
817
+ Processing by TestController#render_erector_partial_without_controller_variables as HTML
818
+ Rendered test/_partial_with_locals.rb (0.2ms)
819
+ Rendered test/erector_with_locals_from_erb.html.erb (0.4ms)
820
+ Completed 200 OK in 1ms (Views: 0.7ms)
821
+ Processing by TestController#render_default as HTML
822
+ Rendered test/render_default.html.rb (0.5ms)
823
+ Completed 200 OK in 2ms (Views: 2.2ms)
824
+ Processing by TestController#render_with_needs as HTML
825
+ Completed 200 OK in 1ms (Views: 0.5ms)
826
+ Rendered text template (0.0ms)
827
+ Processing by TestController#render_widget_class as HTML
828
+ Completed 200 OK in 593ms (Views: 2.4ms)
829
+ Processing by TestController#render_widget_instance as HTML
830
+ Completed 200 OK in 1ms (Views: 0.4ms)
831
+ Processing by TestController#render_widget_with_ignored_controller_variables as HTML
832
+ Completed 200 OK in 1ms (Views: 0.5ms)
833
+ Processing by TestController#render_widget_with_extra_controller_variables as HTML
834
+ Completed 500 Internal Server Error in 1ms
835
+ Processing by TestController#render_with_content_method as HTML
836
+ Completed 200 OK in 1ms (Views: 0.4ms)
837
+ Processing by TestController#render_with_rails_options as HTML
838
+ Completed 500 Internal Server Error in 1ms (Views: 0.3ms)
839
+ Processing by TestController#render_template_with_implicit_assigns as HTML
840
+ Rendered test/implicit_assigns.html.rb (1.2ms)
841
+ Completed 200 OK in 3ms (Views: 2.8ms)
842
+ Processing by TestController#render_template_with_protected_instance_variable as HTML
843
+ Rendered test/protected_instance_variable.html.rb (1.0ms)
844
+ Completed 200 OK in 3ms (Views: 2.5ms)
845
+ Processing by TestController#render_bare_rb as HTML
846
+ Rendered test/bare.rb (1.8ms)
847
+ Completed 200 OK in 3ms (Views: 3.2ms)
848
+ Processing by TestController#render_template_with_excess_variables as HTML
849
+ Rendered test/render_default.html.rb (1.1ms)
850
+ Completed 200 OK in 3ms (Views: 2.6ms)
851
+ Processing by TestController#render_needs_template_with_excess_variables as HTML
852
+ Rendered test/needs.html.rb (1.0ms)
853
+ Completed 500 Internal Server Error in 3ms
854
+ Processing by TestController#render_needs_template_with_excess_variables_and_ignoring_extras as HTML
855
+ Rendered test/needs.html.rb (0.2ms)
856
+ Completed 200 OK in 1ms (Views: 0.6ms)
857
+ Processing by TestController#render_needs_subclass_template_with_excess_variables_and_ignoring_extras as HTML
858
+ Rendered test/needs_subclass.html.rb (1.2ms)
859
+ Completed 200 OK in 3ms (Views: 2.7ms)
860
+ Processing by TestController#render_template_with_partial as HTML
861
+ Rendered test/_erector.rb (1.8ms)
862
+ Rendered test/render_partial.html.rb (3.9ms)
863
+ Completed 200 OK in 6ms (Views: 5.4ms)
864
+ Processing by TestController#render_erb_from_erector as HTML
865
+ Rendered test/_erb.erb (0.5ms)
866
+ Rendered test/erb_from_erector.html.rb (2.7ms)
867
+ Completed 200 OK in 4ms (Views: 4.2ms)
868
+ Processing by TestController#render_erector_from_erb as HTML
869
+ Rendered test/_erector.rb (0.3ms)
870
+ Rendered test/erector_from_erb.html.erb (0.8ms)
871
+ Completed 200 OK in 3ms (Views: 2.3ms)
872
+ Processing by TestController#render_erector_with_locals_from_erb as HTML
873
+ Rendered test/_partial_with_locals.rb (1.9ms)
874
+ Rendered test/erector_with_locals_from_erb.html.erb (3.5ms)
875
+ Completed 200 OK in 5ms (Views: 5.0ms)
876
+ Processing by TestController#render_erector_with_locals_from_erb_defaulted as HTML
877
+ Rendered test/_partial_with_locals.rb (0.6ms)
878
+ Rendered test/erector_with_locals_from_erb.html.erb (0.9ms)
879
+ Completed 200 OK in 2ms (Views: 1.3ms)
880
+ Processing by TestController#render_erector_with_locals_from_erb_override as HTML
881
+ Rendered test/_partial_with_locals.rb (0.2ms)
882
+ Rendered test/erector_with_locals_from_erb.html.erb (0.4ms)
883
+ Completed 200 OK in 1ms (Views: 0.8ms)
884
+ Processing by TestController#render_erector_with_locals_from_erb_not_needed as HTML
885
+ Rendered test/_partial_with_locals.rb (0.7ms)
886
+ Rendered test/erector_with_locals_from_erb.html.erb (0.9ms)
887
+ Completed 500 Internal Server Error in 2ms
888
+ Processing by TestController#render_erector_partial_with_unneeded_controller_variables as HTML
889
+ Rendered test/_partial_with_locals.rb (0.2ms)
890
+ Rendered test/erector_with_locals_from_erb.html.erb (0.4ms)
891
+ Completed 200 OK in 1ms (Views: 0.8ms)
892
+ Processing by TestController#render_erector_partial_without_controller_variables as HTML
893
+ Rendered test/_partial_with_locals.rb (0.2ms)
894
+ Rendered test/erector_with_locals_from_erb.html.erb (0.4ms)
895
+ Completed 200 OK in 1ms (Views: 0.8ms)
896
+ Processing by TestController#render_default as HTML
897
+ Rendered test/render_default.html.rb (0.6ms)
898
+ Completed 200 OK in 3ms (Views: 2.2ms)
899
+ Processing by TestController#render_with_needs as HTML
900
+ Completed 200 OK in 1ms (Views: 0.4ms)
901
+ Rendered text template (0.0ms)
902
+ Processing by TestController#render_widget_class as HTML
903
+ Completed 200 OK in 548ms (Views: 2.8ms)
904
+ Processing by TestController#render_widget_instance as HTML
905
+ Completed 200 OK in 1ms (Views: 0.4ms)
906
+ Processing by TestController#render_widget_with_ignored_controller_variables as HTML
907
+ Completed 200 OK in 1ms (Views: 0.5ms)
908
+ Processing by TestController#render_widget_with_extra_controller_variables as HTML
909
+ Completed 500 Internal Server Error in 1ms
910
+ Processing by TestController#render_with_content_method as HTML
911
+ Completed 200 OK in 1ms (Views: 0.3ms)
912
+ Processing by TestController#render_with_rails_options as HTML
913
+ Completed 500 Internal Server Error in 1ms (Views: 0.3ms)
914
+ Processing by TestController#render_template_with_implicit_assigns as HTML
915
+ Rendered test/implicit_assigns.html.rb (1.3ms)
916
+ Completed 200 OK in 3ms (Views: 3.2ms)
917
+ Processing by TestController#render_template_with_protected_instance_variable as HTML
918
+ Rendered test/protected_instance_variable.html.rb (1.1ms)
919
+ Completed 200 OK in 3ms (Views: 3.0ms)
920
+ Processing by TestController#render_bare_rb as HTML
921
+ Rendered test/bare.rb (1.9ms)
922
+ Completed 200 OK in 4ms (Views: 3.6ms)
923
+ Processing by TestController#render_template_with_excess_variables as HTML
924
+ Rendered test/render_default.html.rb (1.2ms)
925
+ Completed 200 OK in 3ms (Views: 2.9ms)
926
+ Processing by TestController#render_needs_template_with_excess_variables as HTML
927
+ Rendered test/needs.html.rb (1.0ms)
928
+ Completed 500 Internal Server Error in 3ms
929
+ Processing by TestController#render_needs_template_with_excess_variables_and_ignoring_extras as HTML
930
+ Rendered test/needs.html.rb (0.2ms)
931
+ Completed 200 OK in 1ms (Views: 0.6ms)
932
+ Processing by TestController#render_needs_subclass_template_with_excess_variables_and_ignoring_extras as HTML
933
+ Rendered test/needs_subclass.html.rb (1.2ms)
934
+ Completed 200 OK in 3ms (Views: 3.0ms)
935
+ Processing by TestController#render_template_with_partial as HTML
936
+ Rendered test/_erector.rb (2.4ms)
937
+ Rendered test/render_partial.html.rb (4.9ms)
938
+ Completed 200 OK in 7ms (Views: 6.6ms)
939
+ Processing by TestController#render_erb_from_erector as HTML
940
+ Rendered test/_erb.erb (0.5ms)
941
+ Rendered test/erb_from_erector.html.rb (3.0ms)
942
+ Completed 200 OK in 5ms (Views: 4.8ms)
943
+ Processing by TestController#render_erector_from_erb as HTML
944
+ Rendered test/_erector.rb (0.2ms)
945
+ Rendered test/erector_from_erb.html.erb (0.7ms)
946
+ Completed 200 OK in 3ms (Views: 2.4ms)
947
+ Processing by TestController#render_erector_with_locals_from_erb as HTML
948
+ Rendered test/_partial_with_locals.rb (1.9ms)
949
+ Rendered test/erector_with_locals_from_erb.html.erb (3.8ms)
950
+ Completed 200 OK in 6ms (Views: 5.5ms)
951
+ Processing by TestController#render_erector_with_locals_from_erb_defaulted as HTML
952
+ Rendered test/_partial_with_locals.rb (0.5ms)
953
+ Rendered test/erector_with_locals_from_erb.html.erb (0.7ms)
954
+ Completed 200 OK in 1ms (Views: 1.1ms)
955
+ Processing by TestController#render_erector_with_locals_from_erb_override as HTML
956
+ Rendered test/_partial_with_locals.rb (0.2ms)
957
+ Rendered test/erector_with_locals_from_erb.html.erb (0.3ms)
958
+ Completed 200 OK in 1ms (Views: 0.7ms)
959
+ Processing by TestController#render_erector_with_locals_from_erb_not_needed as HTML
960
+ Rendered test/_partial_with_locals.rb (0.6ms)
961
+ Rendered test/erector_with_locals_from_erb.html.erb (0.8ms)
962
+ Completed 500 Internal Server Error in 1ms
963
+ Processing by TestController#render_erector_partial_with_unneeded_controller_variables as HTML
964
+ Rendered test/_partial_with_locals.rb (0.2ms)
965
+ Rendered test/erector_with_locals_from_erb.html.erb (0.3ms)
966
+ Completed 200 OK in 1ms (Views: 0.7ms)
967
+ Processing by TestController#render_erector_partial_without_controller_variables as HTML
968
+ Rendered test/_partial_with_locals.rb (0.2ms)
969
+ Rendered test/erector_with_locals_from_erb.html.erb (0.5ms)
970
+ Completed 200 OK in 1ms (Views: 0.9ms)
971
+ Processing by TestController#render_default as HTML
972
+ Rendered test/render_default.html.rb (0.5ms)
973
+ Completed 200 OK in 2ms (Views: 2.3ms)
974
+ Processing by TestController#render_with_needs as HTML
975
+ Completed 200 OK in 1ms (Views: 0.5ms)
976
+ Rendered text template (0.0ms)
977
+ Processing by TestController#render_widget_class as HTML
978
+ Completed 200 OK in 512ms (Views: 2.4ms)
979
+ Processing by TestController#render_widget_instance as HTML
980
+ Completed 200 OK in 1ms (Views: 0.3ms)
981
+ Processing by TestController#render_widget_with_ignored_controller_variables as HTML
982
+ Completed 200 OK in 1ms (Views: 0.5ms)
983
+ Processing by TestController#render_widget_with_extra_controller_variables as HTML
984
+ Completed 500 Internal Server Error in 1ms
985
+ Processing by TestController#render_with_content_method as HTML
986
+ Completed 200 OK in 1ms (Views: 0.4ms)
987
+ Processing by TestController#render_with_rails_options as HTML
988
+ Completed 500 Internal Server Error in 1ms (Views: 0.3ms)
989
+ Processing by TestController#render_template_with_implicit_assigns as HTML
990
+ Rendered test/implicit_assigns.html.rb (1.3ms)
991
+ Completed 200 OK in 3ms (Views: 2.9ms)
992
+ Processing by TestController#render_template_with_protected_instance_variable as HTML
993
+ Rendered test/protected_instance_variable.html.rb (1.1ms)
994
+ Completed 200 OK in 3ms (Views: 2.6ms)
995
+ Processing by TestController#render_bare_rb as HTML
996
+ Rendered test/bare.rb (1.9ms)
997
+ Completed 200 OK in 4ms (Views: 3.3ms)
998
+ Processing by TestController#render_template_with_excess_variables as HTML
999
+ Rendered test/render_default.html.rb (1.2ms)
1000
+ Completed 200 OK in 3ms (Views: 2.7ms)
1001
+ Processing by TestController#render_needs_template_with_excess_variables as HTML
1002
+ Rendered test/needs.html.rb (1.0ms)
1003
+ Completed 500 Internal Server Error in 3ms
1004
+ Processing by TestController#render_needs_template_with_excess_variables_and_ignoring_extras as HTML
1005
+ Rendered test/needs.html.rb (0.2ms)
1006
+ Completed 200 OK in 1ms (Views: 0.6ms)
1007
+ Processing by TestController#render_needs_subclass_template_with_excess_variables_and_ignoring_extras as HTML
1008
+ Rendered test/needs_subclass.html.rb (1.2ms)
1009
+ Completed 200 OK in 3ms (Views: 2.7ms)
1010
+ Processing by TestController#render_template_with_partial as HTML
1011
+ Rendered test/_erector.rb (1.7ms)
1012
+ Rendered test/render_partial.html.rb (4.1ms)
1013
+ Completed 200 OK in 6ms (Views: 5.6ms)
1014
+ Processing by TestController#render_erb_from_erector as HTML
1015
+ Rendered test/_erb.erb (0.5ms)
1016
+ Rendered test/erb_from_erector.html.rb (2.6ms)
1017
+ Completed 200 OK in 4ms (Views: 4.0ms)
1018
+ Processing by TestController#render_erector_from_erb as HTML
1019
+ Rendered test/_erector.rb (0.2ms)
1020
+ Rendered test/erector_from_erb.html.erb (0.7ms)
1021
+ Completed 200 OK in 2ms (Views: 2.1ms)
1022
+ Processing by TestController#render_erector_with_locals_from_erb as HTML
1023
+ Rendered test/_partial_with_locals.rb (1.9ms)
1024
+ Rendered test/erector_with_locals_from_erb.html.erb (3.4ms)
1025
+ Completed 200 OK in 5ms (Views: 4.8ms)
1026
+ Processing by TestController#render_erector_with_locals_from_erb_defaulted as HTML
1027
+ Rendered test/_partial_with_locals.rb (0.5ms)
1028
+ Rendered test/erector_with_locals_from_erb.html.erb (0.7ms)
1029
+ Completed 200 OK in 1ms (Views: 1.1ms)
1030
+ Processing by TestController#render_erector_with_locals_from_erb_override as HTML
1031
+ Rendered test/_partial_with_locals.rb (0.2ms)
1032
+ Rendered test/erector_with_locals_from_erb.html.erb (0.4ms)
1033
+ Completed 200 OK in 1ms (Views: 0.7ms)
1034
+ Processing by TestController#render_erector_with_locals_from_erb_not_needed as HTML
1035
+ Rendered test/_partial_with_locals.rb (0.7ms)
1036
+ Rendered test/erector_with_locals_from_erb.html.erb (1.1ms)
1037
+ Completed 500 Internal Server Error in 2ms
1038
+ Processing by TestController#render_erector_partial_with_unneeded_controller_variables as HTML
1039
+ Rendered test/_partial_with_locals.rb (0.2ms)
1040
+ Rendered test/erector_with_locals_from_erb.html.erb (0.4ms)
1041
+ Completed 200 OK in 1ms (Views: 0.8ms)
1042
+ Processing by TestController#render_erector_partial_without_controller_variables as HTML
1043
+ Rendered test/_partial_with_locals.rb (0.2ms)
1044
+ Rendered test/erector_with_locals_from_erb.html.erb (0.4ms)
1045
+ Completed 200 OK in 1ms (Views: 0.7ms)
1046
+ Processing by TestController#render_default as HTML
1047
+ Rendered test/render_default.html.rb (0.5ms)
1048
+ Completed 200 OK in 2ms (Views: 1.9ms)
1049
+ Processing by TestController#render_with_needs as HTML
1050
+ Completed 200 OK in 1ms (Views: 0.5ms)
1051
+ Rendered text template (0.0ms)
1052
+ Processing by TestController#render_widget_class as HTML
1053
+ Completed 200 OK in 662ms (Views: 2.7ms)
1054
+ Processing by TestController#render_widget_instance as HTML
1055
+ Completed 200 OK in 1ms (Views: 0.4ms)
1056
+ Processing by TestController#render_widget_with_ignored_controller_variables as HTML
1057
+ Completed 200 OK in 1ms (Views: 0.6ms)
1058
+ Processing by TestController#render_widget_with_extra_controller_variables as HTML
1059
+ Completed 500 Internal Server Error in 1ms
1060
+ Processing by TestController#render_with_content_method as HTML
1061
+ Completed 200 OK in 1ms (Views: 0.5ms)
1062
+ Processing by TestController#render_with_rails_options as HTML
1063
+ Completed 500 Internal Server Error in 1ms (Views: 0.4ms)
1064
+ Processing by TestController#render_template_with_implicit_assigns as HTML
1065
+ Rendered test/implicit_assigns.html.rb (1.3ms)
1066
+ Completed 200 OK in 3ms (Views: 3.1ms)
1067
+ Processing by TestController#render_template_with_protected_instance_variable as HTML
1068
+ Rendered test/protected_instance_variable.html.rb (1.1ms)
1069
+ Completed 200 OK in 3ms (Views: 2.9ms)
1070
+ Processing by TestController#render_bare_rb as HTML
1071
+ Rendered test/bare.rb (1.8ms)
1072
+ Completed 200 OK in 4ms (Views: 3.5ms)
1073
+ Processing by TestController#render_template_with_excess_variables as HTML
1074
+ Rendered test/render_default.html.rb (1.6ms)
1075
+ Completed 200 OK in 4ms (Views: 3.6ms)
1076
+ Processing by TestController#render_needs_template_with_excess_variables as HTML
1077
+ Rendered test/needs.html.rb (0.9ms)
1078
+ Completed 500 Internal Server Error in 3ms
1079
+ Processing by TestController#render_needs_template_with_excess_variables_and_ignoring_extras as HTML
1080
+ Rendered test/needs.html.rb (0.2ms)
1081
+ Completed 200 OK in 1ms (Views: 0.6ms)
1082
+ Processing by TestController#render_needs_subclass_template_with_excess_variables_and_ignoring_extras as HTML
1083
+ Rendered test/needs_subclass.html.rb (1.3ms)
1084
+ Completed 200 OK in 4ms (Views: 3.5ms)
1085
+ Processing by TestController#render_template_with_partial as HTML
1086
+ Rendered test/_erector.rb (1.7ms)
1087
+ Rendered test/render_partial.html.rb (4.4ms)
1088
+ Completed 200 OK in 7ms (Views: 6.2ms)
1089
+ Processing by TestController#render_erb_from_erector as HTML
1090
+ Rendered test/_erb.erb (0.4ms)
1091
+ Rendered test/erb_from_erector.html.rb (3.0ms)
1092
+ Completed 200 OK in 5ms (Views: 4.7ms)
1093
+ Processing by TestController#render_erector_from_erb as HTML
1094
+ Rendered test/_erector.rb (0.2ms)
1095
+ Rendered test/erector_from_erb.html.erb (0.8ms)
1096
+ Completed 200 OK in 3ms (Views: 2.4ms)
1097
+ Processing by TestController#render_erector_with_locals_from_erb as HTML
1098
+ Rendered test/_partial_with_locals.rb (1.8ms)
1099
+ Rendered test/erector_with_locals_from_erb.html.erb (3.6ms)
1100
+ Completed 200 OK in 6ms (Views: 5.3ms)
1101
+ Processing by TestController#render_erector_with_locals_from_erb_defaulted as HTML
1102
+ Rendered test/_partial_with_locals.rb (0.5ms)
1103
+ Rendered test/erector_with_locals_from_erb.html.erb (0.7ms)
1104
+ Completed 200 OK in 1ms (Views: 1.1ms)
1105
+ Processing by TestController#render_erector_with_locals_from_erb_override as HTML
1106
+ Rendered test/_partial_with_locals.rb (0.2ms)
1107
+ Rendered test/erector_with_locals_from_erb.html.erb (0.4ms)
1108
+ Completed 200 OK in 1ms (Views: 0.7ms)
1109
+ Processing by TestController#render_erector_with_locals_from_erb_not_needed as HTML
1110
+ Rendered test/_partial_with_locals.rb (0.6ms)
1111
+ Rendered test/erector_with_locals_from_erb.html.erb (0.8ms)
1112
+ Completed 500 Internal Server Error in 1ms
1113
+ Processing by TestController#render_erector_partial_with_unneeded_controller_variables as HTML
1114
+ Rendered test/_partial_with_locals.rb (0.2ms)
1115
+ Rendered test/erector_with_locals_from_erb.html.erb (0.4ms)
1116
+ Completed 200 OK in 1ms (Views: 0.8ms)
1117
+ Processing by TestController#render_erector_partial_without_controller_variables as HTML
1118
+ Rendered test/_partial_with_locals.rb (0.2ms)
1119
+ Rendered test/erector_with_locals_from_erb.html.erb (0.4ms)
1120
+ Completed 200 OK in 1ms (Views: 0.7ms)
1121
+ Processing by TestController#render_default as HTML
1122
+ Rendered test/render_default.html.rb (0.5ms)
1123
+ Completed 200 OK in 2ms (Views: 2.1ms)
1124
+ Processing by TestController#render_with_needs as HTML
1125
+ Completed 200 OK in 1ms (Views: 0.4ms)
1126
+ Rendered text template (0.0ms)
1127
+ Processing by TestController#render_widget_class as HTML
1128
+ Completed 500 Internal Server Error in 574ms
1129
+ Processing by TestController#render_widget_instance as HTML
1130
+ Completed 200 OK in 2ms (Views: 1.7ms)
1131
+ Processing by TestController#render_widget_with_ignored_controller_variables as HTML
1132
+ Completed 200 OK in 1ms (Views: 0.5ms)
1133
+ Processing by TestController#render_widget_with_extra_controller_variables as HTML
1134
+ Completed 500 Internal Server Error in 1ms
1135
+ Processing by TestController#render_with_content_method as HTML
1136
+ Completed 200 OK in 1ms (Views: 0.4ms)
1137
+ Processing by TestController#render_with_rails_options as HTML
1138
+ Completed 500 Internal Server Error in 1ms (Views: 0.3ms)
1139
+ Processing by TestController#render_template_with_implicit_assigns as HTML
1140
+ Rendered test/implicit_assigns.html.rb (1.2ms)
1141
+ Completed 200 OK in 3ms (Views: 2.5ms)
1142
+ Processing by TestController#render_template_with_protected_instance_variable as HTML
1143
+ Rendered test/protected_instance_variable.html.rb (1.0ms)
1144
+ Completed 200 OK in 2ms (Views: 2.2ms)
1145
+ Processing by TestController#render_bare_rb as HTML
1146
+ Rendered test/bare.rb (1.8ms)
1147
+ Completed 200 OK in 3ms (Views: 2.9ms)
1148
+ Processing by TestController#render_template_with_excess_variables as HTML
1149
+ Rendered test/render_default.html.rb (1.0ms)
1150
+ Completed 200 OK in 3ms (Views: 2.2ms)
1151
+ Processing by TestController#render_needs_template_with_excess_variables as HTML
1152
+ Rendered test/needs.html.rb (1.4ms)
1153
+ Completed 500 Internal Server Error in 3ms
1154
+ Processing by TestController#render_needs_template_with_excess_variables_and_ignoring_extras as HTML
1155
+ Rendered test/needs.html.rb (0.1ms)
1156
+ Completed 200 OK in 1ms (Views: 0.6ms)
1157
+ Processing by TestController#render_needs_subclass_template_with_excess_variables_and_ignoring_extras as HTML
1158
+ Rendered test/needs_subclass.html.rb (1.1ms)
1159
+ Completed 200 OK in 3ms (Views: 2.3ms)
1160
+ Processing by TestController#render_template_with_partial as HTML
1161
+ Rendered test/_erector.rb (1.7ms)
1162
+ Rendered test/render_partial.html.rb (12.5ms)
1163
+ Completed 200 OK in 14ms (Views: 13.6ms)
1164
+ Processing by TestController#render_erb_from_erector as HTML
1165
+ Rendered test/_erb.erb (0.4ms)
1166
+ Rendered test/erb_from_erector.html.rb (2.2ms)
1167
+ Completed 200 OK in 4ms (Views: 3.4ms)
1168
+ Processing by TestController#render_erector_from_erb as HTML
1169
+ Rendered test/_erector.rb (0.2ms)
1170
+ Rendered test/erector_from_erb.html.erb (0.7ms)
1171
+ Completed 200 OK in 2ms (Views: 1.8ms)
1172
+ Processing by TestController#render_erector_with_locals_from_erb as HTML
1173
+ Rendered test/_partial_with_locals.rb (2.1ms)
1174
+ Rendered test/erector_with_locals_from_erb.html.erb (3.5ms)
1175
+ Completed 200 OK in 5ms (Views: 4.7ms)
1176
+ Processing by TestController#render_erector_with_locals_from_erb_defaulted as HTML
1177
+ Rendered test/_partial_with_locals.rb (0.5ms)
1178
+ Rendered test/erector_with_locals_from_erb.html.erb (1.3ms)
1179
+ Completed 200 OK in 2ms (Views: 1.8ms)
1180
+ Processing by TestController#render_erector_with_locals_from_erb_override as HTML
1181
+ Rendered test/_partial_with_locals.rb (0.1ms)
1182
+ Rendered test/erector_with_locals_from_erb.html.erb (0.3ms)
1183
+ Completed 200 OK in 1ms (Views: 0.8ms)
1184
+ Processing by TestController#render_erector_with_locals_from_erb_not_needed as HTML
1185
+ Rendered test/_partial_with_locals.rb (1.2ms)
1186
+ Rendered test/erector_with_locals_from_erb.html.erb (2.0ms)
1187
+ Completed 500 Internal Server Error in 3ms
1188
+ Processing by TestController#render_erector_partial_with_unneeded_controller_variables as HTML
1189
+ Rendered test/_partial_with_locals.rb (0.2ms)
1190
+ Rendered test/erector_with_locals_from_erb.html.erb (0.4ms)
1191
+ Completed 200 OK in 1ms (Views: 0.8ms)
1192
+ Processing by TestController#render_erector_partial_without_controller_variables as HTML
1193
+ Rendered test/_partial_with_locals.rb (0.1ms)
1194
+ Rendered test/erector_with_locals_from_erb.html.erb (0.4ms)
1195
+ Completed 200 OK in 1ms (Views: 0.8ms)
1196
+ Processing by TestController#render_default as HTML
1197
+ Rendered test/render_default.html.rb (0.4ms)
1198
+ Completed 200 OK in 2ms (Views: 1.6ms)
1199
+ Processing by TestController#render_with_needs as HTML
1200
+ Completed 200 OK in 1ms (Views: 0.4ms)
1201
+ Rendered text template (0.0ms)
1202
+ Processing by TestController#render_widget_class as HTML
1203
+ Completed 500 Internal Server Error in 573ms
1204
+ Processing by TestController#render_widget_instance as HTML
1205
+ Completed 200 OK in 2ms (Views: 1.5ms)
1206
+ Processing by TestController#render_widget_with_ignored_controller_variables as HTML
1207
+ Completed 200 OK in 1ms (Views: 0.5ms)
1208
+ Processing by TestController#render_widget_with_extra_controller_variables as HTML
1209
+ Completed 500 Internal Server Error in 1ms
1210
+ Processing by TestController#render_with_content_method as HTML
1211
+ Completed 200 OK in 1ms (Views: 0.4ms)
1212
+ Processing by TestController#render_with_rails_options as HTML
1213
+ Completed 500 Internal Server Error in 1ms (Views: 0.3ms)
1214
+ Processing by TestController#render_template_with_implicit_assigns as HTML
1215
+ Rendered test/implicit_assigns.html.rb (1.1ms)
1216
+ Completed 200 OK in 2ms (Views: 2.3ms)
1217
+ Processing by TestController#render_template_with_protected_instance_variable as HTML
1218
+ Rendered test/protected_instance_variable.html.rb (0.9ms)
1219
+ Completed 200 OK in 2ms (Views: 2.0ms)
1220
+ Processing by TestController#render_bare_rb as HTML
1221
+ Rendered test/bare.rb (1.8ms)
1222
+ Completed 200 OK in 3ms (Views: 2.8ms)
1223
+ Processing by TestController#render_template_with_excess_variables as HTML
1224
+ Rendered test/render_default.html.rb (1.0ms)
1225
+ Completed 200 OK in 2ms (Views: 2.1ms)
1226
+ Processing by TestController#render_needs_template_with_excess_variables as HTML
1227
+ Rendered test/needs.html.rb (1.5ms)
1228
+ Completed 500 Internal Server Error in 3ms
1229
+ Processing by TestController#render_needs_template_with_excess_variables_and_ignoring_extras as HTML
1230
+ Rendered test/needs.html.rb (0.1ms)
1231
+ Completed 200 OK in 1ms (Views: 0.6ms)
1232
+ Processing by TestController#render_needs_subclass_template_with_excess_variables_and_ignoring_extras as HTML
1233
+ Rendered test/needs_subclass.html.rb (1.1ms)
1234
+ Completed 200 OK in 2ms (Views: 2.2ms)
1235
+ Processing by TestController#render_template_with_partial as HTML
1236
+ Rendered test/_erector.rb (1.8ms)
1237
+ Rendered test/render_partial.html.rb (12.5ms)
1238
+ Completed 200 OK in 14ms (Views: 13.5ms)
1239
+ Processing by TestController#render_erb_from_erector as HTML
1240
+ Rendered test/_erb.erb (0.4ms)
1241
+ Rendered test/erb_from_erector.html.rb (2.1ms)
1242
+ Completed 200 OK in 3ms (Views: 3.2ms)
1243
+ Processing by TestController#render_erector_from_erb as HTML
1244
+ Rendered test/_erector.rb (0.2ms)
1245
+ Rendered test/erector_from_erb.html.erb (0.7ms)
1246
+ Completed 200 OK in 2ms (Views: 1.7ms)
1247
+ Processing by TestController#render_erector_with_locals_from_erb as HTML
1248
+ Rendered test/_partial_with_locals.rb (2.1ms)
1249
+ Rendered test/erector_with_locals_from_erb.html.erb (3.2ms)
1250
+ Completed 200 OK in 5ms (Views: 4.3ms)
1251
+ Processing by TestController#render_erector_with_locals_from_erb_defaulted as HTML
1252
+ Rendered test/_partial_with_locals.rb (0.5ms)
1253
+ Rendered test/erector_with_locals_from_erb.html.erb (1.4ms)
1254
+ Completed 200 OK in 2ms (Views: 1.9ms)
1255
+ Processing by TestController#render_erector_with_locals_from_erb_override as HTML
1256
+ Rendered test/_partial_with_locals.rb (0.2ms)
1257
+ Rendered test/erector_with_locals_from_erb.html.erb (0.4ms)
1258
+ Completed 200 OK in 1ms (Views: 0.8ms)
1259
+ Processing by TestController#render_erector_with_locals_from_erb_not_needed as HTML
1260
+ Rendered test/_partial_with_locals.rb (1.2ms)
1261
+ Rendered test/erector_with_locals_from_erb.html.erb (2.0ms)
1262
+ Completed 500 Internal Server Error in 3ms
1263
+ Processing by TestController#render_erector_partial_with_unneeded_controller_variables as HTML
1264
+ Rendered test/_partial_with_locals.rb (0.2ms)
1265
+ Rendered test/erector_with_locals_from_erb.html.erb (0.4ms)
1266
+ Completed 200 OK in 1ms (Views: 0.9ms)
1267
+ Processing by TestController#render_erector_partial_without_controller_variables as HTML
1268
+ Rendered test/_partial_with_locals.rb (0.2ms)
1269
+ Rendered test/erector_with_locals_from_erb.html.erb (0.4ms)
1270
+ Completed 200 OK in 1ms (Views: 0.8ms)
1271
+ Processing by TestController#render_default as HTML
1272
+ Rendered test/render_default.html.rb (0.4ms)
1273
+ Completed 200 OK in 2ms (Views: 1.4ms)
1274
+ Processing by TestController#render_with_needs as HTML
1275
+ Completed 200 OK in 1ms (Views: 0.4ms)
1276
+ Rendered text template (0.0ms)
1277
+ Processing by TestController#render_widget_class as HTML
1278
+ Completed 500 Internal Server Error in 604ms
1279
+ Processing by TestController#render_widget_instance as HTML
1280
+ Completed 200 OK in 2ms (Views: 1.5ms)
1281
+ Processing by TestController#render_widget_with_ignored_controller_variables as HTML
1282
+ Completed 200 OK in 1ms (Views: 0.5ms)
1283
+ Processing by TestController#render_widget_with_extra_controller_variables as HTML
1284
+ Completed 500 Internal Server Error in 1ms
1285
+ Processing by TestController#render_with_content_method as HTML
1286
+ Completed 200 OK in 1ms (Views: 0.4ms)
1287
+ Processing by TestController#render_with_rails_options as HTML
1288
+ Completed 500 Internal Server Error in 1ms (Views: 0.3ms)
1289
+ Processing by TestController#render_template_with_implicit_assigns as HTML
1290
+ Rendered test/implicit_assigns.html.rb (1.2ms)
1291
+ Completed 200 OK in 3ms (Views: 2.4ms)
1292
+ Processing by TestController#render_template_with_protected_instance_variable as HTML
1293
+ Rendered test/protected_instance_variable.html.rb (0.9ms)
1294
+ Completed 200 OK in 2ms (Views: 2.0ms)
1295
+ Processing by TestController#render_bare_rb as HTML
1296
+ Rendered test/bare.rb (1.7ms)
1297
+ Completed 200 OK in 3ms (Views: 2.7ms)
1298
+ Processing by TestController#render_template_with_excess_variables as HTML
1299
+ Rendered test/render_default.html.rb (1.0ms)
1300
+ Completed 200 OK in 2ms (Views: 2.0ms)
1301
+ Processing by TestController#render_needs_template_with_excess_variables as HTML
1302
+ Rendered test/needs.html.rb (1.3ms)
1303
+ Completed 500 Internal Server Error in 3ms
1304
+ Processing by TestController#render_needs_template_with_excess_variables_and_ignoring_extras as HTML
1305
+ Rendered test/needs.html.rb (0.2ms)
1306
+ Completed 200 OK in 1ms (Views: 0.6ms)
1307
+ Processing by TestController#render_needs_subclass_template_with_excess_variables_and_ignoring_extras as HTML
1308
+ Rendered test/needs_subclass.html.rb (1.0ms)
1309
+ Completed 200 OK in 2ms (Views: 2.1ms)
1310
+ Processing by TestController#render_template_with_partial as HTML
1311
+ Rendered test/_erector.rb (1.6ms)
1312
+ Rendered test/render_partial.html.rb (11.7ms)
1313
+ Completed 200 OK in 13ms (Views: 12.7ms)
1314
+ Processing by TestController#render_erb_from_erector as HTML
1315
+ Rendered test/_erb.erb (0.4ms)
1316
+ Rendered test/erb_from_erector.html.rb (2.1ms)
1317
+ Completed 200 OK in 3ms (Views: 3.1ms)
1318
+ Processing by TestController#render_erector_from_erb as HTML
1319
+ Rendered test/_erector.rb (0.2ms)
1320
+ Rendered test/erector_from_erb.html.erb (0.7ms)
1321
+ Completed 200 OK in 2ms (Views: 1.7ms)
1322
+ Processing by TestController#render_erector_with_locals_from_erb as HTML
1323
+ Rendered test/_partial_with_locals.rb (1.8ms)
1324
+ Rendered test/erector_with_locals_from_erb.html.erb (2.8ms)
1325
+ Completed 200 OK in 4ms (Views: 3.9ms)
1326
+ Processing by TestController#render_erector_with_locals_from_erb_defaulted as HTML
1327
+ Rendered test/_partial_with_locals.rb (0.5ms)
1328
+ Rendered test/erector_with_locals_from_erb.html.erb (1.4ms)
1329
+ Completed 200 OK in 2ms (Views: 1.9ms)
1330
+ Processing by TestController#render_erector_with_locals_from_erb_override as HTML
1331
+ Rendered test/_partial_with_locals.rb (0.2ms)
1332
+ Rendered test/erector_with_locals_from_erb.html.erb (0.4ms)
1333
+ Completed 200 OK in 1ms (Views: 0.8ms)
1334
+ Processing by TestController#render_erector_with_locals_from_erb_not_needed as HTML
1335
+ Rendered test/_partial_with_locals.rb (1.1ms)
1336
+ Rendered test/erector_with_locals_from_erb.html.erb (1.9ms)
1337
+ Completed 500 Internal Server Error in 2ms
1338
+ Processing by TestController#render_erector_partial_with_unneeded_controller_variables as HTML
1339
+ Rendered test/_partial_with_locals.rb (0.2ms)
1340
+ Rendered test/erector_with_locals_from_erb.html.erb (0.4ms)
1341
+ Completed 200 OK in 1ms (Views: 0.8ms)
1342
+ Processing by TestController#render_erector_partial_without_controller_variables as HTML
1343
+ Rendered test/_partial_with_locals.rb (0.2ms)
1344
+ Rendered test/erector_with_locals_from_erb.html.erb (0.4ms)
1345
+ Completed 200 OK in 1ms (Views: 0.8ms)
1346
+ Processing by TestController#render_default as HTML
1347
+ Rendered test/render_default.html.rb (0.4ms)
1348
+ Completed 200 OK in 2ms (Views: 1.4ms)
1349
+ Processing by TestController#render_with_needs as HTML
1350
+ Completed 200 OK in 1ms (Views: 0.4ms)
1351
+ Rendered text template (0.0ms)
1352
+ Processing by TestController#render_widget_class as HTML
1353
+ Completed 500 Internal Server Error in 607ms
1354
+ Processing by TestController#render_widget_instance as HTML
1355
+ Completed 200 OK in 2ms (Views: 1.5ms)
1356
+ Processing by TestController#render_widget_with_ignored_controller_variables as HTML
1357
+ Completed 200 OK in 1ms (Views: 0.5ms)
1358
+ Processing by TestController#render_widget_with_extra_controller_variables as HTML
1359
+ Completed 500 Internal Server Error in 1ms
1360
+ Processing by TestController#render_with_content_method as HTML
1361
+ Completed 200 OK in 1ms (Views: 0.3ms)
1362
+ Processing by TestController#render_with_rails_options as HTML
1363
+ Completed 500 Internal Server Error in 1ms (Views: 0.3ms)
1364
+ Processing by TestController#render_template_with_implicit_assigns as HTML
1365
+ Rendered test/implicit_assigns.html.rb (1.1ms)
1366
+ Completed 200 OK in 2ms (Views: 2.3ms)
1367
+ Processing by TestController#render_template_with_protected_instance_variable as HTML
1368
+ Rendered test/protected_instance_variable.html.rb (0.9ms)
1369
+ Completed 200 OK in 2ms (Views: 1.9ms)
1370
+ Processing by TestController#render_bare_rb as HTML
1371
+ Rendered test/bare.rb (1.8ms)
1372
+ Completed 200 OK in 3ms (Views: 2.7ms)
1373
+ Processing by TestController#render_template_with_excess_variables as HTML
1374
+ Rendered test/render_default.html.rb (0.9ms)
1375
+ Completed 200 OK in 2ms (Views: 1.9ms)
1376
+ Processing by TestController#render_needs_template_with_excess_variables as HTML
1377
+ Rendered test/needs.html.rb (1.3ms)
1378
+ Completed 500 Internal Server Error in 3ms
1379
+ Processing by TestController#render_needs_template_with_excess_variables_and_ignoring_extras as HTML
1380
+ Rendered test/needs.html.rb (0.2ms)
1381
+ Completed 200 OK in 1ms (Views: 0.6ms)
1382
+ Processing by TestController#render_needs_subclass_template_with_excess_variables_and_ignoring_extras as HTML
1383
+ Rendered test/needs_subclass.html.rb (1.0ms)
1384
+ Completed 200 OK in 2ms (Views: 2.0ms)
1385
+ Processing by TestController#render_template_with_partial as HTML
1386
+ Rendered test/_erector.rb (1.6ms)
1387
+ Rendered test/render_partial.html.rb (11.8ms)
1388
+ Completed 200 OK in 13ms (Views: 12.7ms)
1389
+ Processing by TestController#render_erb_from_erector as HTML
1390
+ Rendered test/_erb.erb (0.4ms)
1391
+ Rendered test/erb_from_erector.html.rb (1.9ms)
1392
+ Completed 200 OK in 3ms (Views: 2.9ms)
1393
+ Processing by TestController#render_erector_from_erb as HTML
1394
+ Rendered test/_erector.rb (0.2ms)
1395
+ Rendered test/erector_from_erb.html.erb (0.7ms)
1396
+ Completed 200 OK in 2ms (Views: 1.6ms)
1397
+ Processing by TestController#render_erector_with_locals_from_erb as HTML
1398
+ Rendered test/_partial_with_locals.rb (1.7ms)
1399
+ Rendered test/erector_with_locals_from_erb.html.erb (2.7ms)
1400
+ Completed 200 OK in 4ms (Views: 3.7ms)
1401
+ Processing by TestController#render_erector_with_locals_from_erb_defaulted as HTML
1402
+ Rendered test/_partial_with_locals.rb (0.4ms)
1403
+ Rendered test/erector_with_locals_from_erb.html.erb (1.2ms)
1404
+ Completed 200 OK in 2ms (Views: 1.6ms)
1405
+ Processing by TestController#render_erector_with_locals_from_erb_override as HTML
1406
+ Rendered test/_partial_with_locals.rb (0.1ms)
1407
+ Rendered test/erector_with_locals_from_erb.html.erb (0.3ms)
1408
+ Completed 200 OK in 1ms (Views: 0.8ms)
1409
+ Processing by TestController#render_erector_with_locals_from_erb_not_needed as HTML
1410
+ Rendered test/_partial_with_locals.rb (1.1ms)
1411
+ Rendered test/erector_with_locals_from_erb.html.erb (1.9ms)
1412
+ Completed 500 Internal Server Error in 2ms
1413
+ Processing by TestController#render_erector_partial_with_unneeded_controller_variables as HTML
1414
+ Rendered test/_partial_with_locals.rb (0.2ms)
1415
+ Rendered test/erector_with_locals_from_erb.html.erb (0.4ms)
1416
+ Completed 200 OK in 1ms (Views: 0.8ms)
1417
+ Processing by TestController#render_erector_partial_without_controller_variables as HTML
1418
+ Rendered test/_partial_with_locals.rb (0.2ms)
1419
+ Rendered test/erector_with_locals_from_erb.html.erb (0.3ms)
1420
+ Completed 200 OK in 1ms (Views: 0.8ms)
1421
+ Processing by TestController#render_default as HTML
1422
+ Rendered test/render_default.html.rb (0.4ms)
1423
+ Completed 200 OK in 2ms (Views: 1.4ms)
1424
+ Processing by TestController#render_with_needs as HTML
1425
+ Completed 200 OK in 1ms (Views: 0.4ms)
1426
+ Rendered text template (0.0ms)
1427
+ Processing by TestController#render_widget_class as HTML
1428
+ Completed 200 OK in 683ms (Views: 1.8ms)
1429
+ Processing by TestController#render_widget_instance as HTML
1430
+ Completed 200 OK in 1ms (Views: 0.4ms)
1431
+ Processing by TestController#render_widget_with_ignored_controller_variables as HTML
1432
+ Completed 200 OK in 1ms (Views: 0.4ms)
1433
+ Processing by TestController#render_widget_with_extra_controller_variables as HTML
1434
+ Completed 500 Internal Server Error in 1ms
1435
+ Processing by TestController#render_with_content_method as HTML
1436
+ Completed 200 OK in 1ms (Views: 0.3ms)
1437
+ Processing by TestController#render_with_rails_options as HTML
1438
+ Completed 500 Internal Server Error in 1ms (Views: 0.3ms)
1439
+ Processing by TestController#render_template_with_implicit_assigns as HTML
1440
+ Rendered test/implicit_assigns.html.rb (1.2ms)
1441
+ Completed 200 OK in 3ms (Views: 2.3ms)
1442
+ Processing by TestController#render_template_with_protected_instance_variable as HTML
1443
+ Rendered test/protected_instance_variable.html.rb (1.2ms)
1444
+ Completed 200 OK in 3ms (Views: 2.5ms)
1445
+ Processing by TestController#render_bare_rb as HTML
1446
+ Rendered test/bare.rb (2.1ms)
1447
+ Completed 200 OK in 3ms (Views: 3.1ms)
1448
+ Processing by TestController#render_template_with_excess_variables as HTML
1449
+ Rendered test/render_default.html.rb (1.1ms)
1450
+ Completed 200 OK in 3ms (Views: 2.1ms)
1451
+ Processing by TestController#render_needs_template_with_excess_variables as HTML
1452
+ Rendered test/needs.html.rb (1.5ms)
1453
+ Completed 500 Internal Server Error in 3ms
1454
+ Processing by TestController#render_needs_template_with_excess_variables_and_ignoring_extras as HTML
1455
+ Rendered test/needs.html.rb (0.1ms)
1456
+ Completed 200 OK in 1ms (Views: 0.6ms)
1457
+ Processing by TestController#render_needs_subclass_template_with_excess_variables_and_ignoring_extras as HTML
1458
+ Rendered test/needs_subclass.html.rb (1.5ms)
1459
+ Completed 200 OK in 3ms (Views: 2.7ms)
1460
+ Processing by TestController#render_template_with_partial as HTML
1461
+ Rendered test/_erector.rb (1.8ms)
1462
+ Rendered test/render_partial.html.rb (13.6ms)
1463
+ Completed 200 OK in 15ms (Views: 14.7ms)
1464
+ Processing by TestController#render_erb_from_erector as HTML
1465
+ Rendered test/_erb.erb (0.4ms)
1466
+ Rendered test/erb_from_erector.html.rb (2.1ms)
1467
+ Completed 200 OK in 3ms (Views: 3.2ms)
1468
+ Processing by TestController#render_erector_from_erb as HTML
1469
+ Rendered test/_erector.rb (0.2ms)
1470
+ Rendered test/erector_from_erb.html.erb (0.7ms)
1471
+ Completed 200 OK in 2ms (Views: 1.6ms)
1472
+ Processing by TestController#render_erector_with_locals_from_erb as HTML
1473
+ Rendered test/_partial_with_locals.rb (1.9ms)
1474
+ Rendered test/erector_with_locals_from_erb.html.erb (3.0ms)
1475
+ Completed 200 OK in 4ms (Views: 4.0ms)
1476
+ Processing by TestController#render_erector_with_locals_from_erb_defaulted as HTML
1477
+ Rendered test/_partial_with_locals.rb (0.5ms)
1478
+ Rendered test/erector_with_locals_from_erb.html.erb (1.3ms)
1479
+ Completed 200 OK in 2ms (Views: 1.7ms)
1480
+ Processing by TestController#render_erector_with_locals_from_erb_override as HTML
1481
+ Rendered test/_partial_with_locals.rb (0.2ms)
1482
+ Rendered test/erector_with_locals_from_erb.html.erb (0.6ms)
1483
+ Completed 200 OK in 1ms (Views: 1.1ms)
1484
+ Processing by TestController#render_erector_with_locals_from_erb_not_needed as HTML
1485
+ Rendered test/_partial_with_locals.rb (1.2ms)
1486
+ Rendered test/erector_with_locals_from_erb.html.erb (2.1ms)
1487
+ Completed 500 Internal Server Error in 3ms
1488
+ Processing by TestController#render_erector_partial_with_unneeded_controller_variables as HTML
1489
+ Rendered test/_partial_with_locals.rb (0.2ms)
1490
+ Rendered test/erector_with_locals_from_erb.html.erb (0.4ms)
1491
+ Completed 200 OK in 1ms (Views: 0.8ms)
1492
+ Processing by TestController#render_erector_partial_without_controller_variables as HTML
1493
+ Rendered test/_partial_with_locals.rb (0.1ms)
1494
+ Rendered test/erector_with_locals_from_erb.html.erb (0.3ms)
1495
+ Completed 200 OK in 1ms (Views: 0.7ms)
1496
+ Processing by TestController#render_default as HTML
1497
+ Rendered test/render_default.html.rb (0.4ms)
1498
+ Completed 200 OK in 2ms (Views: 1.4ms)
1499
+ Processing by TestController#render_with_needs as HTML
1500
+ Completed 200 OK in 1ms (Views: 0.4ms)
1501
+ Rendered text template (0.0ms)
1502
+ Processing by TestController#render_widget_class as HTML
1503
+ Completed 200 OK in 496ms (Views: 2.7ms)
1504
+ Processing by TestController#render_widget_instance as HTML
1505
+ Completed 200 OK in 1ms (Views: 0.4ms)
1506
+ Processing by TestController#render_widget_with_ignored_controller_variables as HTML
1507
+ Completed 200 OK in 1ms (Views: 0.5ms)
1508
+ Processing by TestController#render_widget_with_extra_controller_variables as HTML
1509
+ Completed 500 Internal Server Error in 1ms
1510
+ Processing by TestController#render_with_content_method as HTML
1511
+ Completed 200 OK in 1ms (Views: 0.4ms)
1512
+ Processing by TestController#render_with_rails_options as HTML
1513
+ Completed 500 Internal Server Error in 1ms (Views: 0.4ms)
1514
+ Processing by TestController#render_template_with_implicit_assigns as HTML
1515
+ Rendered test/implicit_assigns.html.rb (1.2ms)
1516
+ Completed 200 OK in 3ms (Views: 2.9ms)
1517
+ Processing by TestController#render_template_with_protected_instance_variable as HTML
1518
+ Rendered test/protected_instance_variable.html.rb (1.0ms)
1519
+ Completed 200 OK in 3ms (Views: 2.7ms)
1520
+ Processing by TestController#render_bare_rb as HTML
1521
+ Rendered test/bare.rb (1.7ms)
1522
+ Completed 200 OK in 3ms (Views: 3.3ms)
1523
+ Processing by TestController#render_template_with_excess_variables as HTML
1524
+ Rendered test/render_default.html.rb (1.0ms)
1525
+ Completed 200 OK in 3ms (Views: 2.6ms)
1526
+ Processing by TestController#render_needs_template_with_excess_variables as HTML
1527
+ Rendered test/needs.html.rb (0.8ms)
1528
+ Completed 500 Internal Server Error in 3ms
1529
+ Processing by TestController#render_needs_template_with_excess_variables_and_ignoring_extras as HTML
1530
+ Rendered test/needs.html.rb (0.1ms)
1531
+ Completed 200 OK in 1ms (Views: 0.6ms)
1532
+ Processing by TestController#render_needs_subclass_template_with_excess_variables_and_ignoring_extras as HTML
1533
+ Rendered test/needs_subclass.html.rb (1.1ms)
1534
+ Completed 200 OK in 3ms (Views: 2.8ms)
1535
+ Processing by TestController#render_template_with_partial as HTML
1536
+ Rendered test/_erector.rb (1.6ms)
1537
+ Rendered test/render_partial.html.rb (3.9ms)
1538
+ Completed 200 OK in 6ms (Views: 5.5ms)
1539
+ Processing by TestController#render_erb_from_erector as HTML
1540
+ Rendered test/_erb.erb (0.4ms)
1541
+ Rendered test/erb_from_erector.html.rb (2.7ms)
1542
+ Completed 200 OK in 5ms (Views: 4.3ms)
1543
+ Processing by TestController#render_erector_from_erb as HTML
1544
+ Rendered test/_erector.rb (0.2ms)
1545
+ Rendered test/erector_from_erb.html.erb (0.7ms)
1546
+ Completed 200 OK in 3ms (Views: 2.3ms)
1547
+ Processing by TestController#render_erector_with_locals_from_erb as HTML
1548
+ Rendered test/_partial_with_locals.rb (1.8ms)
1549
+ Rendered test/erector_with_locals_from_erb.html.erb (3.5ms)
1550
+ Completed 200 OK in 5ms (Views: 5.1ms)
1551
+ Processing by TestController#render_erector_with_locals_from_erb_defaulted as HTML
1552
+ Rendered test/_partial_with_locals.rb (0.4ms)
1553
+ Rendered test/erector_with_locals_from_erb.html.erb (0.7ms)
1554
+ Completed 200 OK in 1ms (Views: 1.1ms)
1555
+ Processing by TestController#render_erector_with_locals_from_erb_override as HTML
1556
+ Rendered test/_partial_with_locals.rb (0.2ms)
1557
+ Rendered test/erector_with_locals_from_erb.html.erb (0.4ms)
1558
+ Completed 200 OK in 1ms (Views: 0.8ms)
1559
+ Processing by TestController#render_erector_with_locals_from_erb_not_needed as HTML
1560
+ Rendered test/_partial_with_locals.rb (0.6ms)
1561
+ Rendered test/erector_with_locals_from_erb.html.erb (0.9ms)
1562
+ Completed 500 Internal Server Error in 1ms
1563
+ Processing by TestController#render_erector_partial_with_unneeded_controller_variables as HTML
1564
+ Rendered test/_partial_with_locals.rb (0.2ms)
1565
+ Rendered test/erector_with_locals_from_erb.html.erb (0.4ms)
1566
+ Completed 200 OK in 1ms (Views: 0.8ms)
1567
+ Processing by TestController#render_erector_partial_without_controller_variables as HTML
1568
+ Rendered test/_partial_with_locals.rb (0.2ms)
1569
+ Rendered test/erector_with_locals_from_erb.html.erb (0.4ms)
1570
+ Completed 200 OK in 1ms (Views: 0.8ms)
1571
+ Processing by TestController#render_default as HTML
1572
+ Rendered test/render_default.html.rb (0.5ms)
1573
+ Completed 200 OK in 2ms (Views: 2.1ms)
1574
+ Processing by TestController#render_with_needs as HTML
1575
+ Completed 200 OK in 1ms (Views: 0.4ms)
1576
+ Rendered text template (0.0ms)
1577
+ Processing by TestController#render_widget_class as HTML
1578
+ Completed 200 OK in 705ms (Views: 1.9ms)
1579
+ Processing by TestController#render_widget_instance as HTML
1580
+ Completed 200 OK in 1ms (Views: 0.4ms)
1581
+ Processing by TestController#render_widget_with_ignored_controller_variables as HTML
1582
+ Completed 200 OK in 1ms (Views: 0.5ms)
1583
+ Processing by TestController#render_widget_with_extra_controller_variables as HTML
1584
+ Completed 500 Internal Server Error in 1ms
1585
+ Processing by TestController#render_with_content_method as HTML
1586
+ Completed 200 OK in 1ms (Views: 0.4ms)
1587
+ Processing by TestController#render_with_rails_options as HTML
1588
+ Completed 500 Internal Server Error in 1ms (Views: 0.3ms)
1589
+ Processing by TestController#render_template_with_implicit_assigns as HTML
1590
+ Rendered test/implicit_assigns.html.rb (1.2ms)
1591
+ Completed 200 OK in 3ms (Views: 2.4ms)
1592
+ Processing by TestController#render_template_with_protected_instance_variable as HTML
1593
+ Rendered test/protected_instance_variable.html.rb (1.2ms)
1594
+ Completed 200 OK in 3ms (Views: 2.5ms)
1595
+ Processing by TestController#render_bare_rb as HTML
1596
+ Rendered test/bare.rb (2.0ms)
1597
+ Completed 200 OK in 3ms (Views: 3.1ms)
1598
+ Processing by TestController#render_template_with_excess_variables as HTML
1599
+ Rendered test/render_default.html.rb (1.0ms)
1600
+ Completed 200 OK in 3ms (Views: 2.1ms)
1601
+ Processing by TestController#render_needs_template_with_excess_variables as HTML
1602
+ Rendered test/needs.html.rb (1.4ms)
1603
+ Completed 500 Internal Server Error in 3ms
1604
+ Processing by TestController#render_needs_template_with_excess_variables_and_ignoring_extras as HTML
1605
+ Rendered test/needs.html.rb (0.1ms)
1606
+ Completed 200 OK in 1ms (Views: 0.6ms)
1607
+ Processing by TestController#render_needs_subclass_template_with_excess_variables_and_ignoring_extras as HTML
1608
+ Rendered test/needs_subclass.html.rb (1.5ms)
1609
+ Completed 200 OK in 3ms (Views: 2.7ms)
1610
+ Processing by TestController#render_template_with_partial as HTML
1611
+ Rendered test/_erector.rb (1.8ms)
1612
+ Rendered test/render_partial.html.rb (13.3ms)
1613
+ Completed 200 OK in 15ms (Views: 14.5ms)
1614
+ Processing by TestController#render_erb_from_erector as HTML
1615
+ Rendered test/_erb.erb (0.4ms)
1616
+ Rendered test/erb_from_erector.html.rb (2.2ms)
1617
+ Completed 200 OK in 4ms (Views: 3.3ms)
1618
+ Processing by TestController#render_erector_from_erb as HTML
1619
+ Rendered test/_erector.rb (0.1ms)
1620
+ Rendered test/erector_from_erb.html.erb (0.7ms)
1621
+ Completed 200 OK in 2ms (Views: 1.8ms)
1622
+ Processing by TestController#render_erector_with_locals_from_erb as HTML
1623
+ Rendered test/_partial_with_locals.rb (2.3ms)
1624
+ Rendered test/erector_with_locals_from_erb.html.erb (3.7ms)
1625
+ Completed 200 OK in 5ms (Views: 4.9ms)
1626
+ Processing by TestController#render_erector_with_locals_from_erb_defaulted as HTML
1627
+ Rendered test/_partial_with_locals.rb (0.5ms)
1628
+ Rendered test/erector_with_locals_from_erb.html.erb (1.3ms)
1629
+ Completed 200 OK in 2ms (Views: 1.7ms)
1630
+ Processing by TestController#render_erector_with_locals_from_erb_override as HTML
1631
+ Rendered test/_partial_with_locals.rb (0.1ms)
1632
+ Rendered test/erector_with_locals_from_erb.html.erb (0.3ms)
1633
+ Completed 200 OK in 1ms (Views: 0.8ms)
1634
+ Processing by TestController#render_erector_with_locals_from_erb_not_needed as HTML
1635
+ Rendered test/_partial_with_locals.rb (1.2ms)
1636
+ Rendered test/erector_with_locals_from_erb.html.erb (1.9ms)
1637
+ Completed 500 Internal Server Error in 3ms
1638
+ Processing by TestController#render_erector_partial_with_unneeded_controller_variables as HTML
1639
+ Rendered test/_partial_with_locals.rb (0.2ms)
1640
+ Rendered test/erector_with_locals_from_erb.html.erb (0.4ms)
1641
+ Completed 200 OK in 1ms (Views: 0.8ms)
1642
+ Processing by TestController#render_erector_partial_without_controller_variables as HTML
1643
+ Rendered test/_partial_with_locals.rb (0.1ms)
1644
+ Rendered test/erector_with_locals_from_erb.html.erb (0.3ms)
1645
+ Completed 200 OK in 1ms (Views: 0.7ms)
1646
+ Processing by TestController#render_default as HTML
1647
+ Rendered test/render_default.html.rb (0.4ms)
1648
+ Completed 200 OK in 2ms (Views: 1.5ms)
1649
+ Processing by TestController#render_with_needs as HTML
1650
+ Completed 200 OK in 1ms (Views: 0.4ms)
1651
+ Rendered text template (0.0ms)
1652
+ Processing by TestController#render_widget_class as HTML
1653
+ Completed 200 OK in 501ms (Views: 2.4ms)
1654
+ Processing by TestController#render_widget_instance as HTML
1655
+ Completed 200 OK in 1ms (Views: 0.4ms)
1656
+ Processing by TestController#render_widget_with_ignored_controller_variables as HTML
1657
+ Completed 200 OK in 1ms (Views: 0.5ms)
1658
+ Processing by TestController#render_widget_with_extra_controller_variables as HTML
1659
+ Completed 500 Internal Server Error in 1ms
1660
+ Processing by TestController#render_with_content_method as HTML
1661
+ Completed 200 OK in 1ms (Views: 0.4ms)
1662
+ Processing by TestController#render_with_rails_options as HTML
1663
+ Completed 500 Internal Server Error in 1ms (Views: 0.4ms)
1664
+ Processing by TestController#render_template_with_implicit_assigns as HTML
1665
+ Rendered test/implicit_assigns.html.rb (1.2ms)
1666
+ Completed 200 OK in 3ms (Views: 2.7ms)
1667
+ Processing by TestController#render_template_with_protected_instance_variable as HTML
1668
+ Rendered test/protected_instance_variable.html.rb (1.0ms)
1669
+ Completed 200 OK in 3ms (Views: 2.5ms)
1670
+ Processing by TestController#render_bare_rb as HTML
1671
+ Rendered test/bare.rb (1.9ms)
1672
+ Completed 200 OK in 3ms (Views: 3.2ms)
1673
+ Processing by TestController#render_template_with_excess_variables as HTML
1674
+ Rendered test/render_default.html.rb (1.1ms)
1675
+ Completed 200 OK in 3ms (Views: 2.6ms)
1676
+ Processing by TestController#render_needs_template_with_excess_variables as HTML
1677
+ Rendered test/needs.html.rb (1.0ms)
1678
+ Completed 500 Internal Server Error in 3ms
1679
+ Processing by TestController#render_needs_template_with_excess_variables_and_ignoring_extras as HTML
1680
+ Rendered test/needs.html.rb (0.2ms)
1681
+ Completed 200 OK in 1ms (Views: 0.6ms)
1682
+ Processing by TestController#render_needs_subclass_template_with_excess_variables_and_ignoring_extras as HTML
1683
+ Rendered test/needs_subclass.html.rb (1.2ms)
1684
+ Completed 200 OK in 3ms (Views: 2.7ms)
1685
+ Processing by TestController#render_template_with_partial as HTML
1686
+ Rendered test/_erector.rb (2.4ms)
1687
+ Rendered test/render_partial.html.rb (4.7ms)
1688
+ Completed 200 OK in 6ms (Views: 6.1ms)
1689
+ Processing by TestController#render_erb_from_erector as HTML
1690
+ Rendered test/_erb.erb (0.5ms)
1691
+ Rendered test/erb_from_erector.html.rb (2.7ms)
1692
+ Completed 200 OK in 4ms (Views: 4.2ms)
1693
+ Processing by TestController#render_erector_from_erb as HTML
1694
+ Rendered test/_erector.rb (0.2ms)
1695
+ Rendered test/erector_from_erb.html.erb (0.7ms)
1696
+ Completed 200 OK in 2ms (Views: 2.1ms)
1697
+ Processing by TestController#render_erector_with_locals_from_erb as HTML
1698
+ Rendered test/_partial_with_locals.rb (2.0ms)
1699
+ Rendered test/erector_with_locals_from_erb.html.erb (3.5ms)
1700
+ Completed 200 OK in 5ms (Views: 5.0ms)
1701
+ Processing by TestController#render_erector_with_locals_from_erb_defaulted as HTML
1702
+ Rendered test/_partial_with_locals.rb (0.5ms)
1703
+ Rendered test/erector_with_locals_from_erb.html.erb (0.7ms)
1704
+ Completed 200 OK in 1ms (Views: 1.2ms)
1705
+ Processing by TestController#render_erector_with_locals_from_erb_override as HTML
1706
+ Rendered test/_partial_with_locals.rb (0.2ms)
1707
+ Rendered test/erector_with_locals_from_erb.html.erb (0.4ms)
1708
+ Completed 200 OK in 1ms (Views: 0.7ms)
1709
+ Processing by TestController#render_erector_with_locals_from_erb_not_needed as HTML
1710
+ Rendered test/_partial_with_locals.rb (0.7ms)
1711
+ Rendered test/erector_with_locals_from_erb.html.erb (0.9ms)
1712
+ Completed 500 Internal Server Error in 2ms
1713
+ Processing by TestController#render_erector_partial_with_unneeded_controller_variables as HTML
1714
+ Rendered test/_partial_with_locals.rb (0.2ms)
1715
+ Rendered test/erector_with_locals_from_erb.html.erb (0.4ms)
1716
+ Completed 200 OK in 1ms (Views: 0.8ms)
1717
+ Processing by TestController#render_erector_partial_without_controller_variables as HTML
1718
+ Rendered test/_partial_with_locals.rb (0.3ms)
1719
+ Rendered test/erector_with_locals_from_erb.html.erb (0.7ms)
1720
+ Completed 200 OK in 2ms (Views: 1.2ms)
1721
+ Processing by TestController#render_default as HTML
1722
+ Rendered test/render_default.html.rb (0.6ms)
1723
+ Completed 200 OK in 3ms (Views: 2.2ms)
1724
+ Processing by TestController#render_with_needs as HTML
1725
+ Completed 200 OK in 1ms (Views: 0.4ms)
1726
+ Rendered text template (0.0ms)
1727
+ Processing by TestController#render_widget_class as HTML
1728
+ Completed 200 OK in 507ms (Views: 2.6ms)
1729
+ Processing by TestController#render_widget_instance as HTML
1730
+ Completed 200 OK in 1ms (Views: 0.3ms)
1731
+ Processing by TestController#render_widget_with_ignored_controller_variables as HTML
1732
+ Completed 200 OK in 1ms (Views: 0.5ms)
1733
+ Processing by TestController#render_widget_with_extra_controller_variables as HTML
1734
+ Completed 500 Internal Server Error in 1ms
1735
+ Processing by TestController#render_with_content_method as HTML
1736
+ Completed 200 OK in 1ms (Views: 0.3ms)
1737
+ Processing by TestController#render_with_rails_options as HTML
1738
+ Completed 500 Internal Server Error in 1ms (Views: 0.4ms)
1739
+ Processing by TestController#render_template_with_implicit_assigns as HTML
1740
+ Rendered test/implicit_assigns.html.rb (1.2ms)
1741
+ Completed 200 OK in 3ms (Views: 2.9ms)
1742
+ Processing by TestController#render_template_with_protected_instance_variable as HTML
1743
+ Rendered test/protected_instance_variable.html.rb (1.0ms)
1744
+ Completed 200 OK in 3ms (Views: 2.7ms)
1745
+ Processing by TestController#render_bare_rb as HTML
1746
+ Rendered test/bare.rb (1.9ms)
1747
+ Completed 200 OK in 4ms (Views: 3.4ms)
1748
+ Processing by TestController#render_template_with_excess_variables as HTML
1749
+ Rendered test/render_default.html.rb (1.1ms)
1750
+ Completed 200 OK in 3ms (Views: 2.8ms)
1751
+ Processing by TestController#render_needs_template_with_excess_variables as HTML
1752
+ Rendered test/needs.html.rb (0.9ms)
1753
+ Completed 500 Internal Server Error in 3ms
1754
+ Processing by TestController#render_needs_template_with_excess_variables_and_ignoring_extras as HTML
1755
+ Rendered test/needs.html.rb (0.1ms)
1756
+ Completed 200 OK in 1ms (Views: 0.6ms)
1757
+ Processing by TestController#render_needs_subclass_template_with_excess_variables_and_ignoring_extras as HTML
1758
+ Rendered test/needs_subclass.html.rb (1.3ms)
1759
+ Completed 200 OK in 3ms (Views: 3.1ms)
1760
+ Processing by TestController#render_template_with_partial as HTML
1761
+ Rendered test/_erector.rb (2.1ms)
1762
+ Rendered test/render_partial.html.rb (5.0ms)
1763
+ Completed 200 OK in 7ms (Views: 6.9ms)
1764
+ Processing by TestController#render_erb_from_erector as HTML
1765
+ Rendered test/_erb.erb (0.5ms)
1766
+ Rendered test/erb_from_erector.html.rb (3.0ms)
1767
+ Completed 200 OK in 5ms (Views: 4.7ms)
1768
+ Processing by TestController#render_erector_from_erb as HTML
1769
+ Rendered test/_erector.rb (0.2ms)
1770
+ Rendered test/erector_from_erb.html.erb (0.7ms)
1771
+ Completed 200 OK in 3ms (Views: 2.3ms)
1772
+ Processing by TestController#render_erector_with_locals_from_erb as HTML
1773
+ Rendered test/_partial_with_locals.rb (2.0ms)
1774
+ Rendered test/erector_with_locals_from_erb.html.erb (3.6ms)
1775
+ Completed 200 OK in 6ms (Views: 5.3ms)
1776
+ Processing by TestController#render_erector_with_locals_from_erb_defaulted as HTML
1777
+ Rendered test/_partial_with_locals.rb (0.5ms)
1778
+ Rendered test/erector_with_locals_from_erb.html.erb (0.7ms)
1779
+ Completed 200 OK in 1ms (Views: 1.1ms)
1780
+ Processing by TestController#render_erector_with_locals_from_erb_override as HTML
1781
+ Rendered test/_partial_with_locals.rb (0.2ms)
1782
+ Rendered test/erector_with_locals_from_erb.html.erb (0.4ms)
1783
+ Completed 200 OK in 1ms (Views: 0.9ms)
1784
+ Processing by TestController#render_erector_with_locals_from_erb_not_needed as HTML
1785
+ Rendered test/_partial_with_locals.rb (0.7ms)
1786
+ Rendered test/erector_with_locals_from_erb.html.erb (0.9ms)
1787
+ Completed 500 Internal Server Error in 1ms
1788
+ Processing by TestController#render_erector_partial_with_unneeded_controller_variables as HTML
1789
+ Rendered test/_partial_with_locals.rb (0.2ms)
1790
+ Rendered test/erector_with_locals_from_erb.html.erb (0.4ms)
1791
+ Completed 200 OK in 1ms (Views: 0.7ms)
1792
+ Processing by TestController#render_erector_partial_without_controller_variables as HTML
1793
+ Rendered test/_partial_with_locals.rb (0.2ms)
1794
+ Rendered test/erector_with_locals_from_erb.html.erb (0.4ms)
1795
+ Completed 200 OK in 1ms (Views: 0.7ms)
1796
+ Processing by TestController#render_default as HTML
1797
+ Rendered test/render_default.html.rb (0.6ms)
1798
+ Completed 200 OK in 3ms (Views: 2.3ms)
1799
+ Processing by TestController#render_with_needs as HTML
1800
+ Completed 200 OK in 1ms (Views: 0.4ms)
1801
+ Rendered text template (0.0ms)
1802
+ Processing by TestController#render_widget_class as HTML
1803
+ Completed 200 OK in 497ms (Views: 2.6ms)
1804
+ Processing by TestController#render_widget_instance as HTML
1805
+ Completed 200 OK in 1ms (Views: 0.4ms)
1806
+ Processing by TestController#render_widget_with_ignored_controller_variables as HTML
1807
+ Completed 200 OK in 1ms (Views: 0.4ms)
1808
+ Processing by TestController#render_widget_with_extra_controller_variables as HTML
1809
+ Completed 500 Internal Server Error in 1ms
1810
+ Processing by TestController#render_with_content_method as HTML
1811
+ Completed 200 OK in 1ms (Views: 0.4ms)
1812
+ Processing by TestController#render_with_rails_options as HTML
1813
+ Completed 500 Internal Server Error in 1ms (Views: 0.4ms)
1814
+ Processing by TestController#render_template_with_implicit_assigns as HTML
1815
+ Rendered test/implicit_assigns.html.rb (1.3ms)
1816
+ Completed 200 OK in 3ms (Views: 2.9ms)
1817
+ Processing by TestController#render_template_with_protected_instance_variable as HTML
1818
+ Rendered test/protected_instance_variable.html.rb (1.1ms)
1819
+ Completed 200 OK in 3ms (Views: 2.7ms)
1820
+ Processing by TestController#render_bare_rb as HTML
1821
+ Rendered test/bare.rb (1.8ms)
1822
+ Completed 200 OK in 4ms (Views: 3.3ms)
1823
+ Processing by TestController#render_template_with_excess_variables as HTML
1824
+ Rendered test/render_default.html.rb (1.3ms)
1825
+ Completed 200 OK in 3ms (Views: 3.0ms)
1826
+ Processing by TestController#render_needs_template_with_excess_variables as HTML
1827
+ Rendered test/needs.html.rb (0.9ms)
1828
+ Completed 500 Internal Server Error in 3ms
1829
+ Processing by TestController#render_needs_template_with_excess_variables_and_ignoring_extras as HTML
1830
+ Rendered test/needs.html.rb (0.2ms)
1831
+ Completed 200 OK in 1ms (Views: 0.6ms)
1832
+ Processing by TestController#render_needs_subclass_template_with_excess_variables_and_ignoring_extras as HTML
1833
+ Rendered test/needs_subclass.html.rb (1.1ms)
1834
+ Completed 200 OK in 3ms (Views: 2.7ms)
1835
+ Processing by TestController#render_template_with_partial as HTML
1836
+ Rendered test/_erector.rb (1.6ms)
1837
+ Rendered test/render_partial.html.rb (4.0ms)
1838
+ Completed 200 OK in 6ms (Views: 5.7ms)
1839
+ Processing by TestController#render_erb_from_erector as HTML
1840
+ Rendered test/_erb.erb (0.4ms)
1841
+ Rendered test/erb_from_erector.html.rb (2.7ms)
1842
+ Completed 200 OK in 4ms (Views: 4.2ms)
1843
+ Processing by TestController#render_erector_from_erb as HTML
1844
+ Rendered test/_erector.rb (0.2ms)
1845
+ Rendered test/erector_from_erb.html.erb (0.7ms)
1846
+ Completed 200 OK in 2ms (Views: 2.2ms)
1847
+ Processing by TestController#render_erector_with_locals_from_erb as HTML
1848
+ Rendered test/_partial_with_locals.rb (1.8ms)
1849
+ Rendered test/erector_with_locals_from_erb.html.erb (3.4ms)
1850
+ Completed 200 OK in 5ms (Views: 4.9ms)
1851
+ Processing by TestController#render_erector_with_locals_from_erb_defaulted as HTML
1852
+ Rendered test/_partial_with_locals.rb (0.4ms)
1853
+ Rendered test/erector_with_locals_from_erb.html.erb (0.6ms)
1854
+ Completed 200 OK in 1ms (Views: 1.0ms)
1855
+ Processing by TestController#render_erector_with_locals_from_erb_override as HTML
1856
+ Rendered test/_partial_with_locals.rb (0.1ms)
1857
+ Rendered test/erector_with_locals_from_erb.html.erb (0.3ms)
1858
+ Completed 200 OK in 1ms (Views: 0.7ms)
1859
+ Processing by TestController#render_erector_with_locals_from_erb_not_needed as HTML
1860
+ Rendered test/_partial_with_locals.rb (0.6ms)
1861
+ Rendered test/erector_with_locals_from_erb.html.erb (0.8ms)
1862
+ Completed 500 Internal Server Error in 1ms
1863
+ Processing by TestController#render_erector_partial_with_unneeded_controller_variables as HTML
1864
+ Rendered test/_partial_with_locals.rb (0.2ms)
1865
+ Rendered test/erector_with_locals_from_erb.html.erb (0.4ms)
1866
+ Completed 200 OK in 1ms (Views: 0.7ms)
1867
+ Processing by TestController#render_erector_partial_without_controller_variables as HTML
1868
+ Rendered test/_partial_with_locals.rb (0.2ms)
1869
+ Rendered test/erector_with_locals_from_erb.html.erb (0.3ms)
1870
+ Completed 200 OK in 1ms (Views: 0.7ms)
1871
+ Processing by TestController#render_default as HTML
1872
+ Rendered test/render_default.html.rb (0.6ms)
1873
+ Completed 200 OK in 2ms (Views: 2.2ms)
1874
+ Processing by TestController#render_with_needs as HTML
1875
+ Completed 200 OK in 1ms (Views: 0.4ms)
1876
+ Rendered text template (0.0ms)
1877
+ Processing by TestController#render_widget_class as HTML
1878
+ Completed 200 OK in 495ms (Views: 2.6ms)
1879
+ Processing by TestController#render_widget_instance as HTML
1880
+ Completed 200 OK in 1ms (Views: 0.4ms)
1881
+ Processing by TestController#render_widget_with_ignored_controller_variables as HTML
1882
+ Completed 200 OK in 1ms (Views: 0.5ms)
1883
+ Processing by TestController#render_widget_with_extra_controller_variables as HTML
1884
+ Completed 500 Internal Server Error in 1ms
1885
+ Processing by TestController#render_with_content_method as HTML
1886
+ Completed 200 OK in 1ms (Views: 0.4ms)
1887
+ Processing by TestController#render_with_rails_options as HTML
1888
+ Completed 500 Internal Server Error in 1ms (Views: 0.3ms)
1889
+ Processing by TestController#render_template_with_implicit_assigns as HTML
1890
+ Rendered test/implicit_assigns.html.rb (1.2ms)
1891
+ Completed 200 OK in 3ms (Views: 2.9ms)
1892
+ Processing by TestController#render_template_with_protected_instance_variable as HTML
1893
+ Rendered test/protected_instance_variable.html.rb (1.1ms)
1894
+ Completed 200 OK in 3ms (Views: 2.8ms)
1895
+ Processing by TestController#render_bare_rb as HTML
1896
+ Rendered test/bare.rb (1.8ms)
1897
+ Completed 200 OK in 4ms (Views: 3.4ms)
1898
+ Processing by TestController#render_template_with_excess_variables as HTML
1899
+ Rendered test/render_default.html.rb (1.1ms)
1900
+ Completed 200 OK in 3ms (Views: 2.8ms)
1901
+ Processing by TestController#render_needs_template_with_excess_variables as HTML
1902
+ Rendered test/needs.html.rb (1.0ms)
1903
+ Completed 500 Internal Server Error in 3ms
1904
+ Processing by TestController#render_needs_template_with_excess_variables_and_ignoring_extras as HTML
1905
+ Rendered test/needs.html.rb (0.2ms)
1906
+ Completed 200 OK in 1ms (Views: 0.7ms)
1907
+ Processing by TestController#render_needs_subclass_template_with_excess_variables_and_ignoring_extras as HTML
1908
+ Rendered test/needs_subclass.html.rb (1.2ms)
1909
+ Completed 200 OK in 3ms (Views: 3.0ms)
1910
+ Processing by TestController#render_template_with_partial as HTML
1911
+ Rendered test/_erector.rb (1.7ms)
1912
+ Rendered test/render_partial.html.rb (4.2ms)
1913
+ Completed 200 OK in 6ms (Views: 5.9ms)
1914
+ Processing by TestController#render_erb_from_erector as HTML
1915
+ Rendered test/_erb.erb (0.5ms)
1916
+ Rendered test/erb_from_erector.html.rb (3.0ms)
1917
+ Completed 200 OK in 5ms (Views: 4.7ms)
1918
+ Processing by TestController#render_erector_from_erb as HTML
1919
+ Rendered test/_erector.rb (0.2ms)
1920
+ Rendered test/erector_from_erb.html.erb (0.8ms)
1921
+ Completed 200 OK in 3ms (Views: 2.4ms)
1922
+ Processing by TestController#render_erector_with_locals_from_erb as HTML
1923
+ Rendered test/_partial_with_locals.rb (1.9ms)
1924
+ Rendered test/erector_with_locals_from_erb.html.erb (3.6ms)
1925
+ Completed 200 OK in 6ms (Views: 5.3ms)
1926
+ Processing by TestController#render_erector_with_locals_from_erb_defaulted as HTML
1927
+ Rendered test/_partial_with_locals.rb (0.5ms)
1928
+ Rendered test/erector_with_locals_from_erb.html.erb (0.7ms)
1929
+ Completed 200 OK in 1ms (Views: 1.2ms)
1930
+ Processing by TestController#render_erector_with_locals_from_erb_override as HTML
1931
+ Rendered test/_partial_with_locals.rb (0.2ms)
1932
+ Rendered test/erector_with_locals_from_erb.html.erb (0.4ms)
1933
+ Completed 200 OK in 1ms (Views: 0.9ms)
1934
+ Processing by TestController#render_erector_with_locals_from_erb_not_needed as HTML
1935
+ Rendered test/_partial_with_locals.rb (0.7ms)
1936
+ Rendered test/erector_with_locals_from_erb.html.erb (1.0ms)
1937
+ Completed 500 Internal Server Error in 2ms
1938
+ Processing by TestController#render_erector_partial_with_unneeded_controller_variables as HTML
1939
+ Rendered test/_partial_with_locals.rb (0.2ms)
1940
+ Rendered test/erector_with_locals_from_erb.html.erb (0.4ms)
1941
+ Completed 200 OK in 1ms (Views: 0.8ms)
1942
+ Processing by TestController#render_erector_partial_without_controller_variables as HTML
1943
+ Rendered test/_partial_with_locals.rb (0.2ms)
1944
+ Rendered test/erector_with_locals_from_erb.html.erb (0.5ms)
1945
+ Completed 200 OK in 1ms (Views: 0.9ms)
1946
+ Processing by TestController#render_default as HTML
1947
+ Rendered test/render_default.html.rb (0.6ms)
1948
+ Completed 200 OK in 3ms (Views: 2.4ms)
1949
+ Processing by TestController#render_with_needs as HTML
1950
+ Completed 200 OK in 1ms (Views: 0.4ms)
1951
+ Rendered text template (0.0ms)
1952
+ Processing by TestController#render_widget_class as HTML
1953
+ Completed 200 OK in 503ms (Views: 2.4ms)
1954
+ Processing by TestController#render_widget_instance as HTML
1955
+ Completed 200 OK in 1ms (Views: 0.4ms)
1956
+ Processing by TestController#render_widget_with_ignored_controller_variables as HTML
1957
+ Completed 200 OK in 1ms (Views: 0.5ms)
1958
+ Processing by TestController#render_widget_with_extra_controller_variables as HTML
1959
+ Completed 500 Internal Server Error in 1ms
1960
+ Processing by TestController#render_with_content_method as HTML
1961
+ Completed 200 OK in 1ms (Views: 0.4ms)
1962
+ Processing by TestController#render_with_rails_options as HTML
1963
+ Completed 500 Internal Server Error in 1ms (Views: 0.4ms)
1964
+ Processing by TestController#render_template_with_implicit_assigns as HTML
1965
+ Rendered test/implicit_assigns.html.rb (1.2ms)
1966
+ Completed 200 OK in 3ms (Views: 2.7ms)
1967
+ Processing by TestController#render_template_with_protected_instance_variable as HTML
1968
+ Rendered test/protected_instance_variable.html.rb (1.0ms)
1969
+ Completed 200 OK in 3ms (Views: 2.5ms)
1970
+ Processing by TestController#render_bare_rb as HTML
1971
+ Rendered test/bare.rb (1.8ms)
1972
+ Completed 200 OK in 3ms (Views: 3.2ms)
1973
+ Processing by TestController#render_template_with_excess_variables as HTML
1974
+ Rendered test/render_default.html.rb (1.1ms)
1975
+ Completed 200 OK in 3ms (Views: 2.6ms)
1976
+ Processing by TestController#render_needs_template_with_excess_variables as HTML
1977
+ Rendered test/needs.html.rb (0.9ms)
1978
+ Completed 500 Internal Server Error in 3ms
1979
+ Processing by TestController#render_needs_template_with_excess_variables_and_ignoring_extras as HTML
1980
+ Rendered test/needs.html.rb (0.2ms)
1981
+ Completed 200 OK in 1ms (Views: 0.6ms)
1982
+ Processing by TestController#render_needs_subclass_template_with_excess_variables_and_ignoring_extras as HTML
1983
+ Rendered test/needs_subclass.html.rb (1.2ms)
1984
+ Completed 200 OK in 3ms (Views: 2.7ms)
1985
+ Processing by TestController#render_template_with_partial as HTML
1986
+ Rendered test/_erector.rb (1.7ms)
1987
+ Rendered test/render_partial.html.rb (3.8ms)
1988
+ Completed 200 OK in 5ms (Views: 5.2ms)
1989
+ Processing by TestController#render_erb_from_erector as HTML
1990
+ Rendered test/_erb.erb (0.5ms)
1991
+ Rendered test/erb_from_erector.html.rb (2.7ms)
1992
+ Completed 200 OK in 4ms (Views: 4.1ms)
1993
+ Processing by TestController#render_erector_from_erb as HTML
1994
+ Rendered test/_erector.rb (0.2ms)
1995
+ Rendered test/erector_from_erb.html.erb (0.7ms)
1996
+ Completed 200 OK in 2ms (Views: 2.1ms)
1997
+ Processing by TestController#render_erector_with_locals_from_erb as HTML
1998
+ Rendered test/_partial_with_locals.rb (1.9ms)
1999
+ Rendered test/erector_with_locals_from_erb.html.erb (3.4ms)
2000
+ Completed 200 OK in 5ms (Views: 4.8ms)
2001
+ Processing by TestController#render_erector_with_locals_from_erb_defaulted as HTML
2002
+ Rendered test/_partial_with_locals.rb (0.5ms)
2003
+ Rendered test/erector_with_locals_from_erb.html.erb (0.7ms)
2004
+ Completed 200 OK in 1ms (Views: 1.1ms)
2005
+ Processing by TestController#render_erector_with_locals_from_erb_override as HTML
2006
+ Rendered test/_partial_with_locals.rb (0.2ms)
2007
+ Rendered test/erector_with_locals_from_erb.html.erb (0.3ms)
2008
+ Completed 200 OK in 1ms (Views: 0.7ms)
2009
+ Processing by TestController#render_erector_with_locals_from_erb_not_needed as HTML
2010
+ Rendered test/_partial_with_locals.rb (0.6ms)
2011
+ Rendered test/erector_with_locals_from_erb.html.erb (0.9ms)
2012
+ Completed 500 Internal Server Error in 1ms
2013
+ Processing by TestController#render_erector_partial_with_unneeded_controller_variables as HTML
2014
+ Rendered test/_partial_with_locals.rb (0.2ms)
2015
+ Rendered test/erector_with_locals_from_erb.html.erb (0.4ms)
2016
+ Completed 200 OK in 1ms (Views: 0.8ms)
2017
+ Processing by TestController#render_erector_partial_without_controller_variables as HTML
2018
+ Rendered test/_partial_with_locals.rb (0.2ms)
2019
+ Rendered test/erector_with_locals_from_erb.html.erb (0.4ms)
2020
+ Completed 200 OK in 1ms (Views: 0.7ms)
2021
+ Processing by TestController#render_default as HTML
2022
+ Rendered test/render_default.html.rb (0.6ms)
2023
+ Completed 200 OK in 3ms (Views: 2.2ms)
2024
+ Processing by TestController#render_with_needs as HTML
2025
+ Completed 200 OK in 1ms (Views: 0.4ms)
2026
+ Rendered text template (0.0ms)
2027
+ Processing by TestController#render_widget_class as HTML
2028
+ Completed 200 OK in 175ms (Views: 3.2ms)
2029
+ Processing by TestController#render_widget_instance as HTML
2030
+ Completed 200 OK in 1ms (Views: 0.4ms)
2031
+ Processing by TestController#render_widget_with_ignored_controller_variables as HTML
2032
+ Completed 200 OK in 1ms (Views: 0.6ms)
2033
+ Processing by TestController#render_widget_with_extra_controller_variables as HTML
2034
+ Completed 500 Internal Server Error in 1ms
2035
+ Processing by TestController#render_with_content_method as HTML
2036
+ Completed 200 OK in 1ms (Views: 0.4ms)
2037
+ Processing by TestController#render_with_rails_options as HTML
2038
+ Completed 500 Internal Server Error in 1ms (Views: 0.5ms)
2039
+ Processing by TestController#render_template_with_implicit_assigns as HTML
2040
+ Rendered test/implicit_assigns.html.rb (0.9ms)
2041
+ Completed 200 OK in 3ms (Views: 3.0ms)
2042
+ Processing by TestController#render_template_with_protected_instance_variable as HTML
2043
+ Rendered test/protected_instance_variable.html.rb (0.8ms)
2044
+ Completed 200 OK in 3ms (Views: 2.6ms)
2045
+ Processing by TestController#render_bare_rb as HTML
2046
+ Rendered test/bare.rb (0.9ms)
2047
+ Completed 200 OK in 3ms (Views: 2.9ms)
2048
+ Processing by TestController#render_template_with_excess_variables as HTML
2049
+ Rendered test/render_default.html.rb (0.9ms)
2050
+ Completed 200 OK in 3ms (Views: 2.9ms)
2051
+ Processing by TestController#render_needs_template_with_excess_variables as HTML
2052
+ Rendered test/needs.html.rb (0.8ms)
2053
+ Completed 500 Internal Server Error in 3ms
2054
+ Processing by TestController#render_needs_template_with_excess_variables_and_ignoring_extras as HTML
2055
+ Rendered test/needs.html.rb (0.2ms)
2056
+ Completed 200 OK in 1ms (Views: 0.7ms)
2057
+ Processing by TestController#render_needs_subclass_template_with_excess_variables_and_ignoring_extras as HTML
2058
+ Rendered test/needs_subclass.html.rb (0.8ms)
2059
+ Completed 200 OK in 3ms (Views: 2.7ms)
2060
+ Processing by TestController#render_template_with_partial as HTML
2061
+ Rendered test/_erector.rb (60.4ms)
2062
+ Rendered test/render_partial.html.rb (62.9ms)
2063
+ Completed 200 OK in 65ms (Views: 64.8ms)
2064
+ Processing by TestController#render_erb_from_erector as HTML
2065
+ Rendered test/_erb.erb (0.3ms)
2066
+ Rendered test/erb_from_erector.html.rb (2.8ms)
2067
+ Completed 200 OK in 5ms (Views: 4.8ms)
2068
+ Processing by TestController#render_erector_from_erb as HTML
2069
+ Rendered test/_erector.rb (0.4ms)
2070
+ Rendered test/erector_from_erb.html.erb (0.8ms)
2071
+ Completed 200 OK in 3ms (Views: 2.7ms)
2072
+ Processing by TestController#render_erector_with_locals_from_erb as HTML
2073
+ Rendered test/_partial_with_locals.rb (1.0ms)
2074
+ Rendered test/erector_with_locals_from_erb.html.erb (2.8ms)
2075
+ Completed 200 OK in 5ms (Views: 4.7ms)
2076
+ Processing by TestController#render_erector_with_locals_from_erb_defaulted as HTML
2077
+ Rendered test/_partial_with_locals.rb (0.5ms)
2078
+ Rendered test/erector_with_locals_from_erb.html.erb (0.8ms)
2079
+ Completed 200 OK in 2ms (Views: 1.3ms)
2080
+ Processing by TestController#render_erector_with_locals_from_erb_override as HTML
2081
+ Rendered test/_partial_with_locals.rb (0.3ms)
2082
+ Rendered test/erector_with_locals_from_erb.html.erb (0.5ms)
2083
+ Completed 200 OK in 1ms (Views: 1.0ms)
2084
+ Processing by TestController#render_erector_with_locals_from_erb_not_needed as HTML
2085
+ Rendered test/_partial_with_locals.rb (0.6ms)
2086
+ Rendered test/erector_with_locals_from_erb.html.erb (0.8ms)
2087
+ Completed 500 Internal Server Error in 1ms
2088
+ Processing by TestController#render_erector_partial_with_unneeded_controller_variables as HTML
2089
+ Rendered test/_partial_with_locals.rb (0.3ms)
2090
+ Rendered test/erector_with_locals_from_erb.html.erb (0.6ms)
2091
+ Completed 200 OK in 1ms (Views: 1.0ms)
2092
+ Processing by TestController#render_erector_partial_without_controller_variables as HTML
2093
+ Rendered test/_partial_with_locals.rb (0.3ms)
2094
+ Rendered test/erector_with_locals_from_erb.html.erb (0.5ms)
2095
+ Completed 200 OK in 1ms (Views: 1.0ms)
2096
+ Processing by TestController#render_default as HTML
2097
+ Rendered test/render_default.html.rb (0.5ms)
2098
+ Completed 200 OK in 3ms (Views: 2.4ms)
2099
+ Processing by TestController#render_with_needs as HTML
2100
+ Completed 200 OK in 1ms (Views: 0.5ms)
2101
+ Rendered text template (0.0ms)
2102
+ Processing by TestController#render_widget_class as HTML
2103
+ Completed 200 OK in 567ms (Views: 2.7ms)
2104
+ Processing by TestController#render_widget_instance as HTML
2105
+ Completed 200 OK in 1ms (Views: 0.4ms)
2106
+ Processing by TestController#render_widget_with_ignored_controller_variables as HTML
2107
+ Completed 200 OK in 1ms (Views: 0.5ms)
2108
+ Processing by TestController#render_widget_with_extra_controller_variables as HTML
2109
+ Completed 500 Internal Server Error in 1ms
2110
+ Processing by TestController#render_with_content_method as HTML
2111
+ Completed 200 OK in 1ms (Views: 0.4ms)
2112
+ Processing by TestController#render_with_rails_options as HTML
2113
+ Completed 500 Internal Server Error in 1ms (Views: 0.4ms)
2114
+ Processing by TestController#render_template_with_implicit_assigns as HTML
2115
+ Rendered test/implicit_assigns.html.rb (1.3ms)
2116
+ Completed 200 OK in 3ms (Views: 3.1ms)
2117
+ Processing by TestController#render_template_with_protected_instance_variable as HTML
2118
+ Rendered test/protected_instance_variable.html.rb (1.2ms)
2119
+ Completed 200 OK in 4ms (Views: 3.2ms)
2120
+ Processing by TestController#render_bare_rb as HTML
2121
+ Rendered test/bare.rb (2.0ms)
2122
+ Completed 200 OK in 4ms (Views: 3.7ms)
2123
+ Processing by TestController#render_template_with_excess_variables as HTML
2124
+ Rendered test/render_default.html.rb (1.1ms)
2125
+ Completed 200 OK in 3ms (Views: 2.9ms)
2126
+ Processing by TestController#render_needs_template_with_excess_variables as HTML
2127
+ Rendered test/needs.html.rb (0.9ms)
2128
+ Completed 500 Internal Server Error in 3ms
2129
+ Processing by TestController#render_needs_template_with_excess_variables_and_ignoring_extras as HTML
2130
+ Rendered test/needs.html.rb (0.2ms)
2131
+ Completed 200 OK in 1ms (Views: 0.6ms)
2132
+ Processing by TestController#render_needs_subclass_template_with_excess_variables_and_ignoring_extras as HTML
2133
+ Rendered test/needs_subclass.html.rb (1.2ms)
2134
+ Completed 200 OK in 3ms (Views: 3.0ms)
2135
+ Processing by TestController#render_template_with_partial as HTML
2136
+ Rendered test/_erector.rb (1.8ms)
2137
+ Rendered test/render_partial.html.rb (4.2ms)
2138
+ Completed 200 OK in 6ms (Views: 5.9ms)
2139
+ Processing by TestController#render_erb_from_erector as HTML
2140
+ Rendered test/_erb.erb (0.4ms)
2141
+ Rendered test/erb_from_erector.html.rb (2.8ms)
2142
+ Completed 200 OK in 5ms (Views: 4.5ms)
2143
+ Processing by TestController#render_erector_from_erb as HTML
2144
+ Rendered test/_erector.rb (0.2ms)
2145
+ Rendered test/erector_from_erb.html.erb (0.7ms)
2146
+ Completed 200 OK in 3ms (Views: 2.4ms)
2147
+ Processing by TestController#render_erector_with_locals_from_erb as HTML
2148
+ Rendered test/_partial_with_locals.rb (2.0ms)
2149
+ Rendered test/erector_with_locals_from_erb.html.erb (3.7ms)
2150
+ Completed 200 OK in 6ms (Views: 5.6ms)
2151
+ Processing by TestController#render_erector_with_locals_from_erb_defaulted as HTML
2152
+ Rendered test/_partial_with_locals.rb (0.5ms)
2153
+ Rendered test/erector_with_locals_from_erb.html.erb (0.7ms)
2154
+ Completed 200 OK in 1ms (Views: 1.1ms)
2155
+ Processing by TestController#render_erector_with_locals_from_erb_override as HTML
2156
+ Rendered test/_partial_with_locals.rb (0.2ms)
2157
+ Rendered test/erector_with_locals_from_erb.html.erb (0.4ms)
2158
+ Completed 200 OK in 1ms (Views: 0.7ms)
2159
+ Processing by TestController#render_erector_with_locals_from_erb_not_needed as HTML
2160
+ Rendered test/_partial_with_locals.rb (0.6ms)
2161
+ Rendered test/erector_with_locals_from_erb.html.erb (0.8ms)
2162
+ Completed 500 Internal Server Error in 1ms
2163
+ Processing by TestController#render_erector_partial_with_unneeded_controller_variables as HTML
2164
+ Rendered test/_partial_with_locals.rb (0.2ms)
2165
+ Rendered test/erector_with_locals_from_erb.html.erb (0.4ms)
2166
+ Completed 200 OK in 1ms (Views: 0.8ms)
2167
+ Processing by TestController#render_erector_partial_without_controller_variables as HTML
2168
+ Rendered test/_partial_with_locals.rb (0.2ms)
2169
+ Rendered test/erector_with_locals_from_erb.html.erb (0.4ms)
2170
+ Completed 200 OK in 1ms (Views: 0.8ms)
2171
+ Processing by TestController#render_default as HTML
2172
+ Rendered test/render_default.html.rb (0.5ms)
2173
+ Completed 200 OK in 2ms (Views: 2.2ms)
2174
+ Processing by TestController#render_with_needs as HTML
2175
+ Completed 200 OK in 1ms (Views: 0.4ms)
2176
+ Rendered text template (0.0ms)
2177
+ Processing by TestController#render_widget_class as HTML
2178
+ Completed 200 OK in 573ms (Views: 2.5ms)
2179
+ Processing by TestController#render_widget_instance as HTML
2180
+ Completed 200 OK in 1ms (Views: 0.3ms)
2181
+ Processing by TestController#render_widget_with_ignored_controller_variables as HTML
2182
+ Completed 200 OK in 1ms (Views: 0.4ms)
2183
+ Processing by TestController#render_widget_with_extra_controller_variables as HTML
2184
+ Completed 500 Internal Server Error in 1ms
2185
+ Processing by TestController#render_with_content_method as HTML
2186
+ Completed 200 OK in 1ms (Views: 0.3ms)
2187
+ Processing by TestController#render_with_rails_options as HTML
2188
+ Completed 500 Internal Server Error in 1ms (Views: 0.4ms)
2189
+ Processing by TestController#render_template_with_implicit_assigns as HTML
2190
+ Rendered test/implicit_assigns.html.rb (1.3ms)
2191
+ Completed 200 OK in 3ms (Views: 2.8ms)
2192
+ Processing by TestController#render_template_with_protected_instance_variable as HTML
2193
+ Rendered test/protected_instance_variable.html.rb (1.2ms)
2194
+ Completed 200 OK in 3ms (Views: 3.0ms)
2195
+ Processing by TestController#render_bare_rb as HTML
2196
+ Rendered test/bare.rb (2.1ms)
2197
+ Completed 200 OK in 4ms (Views: 3.6ms)
2198
+ Processing by TestController#render_template_with_excess_variables as HTML
2199
+ Rendered test/render_default.html.rb (1.2ms)
2200
+ Completed 200 OK in 3ms (Views: 2.6ms)
2201
+ Processing by TestController#render_needs_template_with_excess_variables as HTML
2202
+ Rendered test/needs.html.rb (0.9ms)
2203
+ Completed 500 Internal Server Error in 3ms
2204
+ Processing by TestController#render_needs_template_with_excess_variables_and_ignoring_extras as HTML
2205
+ Rendered test/needs.html.rb (0.2ms)
2206
+ Completed 200 OK in 1ms (Views: 0.6ms)
2207
+ Processing by TestController#render_needs_subclass_template_with_excess_variables_and_ignoring_extras as HTML
2208
+ Rendered test/needs_subclass.html.rb (1.1ms)
2209
+ Completed 200 OK in 3ms (Views: 2.6ms)
2210
+ Processing by TestController#render_template_with_partial as HTML
2211
+ Rendered test/_erector.rb (1.8ms)
2212
+ Rendered test/render_partial.html.rb (4.0ms)
2213
+ Completed 200 OK in 6ms (Views: 5.4ms)
2214
+ Processing by TestController#render_erb_from_erector as HTML
2215
+ Rendered test/_erb.erb (0.4ms)
2216
+ Rendered test/erb_from_erector.html.rb (2.5ms)
2217
+ Completed 200 OK in 4ms (Views: 3.9ms)
2218
+ Processing by TestController#render_erector_from_erb as HTML
2219
+ Rendered test/_erector.rb (0.2ms)
2220
+ Rendered test/erector_from_erb.html.erb (0.8ms)
2221
+ Completed 200 OK in 2ms (Views: 2.2ms)
2222
+ Processing by TestController#render_erector_with_locals_from_erb as HTML
2223
+ Rendered test/_partial_with_locals.rb (2.0ms)
2224
+ Rendered test/erector_with_locals_from_erb.html.erb (3.5ms)
2225
+ Completed 200 OK in 5ms (Views: 5.0ms)
2226
+ Processing by TestController#render_erector_with_locals_from_erb_defaulted as HTML
2227
+ Rendered test/_partial_with_locals.rb (0.5ms)
2228
+ Rendered test/erector_with_locals_from_erb.html.erb (0.7ms)
2229
+ Completed 200 OK in 1ms (Views: 1.1ms)
2230
+ Processing by TestController#render_erector_with_locals_from_erb_override as HTML
2231
+ Rendered test/_partial_with_locals.rb (0.2ms)
2232
+ Rendered test/erector_with_locals_from_erb.html.erb (0.4ms)
2233
+ Completed 200 OK in 1ms (Views: 0.8ms)
2234
+ Processing by TestController#render_erector_with_locals_from_erb_not_needed as HTML
2235
+ Rendered test/_partial_with_locals.rb (0.6ms)
2236
+ Rendered test/erector_with_locals_from_erb.html.erb (0.8ms)
2237
+ Completed 500 Internal Server Error in 1ms
2238
+ Processing by TestController#render_erector_partial_with_unneeded_controller_variables as HTML
2239
+ Rendered test/_partial_with_locals.rb (0.2ms)
2240
+ Rendered test/erector_with_locals_from_erb.html.erb (0.4ms)
2241
+ Completed 200 OK in 1ms (Views: 0.8ms)
2242
+ Processing by TestController#render_erector_partial_without_controller_variables as HTML
2243
+ Rendered test/_partial_with_locals.rb (0.2ms)
2244
+ Rendered test/erector_with_locals_from_erb.html.erb (0.3ms)
2245
+ Completed 200 OK in 1ms (Views: 0.7ms)
2246
+ Processing by TestController#render_default as HTML
2247
+ Rendered test/render_default.html.rb (0.5ms)
2248
+ Completed 200 OK in 2ms (Views: 1.9ms)
2249
+ Processing by TestController#render_with_needs as HTML
2250
+ Completed 200 OK in 1ms (Views: 0.4ms)
2251
+ Rendered text template (0.0ms)
2252
+ Processing by TestController#render_widget_class as HTML
2253
+ Completed 200 OK in 602ms (Views: 2.6ms)
2254
+ Processing by TestController#render_widget_instance as HTML
2255
+ Completed 200 OK in 1ms (Views: 0.4ms)
2256
+ Processing by TestController#render_widget_with_ignored_controller_variables as HTML
2257
+ Completed 200 OK in 1ms (Views: 0.5ms)
2258
+ Processing by TestController#render_widget_with_extra_controller_variables as HTML
2259
+ Completed 500 Internal Server Error in 1ms
2260
+ Processing by TestController#render_with_content_method as HTML
2261
+ Completed 200 OK in 1ms (Views: 0.5ms)
2262
+ Processing by TestController#render_with_rails_options as HTML
2263
+ Completed 500 Internal Server Error in 1ms (Views: 0.4ms)
2264
+ Processing by TestController#render_template_with_implicit_assigns as HTML
2265
+ Rendered test/implicit_assigns.html.rb (1.4ms)
2266
+ Completed 200 OK in 3ms (Views: 3.1ms)
2267
+ Processing by TestController#render_template_with_protected_instance_variable as HTML
2268
+ Rendered test/protected_instance_variable.html.rb (1.5ms)
2269
+ Completed 200 OK in 4ms (Views: 3.2ms)
2270
+ Processing by TestController#render_bare_rb as HTML
2271
+ Rendered test/bare.rb (2.4ms)
2272
+ Completed 200 OK in 4ms (Views: 3.9ms)
2273
+ Processing by TestController#render_template_with_excess_variables as HTML
2274
+ Rendered test/render_default.html.rb (1.2ms)
2275
+ Completed 200 OK in 3ms (Views: 2.7ms)
2276
+ Processing by TestController#render_needs_template_with_excess_variables as HTML
2277
+ Rendered test/needs.html.rb (1.1ms)
2278
+ Completed 500 Internal Server Error in 3ms
2279
+ Processing by TestController#render_needs_template_with_excess_variables_and_ignoring_extras as HTML
2280
+ Rendered test/needs.html.rb (0.2ms)
2281
+ Completed 200 OK in 1ms (Views: 0.7ms)
2282
+ Processing by TestController#render_needs_subclass_template_with_excess_variables_and_ignoring_extras as HTML
2283
+ Rendered test/needs_subclass.html.rb (1.3ms)
2284
+ Completed 200 OK in 3ms (Views: 3.0ms)
2285
+ Processing by TestController#render_template_with_partial as HTML
2286
+ Rendered test/_erector.rb (1.9ms)
2287
+ Rendered test/render_partial.html.rb (4.2ms)
2288
+ Completed 200 OK in 6ms (Views: 5.6ms)
2289
+ Processing by TestController#render_erb_from_erector as HTML
2290
+ Rendered test/_erb.erb (0.4ms)
2291
+ Rendered test/erb_from_erector.html.rb (2.6ms)
2292
+ Completed 200 OK in 4ms (Views: 4.0ms)
2293
+ Processing by TestController#render_erector_from_erb as HTML
2294
+ Rendered test/_erector.rb (0.2ms)
2295
+ Rendered test/erector_from_erb.html.erb (0.8ms)
2296
+ Completed 200 OK in 2ms (Views: 2.2ms)
2297
+ Processing by TestController#render_erector_with_locals_from_erb as HTML
2298
+ Rendered test/_partial_with_locals.rb (2.2ms)
2299
+ Rendered test/erector_with_locals_from_erb.html.erb (3.9ms)
2300
+ Completed 200 OK in 6ms (Views: 5.3ms)
2301
+ Processing by TestController#render_erector_with_locals_from_erb_defaulted as HTML
2302
+ Rendered test/_partial_with_locals.rb (0.5ms)
2303
+ Rendered test/erector_with_locals_from_erb.html.erb (0.7ms)
2304
+ Completed 200 OK in 1ms (Views: 1.1ms)
2305
+ Processing by TestController#render_erector_with_locals_from_erb_override as HTML
2306
+ Rendered test/_partial_with_locals.rb (0.2ms)
2307
+ Rendered test/erector_with_locals_from_erb.html.erb (0.4ms)
2308
+ Completed 200 OK in 1ms (Views: 0.8ms)
2309
+ Processing by TestController#render_erector_with_locals_from_erb_not_needed as HTML
2310
+ Rendered test/_partial_with_locals.rb (0.6ms)
2311
+ Rendered test/erector_with_locals_from_erb.html.erb (0.8ms)
2312
+ Completed 500 Internal Server Error in 1ms
2313
+ Processing by TestController#render_erector_partial_with_unneeded_controller_variables as HTML
2314
+ Rendered test/_partial_with_locals.rb (0.2ms)
2315
+ Rendered test/erector_with_locals_from_erb.html.erb (0.4ms)
2316
+ Completed 200 OK in 1ms (Views: 0.7ms)
2317
+ Processing by TestController#render_erector_partial_without_controller_variables as HTML
2318
+ Rendered test/_partial_with_locals.rb (0.2ms)
2319
+ Rendered test/erector_with_locals_from_erb.html.erb (0.3ms)
2320
+ Completed 200 OK in 1ms (Views: 0.7ms)
2321
+ Processing by TestController#render_default as HTML
2322
+ Rendered test/render_default.html.rb (0.5ms)
2323
+ Completed 200 OK in 2ms (Views: 1.9ms)
2324
+ Processing by TestController#render_with_needs as HTML
2325
+ Completed 200 OK in 1ms (Views: 0.4ms)
2326
+ Rendered text template (0.0ms)
2327
+ Processing by TestController#render_widget_class as HTML
2328
+ Completed 200 OK in 584ms (Views: 2.4ms)
2329
+ Processing by TestController#render_widget_instance as HTML
2330
+ Completed 200 OK in 1ms (Views: 0.4ms)
2331
+ Processing by TestController#render_widget_with_ignored_controller_variables as HTML
2332
+ Completed 200 OK in 1ms (Views: 0.4ms)
2333
+ Processing by TestController#render_widget_with_extra_controller_variables as HTML
2334
+ Completed 500 Internal Server Error in 1ms
2335
+ Processing by TestController#render_with_content_method as HTML
2336
+ Completed 200 OK in 1ms (Views: 0.4ms)
2337
+ Processing by TestController#render_with_rails_options as HTML
2338
+ Completed 500 Internal Server Error in 1ms (Views: 0.3ms)
2339
+ Processing by TestController#render_template_with_implicit_assigns as HTML
2340
+ Rendered test/implicit_assigns.html.rb (1.3ms)
2341
+ Completed 200 OK in 3ms (Views: 2.8ms)
2342
+ Processing by TestController#render_template_with_protected_instance_variable as HTML
2343
+ Rendered test/protected_instance_variable.html.rb (1.1ms)
2344
+ Completed 200 OK in 3ms (Views: 2.6ms)
2345
+ Processing by TestController#render_bare_rb as HTML
2346
+ Rendered test/bare.rb (2.1ms)
2347
+ Completed 200 OK in 4ms (Views: 3.4ms)
2348
+ Processing by TestController#render_template_with_excess_variables as HTML
2349
+ Rendered test/render_default.html.rb (1.1ms)
2350
+ Completed 200 OK in 3ms (Views: 2.6ms)
2351
+ Processing by TestController#render_needs_template_with_excess_variables as HTML
2352
+ Rendered test/needs.html.rb (1.0ms)
2353
+ Completed 500 Internal Server Error in 3ms
2354
+ Processing by TestController#render_needs_template_with_excess_variables_and_ignoring_extras as HTML
2355
+ Rendered test/needs.html.rb (0.2ms)
2356
+ Completed 200 OK in 1ms (Views: 0.7ms)
2357
+ Processing by TestController#render_needs_subclass_template_with_excess_variables_and_ignoring_extras as HTML
2358
+ Rendered test/needs_subclass.html.rb (1.3ms)
2359
+ Completed 200 OK in 3ms (Views: 2.7ms)
2360
+ Processing by TestController#render_template_with_partial as HTML
2361
+ Rendered test/_erector.rb (1.9ms)
2362
+ Rendered test/render_partial.html.rb (4.0ms)
2363
+ Completed 200 OK in 6ms (Views: 5.5ms)
2364
+ Processing by TestController#render_erb_from_erector as HTML
2365
+ Rendered test/_erb.erb (0.5ms)
2366
+ Rendered test/erb_from_erector.html.rb (2.7ms)
2367
+ Completed 200 OK in 4ms (Views: 4.1ms)
2368
+ Processing by TestController#render_erector_from_erb as HTML
2369
+ Rendered test/_erector.rb (0.2ms)
2370
+ Rendered test/erector_from_erb.html.erb (0.8ms)
2371
+ Completed 200 OK in 2ms (Views: 2.2ms)
2372
+ Processing by TestController#render_erector_with_locals_from_erb as HTML
2373
+ Rendered test/_partial_with_locals.rb (2.1ms)
2374
+ Rendered test/erector_with_locals_from_erb.html.erb (3.8ms)
2375
+ Completed 200 OK in 5ms (Views: 5.2ms)
2376
+ Processing by TestController#render_erector_with_locals_from_erb_defaulted as HTML
2377
+ Rendered test/_partial_with_locals.rb (0.5ms)
2378
+ Rendered test/erector_with_locals_from_erb.html.erb (0.7ms)
2379
+ Completed 200 OK in 1ms (Views: 1.2ms)
2380
+ Processing by TestController#render_erector_with_locals_from_erb_override as HTML
2381
+ Rendered test/_partial_with_locals.rb (0.2ms)
2382
+ Rendered test/erector_with_locals_from_erb.html.erb (0.4ms)
2383
+ Completed 200 OK in 1ms (Views: 0.8ms)
2384
+ Processing by TestController#render_erector_with_locals_from_erb_not_needed as HTML
2385
+ Rendered test/_partial_with_locals.rb (0.7ms)
2386
+ Rendered test/erector_with_locals_from_erb.html.erb (0.9ms)
2387
+ Completed 500 Internal Server Error in 1ms
2388
+ Processing by TestController#render_erector_partial_with_unneeded_controller_variables as HTML
2389
+ Rendered test/_partial_with_locals.rb (0.2ms)
2390
+ Rendered test/erector_with_locals_from_erb.html.erb (0.4ms)
2391
+ Completed 200 OK in 1ms (Views: 0.8ms)
2392
+ Processing by TestController#render_erector_partial_without_controller_variables as HTML
2393
+ Rendered test/_partial_with_locals.rb (0.2ms)
2394
+ Rendered test/erector_with_locals_from_erb.html.erb (0.4ms)
2395
+ Completed 200 OK in 1ms (Views: 0.8ms)
2396
+ Processing by TestController#render_default as HTML
2397
+ Rendered test/render_default.html.rb (0.5ms)
2398
+ Completed 200 OK in 2ms (Views: 1.9ms)
2399
+ Processing by TestController#render_with_needs as HTML
2400
+ Completed 200 OK in 1ms (Views: 0.4ms)
2401
+ Rendered text template (0.0ms)
2402
+ Processing by TestController#render_widget_class as HTML
2403
+ Completed 200 OK in 575ms (Views: 2.8ms)
2404
+ Processing by TestController#render_widget_instance as HTML
2405
+ Completed 200 OK in 1ms (Views: 0.4ms)
2406
+ Processing by TestController#render_widget_with_ignored_controller_variables as HTML
2407
+ Completed 200 OK in 1ms (Views: 0.5ms)
2408
+ Processing by TestController#render_widget_with_extra_controller_variables as HTML
2409
+ Completed 500 Internal Server Error in 1ms
2410
+ Processing by TestController#render_with_content_method as HTML
2411
+ Completed 200 OK in 1ms (Views: 0.4ms)
2412
+ Processing by TestController#render_with_rails_options as HTML
2413
+ Completed 500 Internal Server Error in 1ms (Views: 0.4ms)
2414
+ Processing by TestController#render_template_with_implicit_assigns as HTML
2415
+ Rendered test/implicit_assigns.html.rb (1.2ms)
2416
+ Completed 200 OK in 3ms (Views: 3.1ms)
2417
+ Processing by TestController#render_template_with_protected_instance_variable as HTML
2418
+ Rendered test/protected_instance_variable.html.rb (1.0ms)
2419
+ Completed 200 OK in 3ms (Views: 2.8ms)
2420
+ Processing by TestController#render_bare_rb as HTML
2421
+ Rendered test/bare.rb (2.0ms)
2422
+ Completed 200 OK in 4ms (Views: 3.7ms)
2423
+ Processing by TestController#render_template_with_excess_variables as HTML
2424
+ Rendered test/render_default.html.rb (1.1ms)
2425
+ Completed 200 OK in 3ms (Views: 2.8ms)
2426
+ Processing by TestController#render_needs_template_with_excess_variables as HTML
2427
+ Rendered test/needs.html.rb (0.9ms)
2428
+ Completed 500 Internal Server Error in 3ms
2429
+ Processing by TestController#render_needs_template_with_excess_variables_and_ignoring_extras as HTML
2430
+ Rendered test/needs.html.rb (0.2ms)
2431
+ Completed 200 OK in 1ms (Views: 0.6ms)
2432
+ Processing by TestController#render_needs_subclass_template_with_excess_variables_and_ignoring_extras as HTML
2433
+ Rendered test/needs_subclass.html.rb (1.2ms)
2434
+ Completed 200 OK in 3ms (Views: 2.9ms)
2435
+ Processing by TestController#render_template_with_partial as HTML
2436
+ Rendered test/_erector.rb (1.9ms)
2437
+ Rendered test/render_partial.html.rb (4.4ms)
2438
+ Completed 200 OK in 6ms (Views: 6.1ms)
2439
+ Processing by TestController#render_erb_from_erector as HTML
2440
+ Rendered test/_erb.erb (0.5ms)
2441
+ Rendered test/erb_from_erector.html.rb (2.9ms)
2442
+ Completed 200 OK in 5ms (Views: 4.6ms)
2443
+ Processing by TestController#render_erector_from_erb as HTML
2444
+ Rendered test/_erector.rb (0.2ms)
2445
+ Rendered test/erector_from_erb.html.erb (0.8ms)
2446
+ Completed 200 OK in 3ms (Views: 2.5ms)
2447
+ Processing by TestController#render_erector_with_locals_from_erb as HTML
2448
+ Rendered test/_partial_with_locals.rb (2.1ms)
2449
+ Rendered test/erector_with_locals_from_erb.html.erb (4.0ms)
2450
+ Completed 200 OK in 6ms (Views: 5.8ms)
2451
+ Processing by TestController#render_erector_with_locals_from_erb_defaulted as HTML
2452
+ Rendered test/_partial_with_locals.rb (0.5ms)
2453
+ Rendered test/erector_with_locals_from_erb.html.erb (0.7ms)
2454
+ Completed 200 OK in 1ms (Views: 1.1ms)
2455
+ Processing by TestController#render_erector_with_locals_from_erb_override as HTML
2456
+ Rendered test/_partial_with_locals.rb (0.2ms)
2457
+ Rendered test/erector_with_locals_from_erb.html.erb (0.4ms)
2458
+ Completed 200 OK in 1ms (Views: 0.8ms)
2459
+ Processing by TestController#render_erector_with_locals_from_erb_not_needed as HTML
2460
+ Rendered test/_partial_with_locals.rb (0.7ms)
2461
+ Rendered test/erector_with_locals_from_erb.html.erb (0.9ms)
2462
+ Completed 500 Internal Server Error in 2ms
2463
+ Processing by TestController#render_erector_partial_with_unneeded_controller_variables as HTML
2464
+ Rendered test/_partial_with_locals.rb (0.2ms)
2465
+ Rendered test/erector_with_locals_from_erb.html.erb (0.4ms)
2466
+ Completed 200 OK in 1ms (Views: 0.8ms)
2467
+ Processing by TestController#render_erector_partial_without_controller_variables as HTML
2468
+ Rendered test/_partial_with_locals.rb (0.2ms)
2469
+ Rendered test/erector_with_locals_from_erb.html.erb (0.3ms)
2470
+ Completed 200 OK in 1ms (Views: 0.7ms)
2471
+ Processing by TestController#render_default as HTML
2472
+ Rendered test/render_default.html.rb (0.5ms)
2473
+ Completed 200 OK in 2ms (Views: 2.2ms)
2474
+ Processing by TestController#render_with_needs as HTML
2475
+ Completed 200 OK in 1ms (Views: 0.4ms)
2476
+ Rendered text template (0.0ms)
2477
+ Processing by TestController#render_widget_class as HTML
2478
+ Completed 200 OK in 567ms (Views: 2.7ms)
2479
+ Processing by TestController#render_widget_instance as HTML
2480
+ Completed 200 OK in 1ms (Views: 0.4ms)
2481
+ Processing by TestController#render_widget_with_ignored_controller_variables as HTML
2482
+ Completed 200 OK in 1ms (Views: 0.5ms)
2483
+ Processing by TestController#render_widget_with_extra_controller_variables as HTML
2484
+ Completed 500 Internal Server Error in 1ms
2485
+ Processing by TestController#render_with_content_method as HTML
2486
+ Completed 200 OK in 1ms (Views: 0.4ms)
2487
+ Processing by TestController#render_with_rails_options as HTML
2488
+ Completed 500 Internal Server Error in 1ms (Views: 0.4ms)
2489
+ Processing by TestController#render_template_with_implicit_assigns as HTML
2490
+ Rendered test/implicit_assigns.html.rb (1.3ms)
2491
+ Completed 200 OK in 3ms (Views: 3.2ms)
2492
+ Processing by TestController#render_template_with_protected_instance_variable as HTML
2493
+ Rendered test/protected_instance_variable.html.rb (1.1ms)
2494
+ Completed 200 OK in 3ms (Views: 2.9ms)
2495
+ Processing by TestController#render_bare_rb as HTML
2496
+ Rendered test/bare.rb (2.1ms)
2497
+ Completed 200 OK in 4ms (Views: 3.7ms)
2498
+ Processing by TestController#render_template_with_excess_variables as HTML
2499
+ Rendered test/render_default.html.rb (1.1ms)
2500
+ Completed 200 OK in 3ms (Views: 2.9ms)
2501
+ Processing by TestController#render_needs_template_with_excess_variables as HTML
2502
+ Rendered test/needs.html.rb (1.0ms)
2503
+ Completed 500 Internal Server Error in 3ms
2504
+ Processing by TestController#render_needs_template_with_excess_variables_and_ignoring_extras as HTML
2505
+ Rendered test/needs.html.rb (0.2ms)
2506
+ Completed 200 OK in 1ms (Views: 0.6ms)
2507
+ Processing by TestController#render_needs_subclass_template_with_excess_variables_and_ignoring_extras as HTML
2508
+ Rendered test/needs_subclass.html.rb (1.2ms)
2509
+ Completed 200 OK in 3ms (Views: 3.0ms)
2510
+ Processing by TestController#render_template_with_partial as HTML
2511
+ Rendered test/_erector.rb (1.9ms)
2512
+ Rendered test/render_partial.html.rb (4.4ms)
2513
+ Completed 200 OK in 6ms (Views: 6.2ms)
2514
+ Processing by TestController#render_erb_from_erector as HTML
2515
+ Rendered test/_erb.erb (0.4ms)
2516
+ Rendered test/erb_from_erector.html.rb (2.9ms)
2517
+ Completed 200 OK in 5ms (Views: 4.6ms)
2518
+ Processing by TestController#render_erector_from_erb as HTML
2519
+ Rendered test/_erector.rb (0.2ms)
2520
+ Rendered test/erector_from_erb.html.erb (0.7ms)
2521
+ Completed 200 OK in 3ms (Views: 2.4ms)
2522
+ Processing by TestController#render_erector_with_locals_from_erb as HTML
2523
+ Rendered test/_partial_with_locals.rb (2.0ms)
2524
+ Rendered test/erector_with_locals_from_erb.html.erb (3.8ms)
2525
+ Completed 200 OK in 6ms (Views: 5.5ms)
2526
+ Processing by TestController#render_erector_with_locals_from_erb_defaulted as HTML
2527
+ Rendered test/_partial_with_locals.rb (0.5ms)
2528
+ Rendered test/erector_with_locals_from_erb.html.erb (0.7ms)
2529
+ Completed 200 OK in 1ms (Views: 1.1ms)
2530
+ Processing by TestController#render_erector_with_locals_from_erb_override as HTML
2531
+ Rendered test/_partial_with_locals.rb (0.2ms)
2532
+ Rendered test/erector_with_locals_from_erb.html.erb (0.4ms)
2533
+ Completed 200 OK in 1ms (Views: 0.7ms)
2534
+ Processing by TestController#render_erector_with_locals_from_erb_not_needed as HTML
2535
+ Rendered test/_partial_with_locals.rb (0.7ms)
2536
+ Rendered test/erector_with_locals_from_erb.html.erb (0.9ms)
2537
+ Completed 500 Internal Server Error in 2ms
2538
+ Processing by TestController#render_erector_partial_with_unneeded_controller_variables as HTML
2539
+ Rendered test/_partial_with_locals.rb (0.2ms)
2540
+ Rendered test/erector_with_locals_from_erb.html.erb (0.5ms)
2541
+ Completed 200 OK in 1ms (Views: 0.9ms)
2542
+ Processing by TestController#render_erector_partial_without_controller_variables as HTML
2543
+ Rendered test/_partial_with_locals.rb (0.2ms)
2544
+ Rendered test/erector_with_locals_from_erb.html.erb (0.4ms)
2545
+ Completed 200 OK in 1ms (Views: 0.8ms)
2546
+ Processing by TestController#render_default as HTML
2547
+ Rendered test/render_default.html.rb (0.5ms)
2548
+ Completed 200 OK in 2ms (Views: 2.2ms)
2549
+ Processing by TestController#render_with_needs as HTML
2550
+ Completed 200 OK in 1ms (Views: 0.4ms)
2551
+ Rendered text template (0.0ms)
2552
+ Processing by TestController#render_widget_class as HTML
2553
+ Completed 200 OK in 186ms (Views: 3.3ms)
2554
+ Processing by TestController#render_widget_instance as HTML
2555
+ Completed 200 OK in 1ms (Views: 0.4ms)
2556
+ Processing by TestController#render_widget_with_ignored_controller_variables as HTML
2557
+ Completed 200 OK in 1ms (Views: 0.5ms)
2558
+ Processing by TestController#render_widget_with_extra_controller_variables as HTML
2559
+ Completed 500 Internal Server Error in 1ms
2560
+ Processing by TestController#render_with_content_method as HTML
2561
+ Completed 200 OK in 1ms (Views: 0.4ms)
2562
+ Processing by TestController#render_with_rails_options as HTML
2563
+ Completed 500 Internal Server Error in 1ms (Views: 0.4ms)
2564
+ Processing by TestController#render_template_with_implicit_assigns as HTML
2565
+ Rendered test/implicit_assigns.html.rb (1.0ms)
2566
+ Completed 200 OK in 3ms (Views: 3.1ms)
2567
+ Processing by TestController#render_template_with_protected_instance_variable as HTML
2568
+ Rendered test/protected_instance_variable.html.rb (0.8ms)
2569
+ Completed 200 OK in 3ms (Views: 2.8ms)
2570
+ Processing by TestController#render_bare_rb as HTML
2571
+ Rendered test/bare.rb (0.8ms)
2572
+ Completed 200 OK in 3ms (Views: 2.8ms)
2573
+ Processing by TestController#render_template_with_excess_variables as HTML
2574
+ Rendered test/render_default.html.rb (1.0ms)
2575
+ Completed 200 OK in 4ms (Views: 3.2ms)
2576
+ Processing by TestController#render_needs_template_with_excess_variables as HTML
2577
+ Rendered test/needs.html.rb (0.9ms)
2578
+ Completed 500 Internal Server Error in 3ms
2579
+ Processing by TestController#render_needs_template_with_excess_variables_and_ignoring_extras as HTML
2580
+ Rendered test/needs.html.rb (0.2ms)
2581
+ Completed 200 OK in 1ms (Views: 0.8ms)
2582
+ Processing by TestController#render_needs_subclass_template_with_excess_variables_and_ignoring_extras as HTML
2583
+ Rendered test/needs_subclass.html.rb (0.9ms)
2584
+ Completed 200 OK in 3ms (Views: 3.0ms)
2585
+ Processing by TestController#render_template_with_partial as HTML
2586
+ Rendered test/_erector.rb (0.8ms)
2587
+ Rendered test/render_partial.html.rb (3.2ms)
2588
+ Completed 200 OK in 5ms (Views: 5.2ms)
2589
+ Processing by TestController#render_erb_from_erector as HTML
2590
+ Rendered test/_erb.erb (0.3ms)
2591
+ Rendered test/erb_from_erector.html.rb (2.9ms)
2592
+ Completed 200 OK in 5ms (Views: 5.0ms)
2593
+ Processing by TestController#render_erector_from_erb as HTML
2594
+ Rendered test/_erector.rb (0.3ms)
2595
+ Rendered test/erector_from_erb.html.erb (0.8ms)
2596
+ Completed 200 OK in 3ms (Views: 2.8ms)
2597
+ Processing by TestController#render_erector_with_locals_from_erb as HTML
2598
+ Rendered test/_partial_with_locals.rb (1.0ms)
2599
+ Rendered test/erector_with_locals_from_erb.html.erb (3.0ms)
2600
+ Completed 200 OK in 5ms (Views: 5.1ms)
2601
+ Processing by TestController#render_erector_with_locals_from_erb_defaulted as HTML
2602
+ Rendered test/_partial_with_locals.rb (0.5ms)
2603
+ Rendered test/erector_with_locals_from_erb.html.erb (0.7ms)
2604
+ Completed 200 OK in 1ms (Views: 1.2ms)
2605
+ Processing by TestController#render_erector_with_locals_from_erb_override as HTML
2606
+ Rendered test/_partial_with_locals.rb (0.3ms)
2607
+ Rendered test/erector_with_locals_from_erb.html.erb (0.5ms)
2608
+ Completed 200 OK in 1ms (Views: 0.9ms)
2609
+ Processing by TestController#render_erector_with_locals_from_erb_not_needed as HTML
2610
+ Rendered test/_partial_with_locals.rb (0.5ms)
2611
+ Rendered test/erector_with_locals_from_erb.html.erb (0.8ms)
2612
+ Completed 500 Internal Server Error in 1ms
2613
+ Processing by TestController#render_erector_partial_with_unneeded_controller_variables as HTML
2614
+ Rendered test/_partial_with_locals.rb (0.3ms)
2615
+ Rendered test/erector_with_locals_from_erb.html.erb (0.5ms)
2616
+ Completed 200 OK in 1ms (Views: 0.9ms)
2617
+ Processing by TestController#render_erector_partial_without_controller_variables as HTML
2618
+ Rendered test/_partial_with_locals.rb (0.3ms)
2619
+ Rendered test/erector_with_locals_from_erb.html.erb (0.5ms)
2620
+ Completed 200 OK in 1ms (Views: 0.9ms)
2621
+ Processing by TestController#render_default as HTML
2622
+ Rendered test/render_default.html.rb (0.5ms)
2623
+ Completed 200 OK in 3ms (Views: 2.6ms)
2624
+ Processing by TestController#render_with_needs as HTML
2625
+ Completed 200 OK in 1ms (Views: 0.5ms)
2626
+ Rendered text template (0.0ms)
2627
+ Processing by TestController#render_widget_class as HTML
2628
+ Completed 200 OK in 570ms (Views: 2.8ms)
2629
+ Processing by TestController#render_widget_instance as HTML
2630
+ Completed 200 OK in 1ms (Views: 0.4ms)
2631
+ Processing by TestController#render_widget_with_ignored_controller_variables as HTML
2632
+ Completed 200 OK in 1ms (Views: 0.5ms)
2633
+ Processing by TestController#render_widget_with_extra_controller_variables as HTML
2634
+ Completed 500 Internal Server Error in 1ms
2635
+ Processing by TestController#render_with_content_method as HTML
2636
+ Completed 200 OK in 1ms (Views: 0.4ms)
2637
+ Processing by TestController#render_with_rails_options as HTML
2638
+ Completed 500 Internal Server Error in 1ms (Views: 0.4ms)
2639
+ Processing by TestController#render_template_with_implicit_assigns as HTML
2640
+ Rendered test/implicit_assigns.html.rb (1.3ms)
2641
+ Completed 200 OK in 3ms (Views: 3.1ms)
2642
+ Processing by TestController#render_template_with_protected_instance_variable as HTML
2643
+ Rendered test/protected_instance_variable.html.rb (1.1ms)
2644
+ Completed 200 OK in 3ms (Views: 2.9ms)
2645
+ Processing by TestController#render_bare_rb as HTML
2646
+ Rendered test/bare.rb (2.0ms)
2647
+ Completed 200 OK in 4ms (Views: 3.6ms)
2648
+ Processing by TestController#render_template_with_excess_variables as HTML
2649
+ Rendered test/render_default.html.rb (1.0ms)
2650
+ Completed 200 OK in 3ms (Views: 2.8ms)
2651
+ Processing by TestController#render_needs_template_with_excess_variables as HTML
2652
+ Rendered test/needs.html.rb (0.9ms)
2653
+ Completed 500 Internal Server Error in 3ms
2654
+ Processing by TestController#render_needs_template_with_excess_variables_and_ignoring_extras as HTML
2655
+ Rendered test/needs.html.rb (0.2ms)
2656
+ Completed 200 OK in 1ms (Views: 0.6ms)
2657
+ Processing by TestController#render_needs_subclass_template_with_excess_variables_and_ignoring_extras as HTML
2658
+ Rendered test/needs_subclass.html.rb (1.1ms)
2659
+ Completed 200 OK in 3ms (Views: 2.9ms)
2660
+ Processing by TestController#render_template_with_partial as HTML
2661
+ Rendered test/_erector.rb (1.9ms)
2662
+ Rendered test/render_partial.html.rb (4.3ms)
2663
+ Completed 200 OK in 6ms (Views: 6.0ms)
2664
+ Processing by TestController#render_erb_from_erector as HTML
2665
+ Rendered test/_erb.erb (0.4ms)
2666
+ Rendered test/erb_from_erector.html.rb (2.8ms)
2667
+ Completed 200 OK in 5ms (Views: 4.5ms)
2668
+ Processing by TestController#render_erector_from_erb as HTML
2669
+ Rendered test/_erector.rb (0.2ms)
2670
+ Rendered test/erector_from_erb.html.erb (0.7ms)
2671
+ Completed 200 OK in 3ms (Views: 2.4ms)
2672
+ Processing by TestController#render_erector_with_locals_from_erb as HTML
2673
+ Rendered test/_partial_with_locals.rb (2.1ms)
2674
+ Rendered test/erector_with_locals_from_erb.html.erb (3.9ms)
2675
+ Completed 200 OK in 6ms (Views: 5.7ms)
2676
+ Processing by TestController#render_erector_with_locals_from_erb_defaulted as HTML
2677
+ Rendered test/_partial_with_locals.rb (0.5ms)
2678
+ Rendered test/erector_with_locals_from_erb.html.erb (0.7ms)
2679
+ Completed 200 OK in 1ms (Views: 1.2ms)
2680
+ Processing by TestController#render_erector_with_locals_from_erb_override as HTML
2681
+ Rendered test/_partial_with_locals.rb (0.2ms)
2682
+ Rendered test/erector_with_locals_from_erb.html.erb (0.4ms)
2683
+ Completed 200 OK in 1ms (Views: 0.8ms)
2684
+ Processing by TestController#render_erector_with_locals_from_erb_not_needed as HTML
2685
+ Rendered test/_partial_with_locals.rb (0.7ms)
2686
+ Rendered test/erector_with_locals_from_erb.html.erb (0.9ms)
2687
+ Completed 500 Internal Server Error in 2ms
2688
+ Processing by TestController#render_erector_partial_with_unneeded_controller_variables as HTML
2689
+ Rendered test/_partial_with_locals.rb (0.2ms)
2690
+ Rendered test/erector_with_locals_from_erb.html.erb (0.4ms)
2691
+ Completed 200 OK in 1ms (Views: 0.8ms)
2692
+ Processing by TestController#render_erector_partial_without_controller_variables as HTML
2693
+ Rendered test/_partial_with_locals.rb (0.2ms)
2694
+ Rendered test/erector_with_locals_from_erb.html.erb (0.3ms)
2695
+ Completed 200 OK in 1ms (Views: 0.7ms)
2696
+ Processing by TestController#render_default as HTML
2697
+ Rendered test/render_default.html.rb (0.5ms)
2698
+ Completed 200 OK in 2ms (Views: 2.2ms)
2699
+ Processing by TestController#render_with_needs as HTML
2700
+ Completed 200 OK in 1ms (Views: 0.4ms)
2701
+ Rendered text template (0.0ms)
2702
+ Processing by TestController#render_widget_class as HTML
2703
+ Completed 200 OK in 184ms (Views: 3.3ms)
2704
+ Processing by TestController#render_widget_instance as HTML
2705
+ Completed 200 OK in 1ms (Views: 0.4ms)
2706
+ Processing by TestController#render_widget_with_ignored_controller_variables as HTML
2707
+ Completed 200 OK in 1ms (Views: 0.7ms)
2708
+ Processing by TestController#render_widget_with_extra_controller_variables as HTML
2709
+ Completed 500 Internal Server Error in 1ms
2710
+ Processing by TestController#render_with_content_method as HTML
2711
+ Completed 200 OK in 1ms (Views: 0.4ms)
2712
+ Processing by TestController#render_with_rails_options as HTML
2713
+ Completed 500 Internal Server Error in 1ms (Views: 0.5ms)
2714
+ Processing by TestController#render_template_with_implicit_assigns as HTML
2715
+ Rendered test/implicit_assigns.html.rb (1.3ms)
2716
+ Completed 200 OK in 4ms (Views: 3.7ms)
2717
+ Processing by TestController#render_template_with_protected_instance_variable as HTML
2718
+ Rendered test/protected_instance_variable.html.rb (1.1ms)
2719
+ Completed 200 OK in 4ms (Views: 3.8ms)
2720
+ Processing by TestController#render_bare_rb as HTML
2721
+ Rendered test/bare.rb (1.0ms)
2722
+ Completed 200 OK in 4ms (Views: 3.3ms)
2723
+ Processing by TestController#render_template_with_excess_variables as HTML
2724
+ Rendered test/render_default.html.rb (1.0ms)
2725
+ Completed 200 OK in 4ms (Views: 3.2ms)
2726
+ Processing by TestController#render_needs_template_with_excess_variables as HTML
2727
+ Rendered test/needs.html.rb (0.9ms)
2728
+ Completed 500 Internal Server Error in 3ms
2729
+ Processing by TestController#render_needs_template_with_excess_variables_and_ignoring_extras as HTML
2730
+ Rendered test/needs.html.rb (0.2ms)
2731
+ Completed 200 OK in 1ms (Views: 0.7ms)
2732
+ Processing by TestController#render_needs_subclass_template_with_excess_variables_and_ignoring_extras as HTML
2733
+ Rendered test/needs_subclass.html.rb (0.9ms)
2734
+ Completed 200 OK in 3ms (Views: 3.0ms)
2735
+ Processing by TestController#render_template_with_partial as HTML
2736
+ Rendered test/_erector.rb (0.8ms)
2737
+ Rendered test/render_partial.html.rb (3.2ms)
2738
+ Completed 200 OK in 5ms (Views: 5.2ms)
2739
+ Processing by TestController#render_erb_from_erector as HTML
2740
+ Rendered test/_erb.erb (0.3ms)
2741
+ Rendered test/erb_from_erector.html.rb (2.7ms)
2742
+ Completed 200 OK in 5ms (Views: 4.7ms)
2743
+ Processing by TestController#render_erector_from_erb as HTML
2744
+ Rendered test/_erector.rb (0.3ms)
2745
+ Rendered test/erector_from_erb.html.erb (0.8ms)
2746
+ Completed 200 OK in 3ms (Views: 2.9ms)
2747
+ Processing by TestController#render_erector_with_locals_from_erb as HTML
2748
+ Rendered test/_partial_with_locals.rb (1.0ms)
2749
+ Rendered test/erector_with_locals_from_erb.html.erb (3.0ms)
2750
+ Completed 200 OK in 5ms (Views: 5.1ms)
2751
+ Processing by TestController#render_erector_with_locals_from_erb_defaulted as HTML
2752
+ Rendered test/_partial_with_locals.rb (0.5ms)
2753
+ Rendered test/erector_with_locals_from_erb.html.erb (0.7ms)
2754
+ Completed 200 OK in 1ms (Views: 1.2ms)
2755
+ Processing by TestController#render_erector_with_locals_from_erb_override as HTML
2756
+ Rendered test/_partial_with_locals.rb (0.3ms)
2757
+ Rendered test/erector_with_locals_from_erb.html.erb (0.5ms)
2758
+ Completed 200 OK in 1ms (Views: 1.0ms)
2759
+ Processing by TestController#render_erector_with_locals_from_erb_not_needed as HTML
2760
+ Rendered test/_partial_with_locals.rb (0.6ms)
2761
+ Rendered test/erector_with_locals_from_erb.html.erb (0.8ms)
2762
+ Completed 500 Internal Server Error in 1ms
2763
+ Processing by TestController#render_erector_partial_with_unneeded_controller_variables as HTML
2764
+ Rendered test/_partial_with_locals.rb (0.3ms)
2765
+ Rendered test/erector_with_locals_from_erb.html.erb (0.5ms)
2766
+ Completed 200 OK in 1ms (Views: 0.9ms)
2767
+ Processing by TestController#render_erector_partial_without_controller_variables as HTML
2768
+ Rendered test/_partial_with_locals.rb (0.3ms)
2769
+ Rendered test/erector_with_locals_from_erb.html.erb (0.5ms)
2770
+ Completed 200 OK in 1ms (Views: 1.0ms)
2771
+ Processing by TestController#render_default as HTML
2772
+ Rendered test/render_default.html.rb (0.4ms)
2773
+ Completed 200 OK in 3ms (Views: 2.4ms)
2774
+ Processing by TestController#render_with_needs as HTML
2775
+ Completed 200 OK in 1ms (Views: 0.5ms)
2776
+ Rendered text template (0.0ms)
2777
+ Processing by TestController#render_widget_class as HTML
2778
+ Completed 200 OK in 687ms (Views: 2.5ms)
2779
+ Processing by TestController#render_widget_instance as HTML
2780
+ Completed 200 OK in 1ms (Views: 0.4ms)
2781
+ Processing by TestController#render_widget_with_ignored_controller_variables as HTML
2782
+ Completed 200 OK in 1ms (Views: 0.5ms)
2783
+ Processing by TestController#render_widget_with_extra_controller_variables as HTML
2784
+ Completed 500 Internal Server Error in 1ms
2785
+ Processing by TestController#render_with_content_method as HTML
2786
+ Completed 200 OK in 1ms (Views: 0.4ms)
2787
+ Processing by TestController#render_with_rails_options as HTML
2788
+ Completed 500 Internal Server Error in 1ms (Views: 0.5ms)
2789
+ Processing by TestController#render_template_with_implicit_assigns as HTML
2790
+ Rendered test/implicit_assigns.html.rb (1.4ms)
2791
+ Completed 200 OK in 11ms (Views: 10.5ms)
2792
+ Processing by TestController#render_template_with_protected_instance_variable as HTML
2793
+ Rendered test/protected_instance_variable.html.rb (1.2ms)
2794
+ Completed 200 OK in 3ms (Views: 3.1ms)
2795
+ Processing by TestController#render_bare_rb as HTML
2796
+ Rendered test/bare.rb (2.3ms)
2797
+ Completed 200 OK in 5ms (Views: 4.7ms)
2798
+ Processing by TestController#render_template_with_excess_variables as HTML
2799
+ Rendered test/render_default.html.rb (1.2ms)
2800
+ Completed 200 OK in 3ms (Views: 3.0ms)
2801
+ Processing by TestController#render_needs_template_with_excess_variables as HTML
2802
+ Rendered test/needs.html.rb (1.0ms)
2803
+ Completed 500 Internal Server Error in 3ms
2804
+ Processing by TestController#render_needs_template_with_excess_variables_and_ignoring_extras as HTML
2805
+ Rendered test/needs.html.rb (0.2ms)
2806
+ Completed 200 OK in 1ms (Views: 0.6ms)
2807
+ Processing by TestController#render_needs_subclass_template_with_excess_variables_and_ignoring_extras as HTML
2808
+ Rendered test/needs_subclass.html.rb (1.2ms)
2809
+ Completed 200 OK in 12ms (Views: 11.7ms)
2810
+ Processing by TestController#render_template_with_partial as HTML
2811
+ Rendered test/_erector.rb (2.5ms)
2812
+ Rendered test/render_partial.html.rb (24.2ms)
2813
+ Completed 200 OK in 26ms (Views: 25.9ms)
2814
+ Processing by TestController#render_erb_from_erector as HTML
2815
+ Rendered test/_erb.erb (0.5ms)
2816
+ Rendered test/erb_from_erector.html.rb (3.1ms)
2817
+ Completed 200 OK in 5ms (Views: 5.0ms)
2818
+ Processing by TestController#render_erector_from_erb as HTML
2819
+ Rendered test/_erector.rb (0.2ms)
2820
+ Rendered test/erector_from_erb.html.erb (0.9ms)
2821
+ Completed 200 OK in 3ms (Views: 2.6ms)
2822
+ Processing by TestController#render_erector_with_locals_from_erb as HTML
2823
+ Rendered test/_partial_with_locals.rb (2.1ms)
2824
+ Rendered test/erector_with_locals_from_erb.html.erb (4.4ms)
2825
+ Completed 200 OK in 6ms (Views: 6.2ms)
2826
+ Processing by TestController#render_erector_with_locals_from_erb_defaulted as HTML
2827
+ Rendered test/_partial_with_locals.rb (0.5ms)
2828
+ Rendered test/erector_with_locals_from_erb.html.erb (0.7ms)
2829
+ Completed 200 OK in 1ms (Views: 1.1ms)
2830
+ Processing by TestController#render_erector_with_locals_from_erb_override as HTML
2831
+ Rendered test/_partial_with_locals.rb (0.2ms)
2832
+ Rendered test/erector_with_locals_from_erb.html.erb (0.4ms)
2833
+ Completed 200 OK in 1ms (Views: 0.8ms)
2834
+ Processing by TestController#render_erector_with_locals_from_erb_not_needed as HTML
2835
+ Rendered test/_partial_with_locals.rb (0.6ms)
2836
+ Rendered test/erector_with_locals_from_erb.html.erb (0.8ms)
2837
+ Completed 500 Internal Server Error in 1ms
2838
+ Processing by TestController#render_erector_partial_with_unneeded_controller_variables as HTML
2839
+ Rendered test/_partial_with_locals.rb (0.2ms)
2840
+ Rendered test/erector_with_locals_from_erb.html.erb (0.4ms)
2841
+ Completed 200 OK in 1ms (Views: 0.7ms)
2842
+ Processing by TestController#render_erector_partial_without_controller_variables as HTML
2843
+ Rendered test/_partial_with_locals.rb (0.2ms)
2844
+ Rendered test/erector_with_locals_from_erb.html.erb (0.3ms)
2845
+ Completed 200 OK in 1ms (Views: 0.7ms)
2846
+ Processing by TestController#render_default as HTML
2847
+ Rendered test/render_default.html.rb (0.5ms)
2848
+ Completed 200 OK in 2ms (Views: 1.9ms)
2849
+ Processing by TestController#render_with_needs as HTML
2850
+ Completed 200 OK in 1ms (Views: 0.4ms)
2851
+ Rendered text template (0.0ms)
2852
+ Processing by TestController#render_widget_class as HTML
2853
+ Completed 200 OK in 736ms (Views: 32.0ms)
2854
+ Processing by TestController#render_widget_instance as HTML
2855
+ Completed 200 OK in 1ms (Views: 0.4ms)
2856
+ Processing by TestController#render_widget_with_ignored_controller_variables as HTML
2857
+ Completed 200 OK in 1ms (Views: 0.5ms)
2858
+ Processing by TestController#render_widget_with_extra_controller_variables as HTML
2859
+ Completed 500 Internal Server Error in 1ms
2860
+ Processing by TestController#render_with_content_method as HTML
2861
+ Completed 200 OK in 1ms (Views: 0.4ms)
2862
+ Processing by TestController#render_with_rails_options as HTML
2863
+ Completed 500 Internal Server Error in 1ms (Views: 0.5ms)
2864
+ Processing by TestController#render_template_with_implicit_assigns as HTML
2865
+ Rendered test/implicit_assigns.html.rb (2.0ms)
2866
+ Completed 200 OK in 6ms (Views: 5.4ms)
2867
+ Processing by TestController#render_template_with_protected_instance_variable as HTML
2868
+ Rendered test/protected_instance_variable.html.rb (1.3ms)
2869
+ Completed 200 OK in 5ms (Views: 4.2ms)
2870
+ Processing by TestController#render_bare_rb as HTML
2871
+ Rendered test/bare.rb (2.2ms)
2872
+ Completed 200 OK in 24ms (Views: 23.8ms)
2873
+ Processing by TestController#render_template_with_excess_variables as HTML
2874
+ Rendered test/render_default.html.rb (1.3ms)
2875
+ Completed 200 OK in 48ms (Views: 47.1ms)
2876
+ Processing by TestController#render_needs_template_with_excess_variables as HTML
2877
+ Rendered test/needs.html.rb (1.0ms)
2878
+ Completed 500 Internal Server Error in 3ms
2879
+ Processing by TestController#render_needs_template_with_excess_variables_and_ignoring_extras as HTML
2880
+ Rendered test/needs.html.rb (0.2ms)
2881
+ Completed 200 OK in 1ms (Views: 0.6ms)
2882
+ Processing by TestController#render_needs_subclass_template_with_excess_variables_and_ignoring_extras as HTML
2883
+ Rendered test/needs_subclass.html.rb (1.4ms)
2884
+ Completed 200 OK in 35ms (Views: 35.0ms)
2885
+ Processing by TestController#render_template_with_partial as HTML
2886
+ Rendered test/_erector.rb (2.1ms)
2887
+ Rendered test/render_partial.html.rb (13.4ms)
2888
+ Completed 200 OK in 42ms (Views: 42.1ms)
2889
+ Processing by TestController#render_erb_from_erector as HTML
2890
+ Rendered test/_erb.erb (0.6ms)
2891
+ Rendered test/erb_from_erector.html.rb (28.9ms)
2892
+ Completed 200 OK in 115ms (Views: 114.5ms)
2893
+ Processing by TestController#render_erector_from_erb as HTML
2894
+ Rendered test/_erector.rb (0.2ms)
2895
+ Rendered test/erector_from_erb.html.erb (0.9ms)
2896
+ Completed 200 OK in 12ms (Views: 12.0ms)
2897
+ Processing by TestController#render_erector_with_locals_from_erb as HTML
2898
+ Rendered test/_partial_with_locals.rb (2.3ms)
2899
+ Rendered test/erector_with_locals_from_erb.html.erb (9.0ms)
2900
+ Completed 200 OK in 12ms (Views: 11.8ms)
2901
+ Processing by TestController#render_erector_with_locals_from_erb_defaulted as HTML
2902
+ Rendered test/_partial_with_locals.rb (0.6ms)
2903
+ Rendered test/erector_with_locals_from_erb.html.erb (0.8ms)
2904
+ Completed 200 OK in 2ms (Views: 1.3ms)
2905
+ Processing by TestController#render_erector_with_locals_from_erb_override as HTML
2906
+ Rendered test/_partial_with_locals.rb (0.2ms)
2907
+ Rendered test/erector_with_locals_from_erb.html.erb (0.5ms)
2908
+ Completed 200 OK in 1ms (Views: 1.0ms)
2909
+ Processing by TestController#render_erector_with_locals_from_erb_not_needed as HTML
2910
+ Rendered test/_partial_with_locals.rb (0.7ms)
2911
+ Rendered test/erector_with_locals_from_erb.html.erb (1.0ms)
2912
+ Completed 500 Internal Server Error in 2ms
2913
+ Processing by TestController#render_erector_partial_with_unneeded_controller_variables as HTML
2914
+ Rendered test/_partial_with_locals.rb (0.2ms)
2915
+ Rendered test/erector_with_locals_from_erb.html.erb (0.4ms)
2916
+ Completed 200 OK in 1ms (Views: 0.9ms)
2917
+ Processing by TestController#render_erector_partial_without_controller_variables as HTML
2918
+ Rendered test/_partial_with_locals.rb (0.2ms)
2919
+ Rendered test/erector_with_locals_from_erb.html.erb (0.5ms)
2920
+ Completed 200 OK in 1ms (Views: 1.0ms)
2921
+ Processing by TestController#render_default as HTML
2922
+ Rendered test/render_default.html.rb (0.6ms)
2923
+ Completed 200 OK in 17ms (Views: 16.7ms)
2924
+ Processing by TestController#render_with_needs as HTML
2925
+ Completed 200 OK in 1ms (Views: 0.5ms)
2926
+ Rendered text template (0.0ms)
2927
+ Processing by TestController#render_widget_class as HTML
2928
+ Completed 200 OK in 610ms (Views: 12.6ms)
2929
+ Processing by TestController#render_widget_instance as HTML
2930
+ Completed 200 OK in 1ms (Views: 0.4ms)
2931
+ Processing by TestController#render_widget_with_ignored_controller_variables as HTML
2932
+ Completed 200 OK in 1ms (Views: 0.5ms)
2933
+ Processing by TestController#render_widget_with_extra_controller_variables as HTML
2934
+ Completed 500 Internal Server Error in 1ms
2935
+ Processing by TestController#render_with_content_method as HTML
2936
+ Completed 200 OK in 1ms (Views: 0.4ms)
2937
+ Processing by TestController#render_with_rails_options as HTML
2938
+ Completed 500 Internal Server Error in 1ms (Views: 0.4ms)
2939
+ Processing by TestController#render_template_with_implicit_assigns as HTML
2940
+ Rendered test/implicit_assigns.html.rb (26.8ms)
2941
+ Completed 200 OK in 82ms (Views: 81.3ms)
2942
+ Processing by TestController#render_template_with_protected_instance_variable as HTML
2943
+ Rendered test/protected_instance_variable.html.rb (1.5ms)
2944
+ Completed 200 OK in 34ms (Views: 34.0ms)
2945
+ Processing by TestController#render_bare_rb as HTML
2946
+ Rendered test/bare.rb (2.7ms)
2947
+ Completed 200 OK in 48ms (Views: 47.9ms)
2948
+ Processing by TestController#render_template_with_excess_variables as HTML
2949
+ Rendered test/render_default.html.rb (1.5ms)
2950
+ Completed 200 OK in 140ms (Views: 139.4ms)
2951
+ Processing by TestController#render_needs_template_with_excess_variables as HTML
2952
+ Rendered test/needs.html.rb (0.9ms)
2953
+ Completed 500 Internal Server Error in 3ms
2954
+ Processing by TestController#render_needs_template_with_excess_variables_and_ignoring_extras as HTML
2955
+ Rendered test/needs.html.rb (0.2ms)
2956
+ Completed 200 OK in 1ms (Views: 0.6ms)
2957
+ Processing by TestController#render_needs_subclass_template_with_excess_variables_and_ignoring_extras as HTML
2958
+ Rendered test/needs_subclass.html.rb (1.4ms)
2959
+ Completed 200 OK in 34ms (Views: 33.3ms)
2960
+ Processing by TestController#render_template_with_partial as HTML
2961
+ Rendered test/_erector.rb (2.1ms)
2962
+ Rendered test/render_partial.html.rb (10.6ms)
2963
+ Completed 200 OK in 35ms (Views: 34.6ms)
2964
+ Processing by TestController#render_erb_from_erector as HTML
2965
+ Rendered test/_erb.erb (0.6ms)
2966
+ Rendered test/erb_from_erector.html.rb (4.1ms)
2967
+ Completed 200 OK in 48ms (Views: 48.0ms)
2968
+ Processing by TestController#render_erector_from_erb as HTML
2969
+ Rendered test/_erector.rb (0.3ms)
2970
+ Rendered test/erector_from_erb.html.erb (1.0ms)
2971
+ Completed 200 OK in 4ms (Views: 3.2ms)
2972
+ Processing by TestController#render_erector_with_locals_from_erb as HTML
2973
+ Rendered test/_partial_with_locals.rb (2.3ms)
2974
+ Rendered test/erector_with_locals_from_erb.html.erb (62.2ms)
2975
+ Completed 200 OK in 86ms (Views: 85.3ms)
2976
+ Processing by TestController#render_erector_with_locals_from_erb_defaulted as HTML
2977
+ Rendered test/_partial_with_locals.rb (0.6ms)
2978
+ Rendered test/erector_with_locals_from_erb.html.erb (0.9ms)
2979
+ Completed 200 OK in 2ms (Views: 1.3ms)
2980
+ Processing by TestController#render_erector_with_locals_from_erb_override as HTML
2981
+ Rendered test/_partial_with_locals.rb (0.2ms)
2982
+ Rendered test/erector_with_locals_from_erb.html.erb (0.4ms)
2983
+ Completed 200 OK in 1ms (Views: 0.8ms)
2984
+ Processing by TestController#render_erector_with_locals_from_erb_not_needed as HTML
2985
+ Rendered test/_partial_with_locals.rb (0.7ms)
2986
+ Rendered test/erector_with_locals_from_erb.html.erb (0.9ms)
2987
+ Completed 500 Internal Server Error in 2ms
2988
+ Processing by TestController#render_erector_partial_with_unneeded_controller_variables as HTML
2989
+ Rendered test/_partial_with_locals.rb (0.2ms)
2990
+ Rendered test/erector_with_locals_from_erb.html.erb (0.5ms)
2991
+ Completed 200 OK in 1ms (Views: 0.9ms)
2992
+ Processing by TestController#render_erector_partial_without_controller_variables as HTML
2993
+ Rendered test/_partial_with_locals.rb (0.2ms)
2994
+ Rendered test/erector_with_locals_from_erb.html.erb (0.4ms)
2995
+ Completed 200 OK in 1ms (Views: 0.8ms)
2996
+ Processing by TestController#render_default as HTML
2997
+ Rendered test/render_default.html.rb (0.7ms)
2998
+ Completed 200 OK in 96ms (Views: 96.1ms)
2999
+ Processing by TestController#render_with_needs as HTML
3000
+ Completed 200 OK in 1ms (Views: 0.5ms)
3001
+ Rendered text template (0.0ms)
3002
+ Processing by TestController#render_widget_class as HTML
3003
+ Completed 200 OK in 732ms (Views: 47.2ms)
3004
+ Processing by TestController#render_widget_instance as HTML
3005
+ Completed 200 OK in 1ms (Views: 0.4ms)
3006
+ Processing by TestController#render_widget_with_ignored_controller_variables as HTML
3007
+ Completed 200 OK in 1ms (Views: 0.5ms)
3008
+ Processing by TestController#render_widget_with_extra_controller_variables as HTML
3009
+ Completed 500 Internal Server Error in 1ms
3010
+ Processing by TestController#render_with_content_method as HTML
3011
+ Completed 200 OK in 1ms (Views: 0.4ms)
3012
+ Processing by TestController#render_with_rails_options as HTML
3013
+ Completed 500 Internal Server Error in 1ms (Views: 0.4ms)
3014
+ Processing by TestController#render_template_with_implicit_assigns as HTML
3015
+ Rendered test/implicit_assigns.html.rb (10.4ms)
3016
+ Completed 200 OK in 55ms (Views: 55.2ms)
3017
+ Processing by TestController#render_template_with_protected_instance_variable as HTML
3018
+ Rendered test/protected_instance_variable.html.rb (1.4ms)
3019
+ Completed 200 OK in 129ms (Views: 128.9ms)
3020
+ Processing by TestController#render_bare_rb as HTML
3021
+ Rendered test/bare.rb (2.3ms)
3022
+ Completed 200 OK in 93ms (Views: 92.5ms)
3023
+ Processing by TestController#render_template_with_excess_variables as HTML
3024
+ Rendered test/render_default.html.rb (1.4ms)
3025
+ Completed 200 OK in 139ms (Views: 138.1ms)
3026
+ Processing by TestController#render_needs_template_with_excess_variables as HTML
3027
+ Rendered test/needs.html.rb (1.1ms)
3028
+ Completed 500 Internal Server Error in 33ms
3029
+ Processing by TestController#render_needs_template_with_excess_variables_and_ignoring_extras as HTML
3030
+ Rendered test/needs.html.rb (0.2ms)
3031
+ Completed 200 OK in 1ms (Views: 0.6ms)
3032
+ Processing by TestController#render_needs_subclass_template_with_excess_variables_and_ignoring_extras as HTML
3033
+ Rendered test/needs_subclass.html.rb (1.4ms)
3034
+ Completed 200 OK in 141ms (Views: 140.4ms)
3035
+ Processing by TestController#render_template_with_partial as HTML
3036
+ Rendered test/_erector.rb (2.1ms)
3037
+ Rendered test/render_partial.html.rb (111.4ms)
3038
+ Completed 200 OK in 261ms (Views: 260.9ms)
3039
+ Processing by TestController#render_erb_from_erector as HTML
3040
+ Rendered test/_erb.erb (0.6ms)
3041
+ Rendered test/erb_from_erector.html.rb (133.1ms)
3042
+ Completed 200 OK in 243ms (Views: 242.4ms)
3043
+ Processing by TestController#render_erector_from_erb as HTML
3044
+ Rendered test/_erector.rb (0.3ms)
3045
+ Rendered test/erector_from_erb.html.erb (1.1ms)
3046
+ Completed 200 OK in 116ms (Views: 115.7ms)
3047
+ Processing by TestController#render_erector_with_locals_from_erb as HTML
3048
+ Rendered test/_partial_with_locals.rb (2.3ms)
3049
+ Rendered test/erector_with_locals_from_erb.html.erb (141.7ms)
3050
+ Completed 200 OK in 295ms (Views: 294.7ms)
3051
+ Processing by TestController#render_erector_with_locals_from_erb_defaulted as HTML
3052
+ Rendered test/_partial_with_locals.rb (0.5ms)
3053
+ Rendered test/erector_with_locals_from_erb.html.erb (0.8ms)
3054
+ Completed 200 OK in 2ms (Views: 1.2ms)
3055
+ Processing by TestController#render_erector_with_locals_from_erb_override as HTML
3056
+ Rendered test/_partial_with_locals.rb (0.2ms)
3057
+ Rendered test/erector_with_locals_from_erb.html.erb (0.4ms)
3058
+ Completed 200 OK in 1ms (Views: 0.8ms)
3059
+ Processing by TestController#render_erector_with_locals_from_erb_not_needed as HTML
3060
+ Rendered test/_partial_with_locals.rb (0.6ms)
3061
+ Rendered test/erector_with_locals_from_erb.html.erb (0.8ms)
3062
+ Completed 500 Internal Server Error in 1ms
3063
+ Processing by TestController#render_erector_partial_with_unneeded_controller_variables as HTML
3064
+ Rendered test/_partial_with_locals.rb (0.2ms)
3065
+ Rendered test/erector_with_locals_from_erb.html.erb (0.4ms)
3066
+ Completed 200 OK in 1ms (Views: 0.8ms)
3067
+ Processing by TestController#render_erector_partial_without_controller_variables as HTML
3068
+ Rendered test/_partial_with_locals.rb (0.2ms)
3069
+ Rendered test/erector_with_locals_from_erb.html.erb (0.4ms)
3070
+ Completed 200 OK in 1ms (Views: 0.8ms)
3071
+ Processing by TestController#render_default as HTML
3072
+ Rendered test/render_default.html.rb (0.7ms)
3073
+ Completed 200 OK in 40ms (Views: 39.6ms)
3074
+ Processing by TestController#render_with_needs as HTML
3075
+ Completed 200 OK in 1ms (Views: 0.4ms)
3076
+ Rendered text template (0.0ms)
3077
+ Processing by TestController#render_widget_class as HTML
3078
+ Completed 200 OK in 610ms (Views: 2.5ms)
3079
+ Processing by TestController#render_widget_instance as HTML
3080
+ Completed 200 OK in 1ms (Views: 0.4ms)
3081
+ Processing by TestController#render_widget_with_ignored_controller_variables as HTML
3082
+ Completed 200 OK in 1ms (Views: 0.5ms)
3083
+ Processing by TestController#render_widget_with_extra_controller_variables as HTML
3084
+ Completed 500 Internal Server Error in 1ms
3085
+ Processing by TestController#render_with_content_method as HTML
3086
+ Completed 200 OK in 1ms (Views: 0.4ms)
3087
+ Processing by TestController#render_with_rails_options as HTML
3088
+ Completed 500 Internal Server Error in 1ms (Views: 0.3ms)
3089
+ Processing by TestController#render_template_with_implicit_assigns as HTML
3090
+ Rendered test/implicit_assigns.html.rb (1.3ms)
3091
+ Completed 200 OK in 9ms (Views: 8.9ms)
3092
+ Processing by TestController#render_template_with_protected_instance_variable as HTML
3093
+ Rendered test/protected_instance_variable.html.rb (1.0ms)
3094
+ Completed 200 OK in 3ms (Views: 3.1ms)
3095
+ Processing by TestController#render_bare_rb as HTML
3096
+ Rendered test/bare.rb (2.1ms)
3097
+ Completed 200 OK in 4ms (Views: 3.9ms)
3098
+ Processing by TestController#render_template_with_excess_variables as HTML
3099
+ Rendered test/render_default.html.rb (1.2ms)
3100
+ Completed 200 OK in 3ms (Views: 3.0ms)
3101
+ Processing by TestController#render_needs_template_with_excess_variables as HTML
3102
+ Rendered test/needs.html.rb (1.0ms)
3103
+ Completed 500 Internal Server Error in 3ms
3104
+ Processing by TestController#render_needs_template_with_excess_variables_and_ignoring_extras as HTML
3105
+ Rendered test/needs.html.rb (0.2ms)
3106
+ Completed 200 OK in 1ms (Views: 0.6ms)
3107
+ Processing by TestController#render_needs_subclass_template_with_excess_variables_and_ignoring_extras as HTML
3108
+ Rendered test/needs_subclass.html.rb (1.4ms)
3109
+ Completed 200 OK in 24ms (Views: 23.7ms)
3110
+ Processing by TestController#render_template_with_partial as HTML
3111
+ Rendered test/_erector.rb (2.5ms)
3112
+ Rendered test/render_partial.html.rb (11.5ms)
3113
+ Completed 200 OK in 14ms (Views: 13.4ms)
3114
+ Processing by TestController#render_erb_from_erector as HTML
3115
+ Rendered test/_erb.erb (0.5ms)
3116
+ Rendered test/erb_from_erector.html.rb (8.2ms)
3117
+ Completed 200 OK in 31ms (Views: 31.1ms)
3118
+ Processing by TestController#render_erector_from_erb as HTML
3119
+ Rendered test/_erector.rb (0.3ms)
3120
+ Rendered test/erector_from_erb.html.erb (1.1ms)
3121
+ Completed 200 OK in 13ms (Views: 12.6ms)
3122
+ Processing by TestController#render_erector_with_locals_from_erb as HTML
3123
+ Rendered test/_partial_with_locals.rb (2.4ms)
3124
+ Rendered test/erector_with_locals_from_erb.html.erb (23.6ms)
3125
+ Completed 200 OK in 39ms (Views: 38.8ms)
3126
+ Processing by TestController#render_erector_with_locals_from_erb_defaulted as HTML
3127
+ Rendered test/_partial_with_locals.rb (0.5ms)
3128
+ Rendered test/erector_with_locals_from_erb.html.erb (0.8ms)
3129
+ Completed 200 OK in 2ms (Views: 1.2ms)
3130
+ Processing by TestController#render_erector_with_locals_from_erb_override as HTML
3131
+ Rendered test/_partial_with_locals.rb (0.2ms)
3132
+ Rendered test/erector_with_locals_from_erb.html.erb (0.4ms)
3133
+ Completed 200 OK in 1ms (Views: 0.8ms)
3134
+ Processing by TestController#render_erector_with_locals_from_erb_not_needed as HTML
3135
+ Rendered test/_partial_with_locals.rb (0.7ms)
3136
+ Rendered test/erector_with_locals_from_erb.html.erb (0.9ms)
3137
+ Completed 500 Internal Server Error in 2ms
3138
+ Processing by TestController#render_erector_partial_with_unneeded_controller_variables as HTML
3139
+ Rendered test/_partial_with_locals.rb (0.2ms)
3140
+ Rendered test/erector_with_locals_from_erb.html.erb (0.4ms)
3141
+ Completed 200 OK in 1ms (Views: 0.8ms)
3142
+ Processing by TestController#render_erector_partial_without_controller_variables as HTML
3143
+ Rendered test/_partial_with_locals.rb (0.2ms)
3144
+ Rendered test/erector_with_locals_from_erb.html.erb (0.3ms)
3145
+ Completed 200 OK in 1ms (Views: 0.8ms)
3146
+ Processing by TestController#render_default as HTML
3147
+ Rendered test/render_default.html.rb (0.5ms)
3148
+ Completed 200 OK in 11ms (Views: 11.0ms)
3149
+ Processing by TestController#render_with_needs as HTML
3150
+ Completed 200 OK in 1ms (Views: 0.4ms)
3151
+ Rendered text template (0.0ms)
3152
+ Processing by TestController#render_widget_class as HTML
3153
+ Completed 200 OK in 594ms (Views: 2.5ms)
3154
+ Processing by TestController#render_widget_instance as HTML
3155
+ Completed 200 OK in 1ms (Views: 0.4ms)
3156
+ Processing by TestController#render_widget_with_ignored_controller_variables as HTML
3157
+ Completed 200 OK in 1ms (Views: 0.5ms)
3158
+ Processing by TestController#render_widget_with_extra_controller_variables as HTML
3159
+ Completed 500 Internal Server Error in 1ms
3160
+ Processing by TestController#render_with_content_method as HTML
3161
+ Completed 200 OK in 1ms (Views: 0.4ms)
3162
+ Processing by TestController#render_with_rails_options as HTML
3163
+ Completed 500 Internal Server Error in 1ms (Views: 0.4ms)
3164
+ Processing by TestController#render_template_with_implicit_assigns as HTML
3165
+ Rendered test/implicit_assigns.html.rb (1.6ms)
3166
+ Completed 200 OK in 40ms (Views: 39.8ms)
3167
+ Processing by TestController#render_template_with_protected_instance_variable as HTML
3168
+ Rendered test/protected_instance_variable.html.rb (1.2ms)
3169
+ Completed 200 OK in 19ms (Views: 18.3ms)
3170
+ Processing by TestController#render_bare_rb as HTML
3171
+ Rendered test/bare.rb (2.1ms)
3172
+ Completed 200 OK in 7ms (Views: 6.8ms)
3173
+ Processing by TestController#render_template_with_excess_variables as HTML
3174
+ Rendered test/render_default.html.rb (1.3ms)
3175
+ Completed 200 OK in 6ms (Views: 5.3ms)
3176
+ Processing by TestController#render_needs_template_with_excess_variables as HTML
3177
+ Rendered test/needs.html.rb (1.0ms)
3178
+ Completed 500 Internal Server Error in 3ms
3179
+ Processing by TestController#render_needs_template_with_excess_variables_and_ignoring_extras as HTML
3180
+ Rendered test/needs.html.rb (0.2ms)
3181
+ Completed 200 OK in 1ms (Views: 0.6ms)
3182
+ Processing by TestController#render_needs_subclass_template_with_excess_variables_and_ignoring_extras as HTML
3183
+ Rendered test/needs_subclass.html.rb (1.5ms)
3184
+ Completed 200 OK in 38ms (Views: 37.7ms)
3185
+ Processing by TestController#render_template_with_partial as HTML
3186
+ Rendered test/_erector.rb (2.1ms)
3187
+ Rendered test/render_partial.html.rb (64.1ms)
3188
+ Completed 200 OK in 67ms (Views: 66.3ms)
3189
+ Processing by TestController#render_erb_from_erector as HTML
3190
+ Rendered test/_erb.erb (0.5ms)
3191
+ Rendered test/erb_from_erector.html.rb (3.0ms)
3192
+ Completed 200 OK in 30ms (Views: 29.3ms)
3193
+ Processing by TestController#render_erector_from_erb as HTML
3194
+ Rendered test/_erector.rb (0.2ms)
3195
+ Rendered test/erector_from_erb.html.erb (0.8ms)
3196
+ Completed 200 OK in 7ms (Views: 6.5ms)
3197
+ Processing by TestController#render_erector_with_locals_from_erb as HTML
3198
+ Rendered test/_partial_with_locals.rb (2.0ms)
3199
+ Rendered test/erector_with_locals_from_erb.html.erb (28.8ms)
3200
+ Completed 200 OK in 31ms (Views: 30.6ms)
3201
+ Processing by TestController#render_erector_with_locals_from_erb_defaulted as HTML
3202
+ Rendered test/_partial_with_locals.rb (0.5ms)
3203
+ Rendered test/erector_with_locals_from_erb.html.erb (0.8ms)
3204
+ Completed 200 OK in 2ms (Views: 1.3ms)
3205
+ Processing by TestController#render_erector_with_locals_from_erb_override as HTML
3206
+ Rendered test/_partial_with_locals.rb (0.2ms)
3207
+ Rendered test/erector_with_locals_from_erb.html.erb (0.5ms)
3208
+ Completed 200 OK in 1ms (Views: 0.9ms)
3209
+ Processing by TestController#render_erector_with_locals_from_erb_not_needed as HTML
3210
+ Rendered test/_partial_with_locals.rb (0.7ms)
3211
+ Rendered test/erector_with_locals_from_erb.html.erb (0.9ms)
3212
+ Completed 500 Internal Server Error in 2ms
3213
+ Processing by TestController#render_erector_partial_with_unneeded_controller_variables as HTML
3214
+ Rendered test/_partial_with_locals.rb (0.2ms)
3215
+ Rendered test/erector_with_locals_from_erb.html.erb (0.4ms)
3216
+ Completed 200 OK in 1ms (Views: 0.8ms)
3217
+ Processing by TestController#render_erector_partial_without_controller_variables as HTML
3218
+ Rendered test/_partial_with_locals.rb (0.2ms)
3219
+ Rendered test/erector_with_locals_from_erb.html.erb (0.4ms)
3220
+ Completed 200 OK in 1ms (Views: 0.8ms)
3221
+ Processing by TestController#render_default as HTML
3222
+ Rendered test/render_default.html.rb (0.5ms)
3223
+ Completed 200 OK in 2ms (Views: 2.0ms)
3224
+ Processing by TestController#render_with_needs as HTML
3225
+ Completed 200 OK in 1ms (Views: 0.4ms)
3226
+ Rendered text template (0.0ms)
3227
+ Processing by TestController#render_widget_class as HTML
3228
+ Completed 200 OK in 610ms (Views: 2.8ms)
3229
+ Processing by TestController#render_widget_instance as HTML
3230
+ Completed 200 OK in 1ms (Views: 0.4ms)
3231
+ Processing by TestController#render_widget_with_ignored_controller_variables as HTML
3232
+ Completed 200 OK in 1ms (Views: 0.5ms)
3233
+ Processing by TestController#render_widget_with_extra_controller_variables as HTML
3234
+ Completed 500 Internal Server Error in 1ms
3235
+ Processing by TestController#render_with_content_method as HTML
3236
+ Completed 200 OK in 1ms (Views: 0.4ms)
3237
+ Processing by TestController#render_with_rails_options as HTML
3238
+ Completed 500 Internal Server Error in 1ms (Views: 0.4ms)
3239
+ Processing by TestController#render_template_with_implicit_assigns as HTML
3240
+ Rendered test/implicit_assigns.html.rb (1.6ms)
3241
+ Completed 200 OK in 44ms (Views: 43.4ms)
3242
+ Processing by TestController#render_template_with_protected_instance_variable as HTML
3243
+ Rendered test/protected_instance_variable.html.rb (1.2ms)
3244
+ Completed 200 OK in 41ms (Views: 40.5ms)
3245
+ Processing by TestController#render_bare_rb as HTML
3246
+ Rendered test/bare.rb (2.3ms)
3247
+ Completed 200 OK in 109ms (Views: 108.9ms)
3248
+ Processing by TestController#render_template_with_excess_variables as HTML
3249
+ Rendered test/render_default.html.rb (1.4ms)
3250
+ Completed 200 OK in 76ms (Views: 75.4ms)
3251
+ Processing by TestController#render_needs_template_with_excess_variables as HTML
3252
+ Rendered test/needs.html.rb (1.1ms)
3253
+ Completed 500 Internal Server Error in 102ms
3254
+ Processing by TestController#render_needs_template_with_excess_variables_and_ignoring_extras as HTML
3255
+ Rendered test/needs.html.rb (0.2ms)
3256
+ Completed 200 OK in 1ms (Views: 0.6ms)
3257
+ Processing by TestController#render_needs_subclass_template_with_excess_variables_and_ignoring_extras as HTML
3258
+ Rendered test/needs_subclass.html.rb (1.5ms)
3259
+ Completed 200 OK in 29ms (Views: 28.5ms)
3260
+ Processing by TestController#render_template_with_partial as HTML
3261
+ Rendered test/_erector.rb (2.4ms)
3262
+ Rendered test/render_partial.html.rb (112.9ms)
3263
+ Completed 200 OK in 296ms (Views: 295.9ms)
3264
+ Processing by TestController#render_erb_from_erector as HTML
3265
+ Rendered test/_erb.erb (0.6ms)
3266
+ Rendered test/erb_from_erector.html.rb (37.6ms)
3267
+ Completed 200 OK in 64ms (Views: 63.8ms)
3268
+ Processing by TestController#render_erector_from_erb as HTML
3269
+ Rendered test/_erector.rb (0.2ms)
3270
+ Rendered test/erector_from_erb.html.erb (0.9ms)
3271
+ Completed 200 OK in 3ms (Views: 3.0ms)
3272
+ Processing by TestController#render_erector_with_locals_from_erb as HTML
3273
+ Rendered test/_partial_with_locals.rb (2.5ms)
3274
+ Rendered test/erector_with_locals_from_erb.html.erb (5.3ms)
3275
+ Completed 200 OK in 8ms (Views: 7.8ms)
3276
+ Processing by TestController#render_erector_with_locals_from_erb_defaulted as HTML
3277
+ Rendered test/_partial_with_locals.rb (0.6ms)
3278
+ Rendered test/erector_with_locals_from_erb.html.erb (0.8ms)
3279
+ Completed 200 OK in 2ms (Views: 1.4ms)
3280
+ Processing by TestController#render_erector_with_locals_from_erb_override as HTML
3281
+ Rendered test/_partial_with_locals.rb (0.2ms)
3282
+ Rendered test/erector_with_locals_from_erb.html.erb (0.5ms)
3283
+ Completed 200 OK in 1ms (Views: 1.0ms)
3284
+ Processing by TestController#render_erector_with_locals_from_erb_not_needed as HTML
3285
+ Rendered test/_partial_with_locals.rb (0.7ms)
3286
+ Rendered test/erector_with_locals_from_erb.html.erb (1.0ms)
3287
+ Completed 500 Internal Server Error in 2ms
3288
+ Processing by TestController#render_erector_partial_with_unneeded_controller_variables as HTML
3289
+ Rendered test/_partial_with_locals.rb (0.2ms)
3290
+ Rendered test/erector_with_locals_from_erb.html.erb (0.5ms)
3291
+ Completed 200 OK in 1ms (Views: 0.9ms)
3292
+ Processing by TestController#render_erector_partial_without_controller_variables as HTML
3293
+ Rendered test/_partial_with_locals.rb (0.2ms)
3294
+ Rendered test/erector_with_locals_from_erb.html.erb (0.4ms)
3295
+ Completed 200 OK in 1ms (Views: 0.9ms)
3296
+ Processing by TestController#render_default as HTML
3297
+ Rendered test/render_default.html.rb (0.6ms)
3298
+ Completed 200 OK in 3ms (Views: 2.5ms)
3299
+ Processing by TestController#render_with_needs as HTML
3300
+ Completed 200 OK in 1ms (Views: 0.5ms)
3301
+ Rendered text template (0.0ms)
3302
+ Processing by TestController#render_widget_class as HTML
3303
+ Completed 200 OK in 588ms (Views: 39.7ms)
3304
+ Processing by TestController#render_widget_instance as HTML
3305
+ Completed 200 OK in 1ms (Views: 0.4ms)
3306
+ Processing by TestController#render_widget_with_ignored_controller_variables as HTML
3307
+ Completed 200 OK in 1ms (Views: 0.5ms)
3308
+ Processing by TestController#render_widget_with_extra_controller_variables as HTML
3309
+ Completed 500 Internal Server Error in 1ms
3310
+ Processing by TestController#render_with_content_method as HTML
3311
+ Completed 200 OK in 1ms (Views: 0.4ms)
3312
+ Processing by TestController#render_with_rails_options as HTML
3313
+ Completed 500 Internal Server Error in 1ms (Views: 0.4ms)
3314
+ Processing by TestController#render_template_with_implicit_assigns as HTML
3315
+ Rendered test/implicit_assigns.html.rb (1.3ms)
3316
+ Completed 200 OK in 3ms (Views: 3.2ms)
3317
+ Processing by TestController#render_template_with_protected_instance_variable as HTML
3318
+ Rendered test/protected_instance_variable.html.rb (1.1ms)
3319
+ Completed 200 OK in 3ms (Views: 2.9ms)
3320
+ Processing by TestController#render_bare_rb as HTML
3321
+ Rendered test/bare.rb (1.9ms)
3322
+ Completed 200 OK in 4ms (Views: 3.5ms)
3323
+ Processing by TestController#render_template_with_excess_variables as HTML
3324
+ Rendered test/render_default.html.rb (1.0ms)
3325
+ Completed 200 OK in 3ms (Views: 2.8ms)
3326
+ Processing by TestController#render_needs_template_with_excess_variables as HTML
3327
+ Rendered test/needs.html.rb (0.9ms)
3328
+ Completed 500 Internal Server Error in 3ms
3329
+ Processing by TestController#render_needs_template_with_excess_variables_and_ignoring_extras as HTML
3330
+ Rendered test/needs.html.rb (0.2ms)
3331
+ Completed 200 OK in 1ms (Views: 0.6ms)
3332
+ Processing by TestController#render_needs_subclass_template_with_excess_variables_and_ignoring_extras as HTML
3333
+ Rendered test/needs_subclass.html.rb (1.3ms)
3334
+ Completed 200 OK in 3ms (Views: 3.1ms)
3335
+ Processing by TestController#render_template_with_partial as HTML
3336
+ Rendered test/_erector.rb (1.9ms)
3337
+ Rendered test/render_partial.html.rb (4.4ms)
3338
+ Completed 200 OK in 6ms (Views: 6.2ms)
3339
+ Processing by TestController#render_erb_from_erector as HTML
3340
+ Rendered test/_erb.erb (0.4ms)
3341
+ Rendered test/erb_from_erector.html.rb (3.2ms)
3342
+ Completed 200 OK in 5ms (Views: 4.9ms)
3343
+ Processing by TestController#render_erector_from_erb as HTML
3344
+ Rendered test/_erector.rb (0.2ms)
3345
+ Rendered test/erector_from_erb.html.erb (0.7ms)
3346
+ Completed 200 OK in 3ms (Views: 2.4ms)
3347
+ Processing by TestController#render_erector_with_locals_from_erb as HTML
3348
+ Rendered test/_partial_with_locals.rb (1.9ms)
3349
+ Rendered test/erector_with_locals_from_erb.html.erb (3.8ms)
3350
+ Completed 200 OK in 6ms (Views: 5.6ms)
3351
+ Processing by TestController#render_erector_with_locals_from_erb_defaulted as HTML
3352
+ Rendered test/_partial_with_locals.rb (0.5ms)
3353
+ Rendered test/erector_with_locals_from_erb.html.erb (0.8ms)
3354
+ Completed 200 OK in 1ms (Views: 1.2ms)
3355
+ Processing by TestController#render_erector_with_locals_from_erb_override as HTML
3356
+ Rendered test/_partial_with_locals.rb (0.2ms)
3357
+ Rendered test/erector_with_locals_from_erb.html.erb (0.4ms)
3358
+ Completed 200 OK in 1ms (Views: 0.8ms)
3359
+ Processing by TestController#render_erector_with_locals_from_erb_not_needed as HTML
3360
+ Rendered test/_partial_with_locals.rb (0.7ms)
3361
+ Rendered test/erector_with_locals_from_erb.html.erb (0.9ms)
3362
+ Completed 500 Internal Server Error in 1ms
3363
+ Processing by TestController#render_erector_partial_with_unneeded_controller_variables as HTML
3364
+ Rendered test/_partial_with_locals.rb (0.2ms)
3365
+ Rendered test/erector_with_locals_from_erb.html.erb (0.4ms)
3366
+ Completed 200 OK in 1ms (Views: 0.8ms)
3367
+ Processing by TestController#render_erector_partial_without_controller_variables as HTML
3368
+ Rendered test/_partial_with_locals.rb (0.2ms)
3369
+ Rendered test/erector_with_locals_from_erb.html.erb (0.4ms)
3370
+ Completed 200 OK in 1ms (Views: 0.8ms)
3371
+ Processing by TestController#render_default as HTML
3372
+ Rendered test/render_default.html.rb (0.5ms)
3373
+ Completed 200 OK in 2ms (Views: 2.2ms)
3374
+ Processing by TestController#render_with_needs as HTML
3375
+ Completed 200 OK in 1ms (Views: 0.4ms)
3376
+ Rendered text template (0.0ms)
3377
+ Processing by TestController#render_widget_class as HTML
3378
+ Completed 200 OK in 577ms (Views: 2.6ms)
3379
+ Processing by TestController#render_widget_instance as HTML
3380
+ Completed 200 OK in 1ms (Views: 0.4ms)
3381
+ Processing by TestController#render_widget_with_ignored_controller_variables as HTML
3382
+ Completed 200 OK in 1ms (Views: 0.6ms)
3383
+ Processing by TestController#render_widget_with_extra_controller_variables as HTML
3384
+ Completed 500 Internal Server Error in 1ms
3385
+ Processing by TestController#render_with_content_method as HTML
3386
+ Completed 200 OK in 1ms (Views: 0.4ms)
3387
+ Processing by TestController#render_with_rails_options as HTML
3388
+ Completed 500 Internal Server Error in 1ms (Views: 0.4ms)
3389
+ Processing by TestController#render_template_with_implicit_assigns as HTML
3390
+ Rendered test/implicit_assigns.html.rb (1.5ms)
3391
+ Completed 200 OK in 3ms (Views: 3.1ms)
3392
+ Processing by TestController#render_template_with_protected_instance_variable as HTML
3393
+ Rendered test/protected_instance_variable.html.rb (1.2ms)
3394
+ Completed 200 OK in 3ms (Views: 2.9ms)
3395
+ Processing by TestController#render_bare_rb as HTML
3396
+ Rendered test/bare.rb (2.2ms)
3397
+ Completed 200 OK in 4ms (Views: 3.7ms)
3398
+ Processing by TestController#render_template_with_excess_variables as HTML
3399
+ Rendered test/render_default.html.rb (1.2ms)
3400
+ Completed 200 OK in 3ms (Views: 2.7ms)
3401
+ Processing by TestController#render_needs_template_with_excess_variables as HTML
3402
+ Rendered test/needs.html.rb (1.0ms)
3403
+ Completed 500 Internal Server Error in 3ms
3404
+ Processing by TestController#render_needs_template_with_excess_variables_and_ignoring_extras as HTML
3405
+ Rendered test/needs.html.rb (0.2ms)
3406
+ Completed 200 OK in 1ms (Views: 0.6ms)
3407
+ Processing by TestController#render_needs_subclass_template_with_excess_variables_and_ignoring_extras as HTML
3408
+ Rendered test/needs_subclass.html.rb (1.1ms)
3409
+ Completed 200 OK in 3ms (Views: 2.6ms)
3410
+ Processing by TestController#render_template_with_partial as HTML
3411
+ Rendered test/_erector.rb (1.8ms)
3412
+ Rendered test/render_partial.html.rb (4.0ms)
3413
+ Completed 200 OK in 6ms (Views: 5.5ms)
3414
+ Processing by TestController#render_erb_from_erector as HTML
3415
+ Rendered test/_erb.erb (0.5ms)
3416
+ Rendered test/erb_from_erector.html.rb (2.6ms)
3417
+ Completed 200 OK in 4ms (Views: 4.1ms)
3418
+ Processing by TestController#render_erector_from_erb as HTML
3419
+ Rendered test/_erector.rb (0.2ms)
3420
+ Rendered test/erector_from_erb.html.erb (0.7ms)
3421
+ Completed 200 OK in 2ms (Views: 2.1ms)
3422
+ Processing by TestController#render_erector_with_locals_from_erb as HTML
3423
+ Rendered test/_partial_with_locals.rb (2.0ms)
3424
+ Rendered test/erector_with_locals_from_erb.html.erb (3.4ms)
3425
+ Completed 200 OK in 5ms (Views: 4.8ms)
3426
+ Processing by TestController#render_erector_with_locals_from_erb_defaulted as HTML
3427
+ Rendered test/_partial_with_locals.rb (0.6ms)
3428
+ Rendered test/erector_with_locals_from_erb.html.erb (0.8ms)
3429
+ Completed 200 OK in 2ms (Views: 1.3ms)
3430
+ Processing by TestController#render_erector_with_locals_from_erb_override as HTML
3431
+ Rendered test/_partial_with_locals.rb (0.2ms)
3432
+ Rendered test/erector_with_locals_from_erb.html.erb (0.4ms)
3433
+ Completed 200 OK in 1ms (Views: 0.8ms)
3434
+ Processing by TestController#render_erector_with_locals_from_erb_not_needed as HTML
3435
+ Rendered test/_partial_with_locals.rb (0.6ms)
3436
+ Rendered test/erector_with_locals_from_erb.html.erb (0.9ms)
3437
+ Completed 500 Internal Server Error in 1ms
3438
+ Processing by TestController#render_erector_partial_with_unneeded_controller_variables as HTML
3439
+ Rendered test/_partial_with_locals.rb (0.2ms)
3440
+ Rendered test/erector_with_locals_from_erb.html.erb (0.4ms)
3441
+ Completed 200 OK in 1ms (Views: 0.8ms)
3442
+ Processing by TestController#render_erector_partial_without_controller_variables as HTML
3443
+ Rendered test/_partial_with_locals.rb (0.2ms)
3444
+ Rendered test/erector_with_locals_from_erb.html.erb (0.4ms)
3445
+ Completed 200 OK in 1ms (Views: 0.7ms)
3446
+ Processing by TestController#render_default as HTML
3447
+ Rendered test/render_default.html.rb (0.5ms)
3448
+ Completed 200 OK in 2ms (Views: 2.0ms)
3449
+ Processing by TestController#render_with_needs as HTML
3450
+ Completed 200 OK in 1ms (Views: 0.4ms)
3451
+ Rendered text template (0.0ms)
3452
+ Processing by TestController#render_widget_class as HTML
3453
+ Completed 200 OK in 179ms (Views: 3.6ms)
3454
+ Processing by TestController#render_widget_instance as HTML
3455
+ Completed 200 OK in 1ms (Views: 0.4ms)
3456
+ Processing by TestController#render_widget_with_ignored_controller_variables as HTML
3457
+ Completed 200 OK in 1ms (Views: 0.6ms)
3458
+ Processing by TestController#render_widget_with_extra_controller_variables as HTML
3459
+ Completed 500 Internal Server Error in 1ms
3460
+ Processing by TestController#render_with_content_method as HTML
3461
+ Completed 200 OK in 1ms (Views: 0.4ms)
3462
+ Processing by TestController#render_with_rails_options as HTML
3463
+ Completed 500 Internal Server Error in 1ms (Views: 0.4ms)
3464
+ Processing by TestController#render_template_with_implicit_assigns as HTML
3465
+ Rendered test/implicit_assigns.html.rb (0.9ms)
3466
+ Completed 200 OK in 3ms (Views: 2.9ms)
3467
+ Processing by TestController#render_template_with_protected_instance_variable as HTML
3468
+ Rendered test/protected_instance_variable.html.rb (61.1ms)
3469
+ Completed 200 OK in 64ms (Views: 63.3ms)
3470
+ Processing by TestController#render_bare_rb as HTML
3471
+ Rendered test/bare.rb (0.9ms)
3472
+ Completed 200 OK in 3ms (Views: 3.0ms)
3473
+ Processing by TestController#render_template_with_excess_variables as HTML
3474
+ Rendered test/render_default.html.rb (0.9ms)
3475
+ Completed 200 OK in 3ms (Views: 3.0ms)
3476
+ Processing by TestController#render_needs_template_with_excess_variables as HTML
3477
+ Rendered test/needs.html.rb (0.9ms)
3478
+ Completed 500 Internal Server Error in 3ms
3479
+ Processing by TestController#render_needs_template_with_excess_variables_and_ignoring_extras as HTML
3480
+ Rendered test/needs.html.rb (0.2ms)
3481
+ Completed 200 OK in 1ms (Views: 0.8ms)
3482
+ Processing by TestController#render_needs_subclass_template_with_excess_variables_and_ignoring_extras as HTML
3483
+ Rendered test/needs_subclass.html.rb (0.9ms)
3484
+ Completed 200 OK in 3ms (Views: 3.0ms)
3485
+ Processing by TestController#render_template_with_partial as HTML
3486
+ Rendered test/_erector.rb (0.8ms)
3487
+ Rendered test/render_partial.html.rb (3.4ms)
3488
+ Completed 200 OK in 6ms (Views: 5.4ms)
3489
+ Processing by TestController#render_erb_from_erector as HTML
3490
+ Rendered test/_erb.erb (0.3ms)
3491
+ Rendered test/erb_from_erector.html.rb (2.9ms)
3492
+ Completed 200 OK in 5ms (Views: 4.9ms)
3493
+ Processing by TestController#render_erector_from_erb as HTML
3494
+ Rendered test/_erector.rb (0.3ms)
3495
+ Rendered test/erector_from_erb.html.erb (0.7ms)
3496
+ Completed 200 OK in 3ms (Views: 2.8ms)
3497
+ Processing by TestController#render_erector_with_locals_from_erb as HTML
3498
+ Rendered test/_partial_with_locals.rb (0.9ms)
3499
+ Rendered test/erector_with_locals_from_erb.html.erb (3.0ms)
3500
+ Completed 200 OK in 5ms (Views: 5.1ms)
3501
+ Processing by TestController#render_erector_with_locals_from_erb_defaulted as HTML
3502
+ Rendered test/_partial_with_locals.rb (0.5ms)
3503
+ Rendered test/erector_with_locals_from_erb.html.erb (0.7ms)
3504
+ Completed 200 OK in 1ms (Views: 1.2ms)
3505
+ Processing by TestController#render_erector_with_locals_from_erb_override as HTML
3506
+ Rendered test/_partial_with_locals.rb (0.3ms)
3507
+ Rendered test/erector_with_locals_from_erb.html.erb (0.6ms)
3508
+ Completed 200 OK in 1ms (Views: 1.1ms)
3509
+ Processing by TestController#render_erector_with_locals_from_erb_not_needed as HTML
3510
+ Rendered test/_partial_with_locals.rb (0.6ms)
3511
+ Rendered test/erector_with_locals_from_erb.html.erb (0.9ms)
3512
+ Completed 500 Internal Server Error in 2ms
3513
+ Processing by TestController#render_erector_partial_with_unneeded_controller_variables as HTML
3514
+ Rendered test/_partial_with_locals.rb (0.3ms)
3515
+ Rendered test/erector_with_locals_from_erb.html.erb (0.5ms)
3516
+ Completed 200 OK in 1ms (Views: 0.9ms)
3517
+ Processing by TestController#render_erector_partial_without_controller_variables as HTML
3518
+ Rendered test/_partial_with_locals.rb (0.3ms)
3519
+ Rendered test/erector_with_locals_from_erb.html.erb (0.5ms)
3520
+ Completed 200 OK in 1ms (Views: 0.9ms)
3521
+ Processing by TestController#render_default as HTML
3522
+ Rendered test/render_default.html.rb (0.4ms)
3523
+ Completed 200 OK in 3ms (Views: 2.4ms)
3524
+ Processing by TestController#render_with_needs as HTML
3525
+ Completed 200 OK in 1ms (Views: 0.4ms)
3526
+ Rendered text template (0.0ms)
3527
+ Processing by TestController#render_widget_class as HTML
3528
+ Completed 200 OK in 545ms (Views: 2.8ms)
3529
+ Processing by TestController#render_widget_instance as HTML
3530
+ Completed 200 OK in 1ms (Views: 0.4ms)
3531
+ Processing by TestController#render_widget_with_ignored_controller_variables as HTML
3532
+ Completed 200 OK in 1ms (Views: 0.5ms)
3533
+ Processing by TestController#render_widget_with_extra_controller_variables as HTML
3534
+ Completed 500 Internal Server Error in 1ms
3535
+ Processing by TestController#render_with_content_method as HTML
3536
+ Completed 200 OK in 1ms (Views: 0.4ms)
3537
+ Processing by TestController#render_with_rails_options as HTML
3538
+ Completed 500 Internal Server Error in 1ms (Views: 0.4ms)
3539
+ Processing by TestController#render_template_with_implicit_assigns as HTML
3540
+ Rendered test/implicit_assigns.html.rb (1.2ms)
3541
+ Completed 200 OK in 3ms (Views: 3.1ms)
3542
+ Processing by TestController#render_template_with_protected_instance_variable as HTML
3543
+ Rendered test/protected_instance_variable.html.rb (1.0ms)
3544
+ Completed 200 OK in 3ms (Views: 2.9ms)
3545
+ Processing by TestController#render_bare_rb as HTML
3546
+ Rendered test/bare.rb (2.0ms)
3547
+ Completed 200 OK in 4ms (Views: 3.8ms)
3548
+ Processing by TestController#render_template_with_excess_variables as HTML
3549
+ Rendered test/render_default.html.rb (39.0ms)
3550
+ Completed 200 OK in 41ms (Views: 40.9ms)
3551
+ Processing by TestController#render_needs_template_with_excess_variables as HTML
3552
+ Rendered test/needs.html.rb (0.9ms)
3553
+ Completed 500 Internal Server Error in 3ms
3554
+ Processing by TestController#render_needs_template_with_excess_variables_and_ignoring_extras as HTML
3555
+ Rendered test/needs.html.rb (0.2ms)
3556
+ Completed 200 OK in 1ms (Views: 0.8ms)
3557
+ Processing by TestController#render_needs_subclass_template_with_excess_variables_and_ignoring_extras as HTML
3558
+ Rendered test/needs_subclass.html.rb (1.3ms)
3559
+ Completed 200 OK in 4ms (Views: 3.4ms)
3560
+ Processing by TestController#render_template_with_partial as HTML
3561
+ Rendered test/_erector.rb (1.9ms)
3562
+ Rendered test/render_partial.html.rb (4.4ms)
3563
+ Completed 200 OK in 6ms (Views: 6.1ms)
3564
+ Processing by TestController#render_erb_from_erector as HTML
3565
+ Rendered test/_erb.erb (0.5ms)
3566
+ Rendered test/erb_from_erector.html.rb (2.9ms)
3567
+ Completed 200 OK in 5ms (Views: 4.7ms)
3568
+ Processing by TestController#render_erector_from_erb as HTML
3569
+ Rendered test/_erector.rb (0.2ms)
3570
+ Rendered test/erector_from_erb.html.erb (0.8ms)
3571
+ Completed 200 OK in 3ms (Views: 2.5ms)
3572
+ Processing by TestController#render_erector_with_locals_from_erb as HTML
3573
+ Rendered test/_partial_with_locals.rb (1.9ms)
3574
+ Rendered test/erector_with_locals_from_erb.html.erb (3.7ms)
3575
+ Completed 200 OK in 6ms (Views: 5.5ms)
3576
+ Processing by TestController#render_erector_with_locals_from_erb_defaulted as HTML
3577
+ Rendered test/_partial_with_locals.rb (0.5ms)
3578
+ Rendered test/erector_with_locals_from_erb.html.erb (0.7ms)
3579
+ Completed 200 OK in 1ms (Views: 1.1ms)
3580
+ Processing by TestController#render_erector_with_locals_from_erb_override as HTML
3581
+ Rendered test/_partial_with_locals.rb (0.2ms)
3582
+ Rendered test/erector_with_locals_from_erb.html.erb (0.4ms)
3583
+ Completed 200 OK in 1ms (Views: 0.8ms)
3584
+ Processing by TestController#render_erector_with_locals_from_erb_not_needed as HTML
3585
+ Rendered test/_partial_with_locals.rb (0.6ms)
3586
+ Rendered test/erector_with_locals_from_erb.html.erb (0.8ms)
3587
+ Completed 500 Internal Server Error in 1ms
3588
+ Processing by TestController#render_erector_partial_with_unneeded_controller_variables as HTML
3589
+ Rendered test/_partial_with_locals.rb (0.2ms)
3590
+ Rendered test/erector_with_locals_from_erb.html.erb (0.4ms)
3591
+ Completed 200 OK in 1ms (Views: 0.7ms)
3592
+ Processing by TestController#render_erector_partial_without_controller_variables as HTML
3593
+ Rendered test/_partial_with_locals.rb (0.2ms)
3594
+ Rendered test/erector_with_locals_from_erb.html.erb (0.4ms)
3595
+ Completed 200 OK in 1ms (Views: 0.8ms)
3596
+ Processing by TestController#render_default as HTML
3597
+ Rendered test/render_default.html.rb (0.5ms)
3598
+ Completed 200 OK in 2ms (Views: 2.3ms)
3599
+ Processing by TestController#render_with_needs as HTML
3600
+ Completed 200 OK in 1ms (Views: 0.4ms)
3601
+ Rendered text template (0.0ms)
3602
+ Processing by TestController#render_widget_class as HTML
3603
+ Completed 200 OK in 547ms (Views: 2.5ms)
3604
+ Processing by TestController#render_widget_instance as HTML
3605
+ Completed 200 OK in 1ms (Views: 0.4ms)
3606
+ Processing by TestController#render_widget_with_ignored_controller_variables as HTML
3607
+ Completed 200 OK in 1ms (Views: 0.5ms)
3608
+ Processing by TestController#render_widget_with_extra_controller_variables as HTML
3609
+ Completed 500 Internal Server Error in 1ms
3610
+ Processing by TestController#render_with_content_method as HTML
3611
+ Completed 200 OK in 1ms (Views: 0.5ms)
3612
+ Processing by TestController#render_with_rails_options as HTML
3613
+ Completed 500 Internal Server Error in 1ms (Views: 0.5ms)
3614
+ Processing by TestController#render_template_with_implicit_assigns as HTML
3615
+ Rendered test/implicit_assigns.html.rb (1.3ms)
3616
+ Completed 200 OK in 3ms (Views: 3.0ms)
3617
+ Processing by TestController#render_template_with_protected_instance_variable as HTML
3618
+ Rendered test/protected_instance_variable.html.rb (1.1ms)
3619
+ Completed 200 OK in 3ms (Views: 2.7ms)
3620
+ Processing by TestController#render_bare_rb as HTML
3621
+ Rendered test/bare.rb (2.3ms)
3622
+ Completed 200 OK in 4ms (Views: 3.7ms)
3623
+ Processing by TestController#render_template_with_excess_variables as HTML
3624
+ Rendered test/render_default.html.rb (41.3ms)
3625
+ Completed 200 OK in 43ms (Views: 42.9ms)
3626
+ Processing by TestController#render_needs_template_with_excess_variables as HTML
3627
+ Rendered test/needs.html.rb (0.9ms)
3628
+ Completed 500 Internal Server Error in 3ms
3629
+ Processing by TestController#render_needs_template_with_excess_variables_and_ignoring_extras as HTML
3630
+ Rendered test/needs.html.rb (0.2ms)
3631
+ Completed 200 OK in 1ms (Views: 0.6ms)
3632
+ Processing by TestController#render_needs_subclass_template_with_excess_variables_and_ignoring_extras as HTML
3633
+ Rendered test/needs_subclass.html.rb (1.2ms)
3634
+ Completed 200 OK in 3ms (Views: 2.7ms)
3635
+ Processing by TestController#render_template_with_partial as HTML
3636
+ Rendered test/_erector.rb (1.8ms)
3637
+ Rendered test/render_partial.html.rb (4.1ms)
3638
+ Completed 200 OK in 6ms (Views: 5.6ms)
3639
+ Processing by TestController#render_erb_from_erector as HTML
3640
+ Rendered test/_erb.erb (0.5ms)
3641
+ Rendered test/erb_from_erector.html.rb (2.6ms)
3642
+ Completed 200 OK in 4ms (Views: 4.0ms)
3643
+ Processing by TestController#render_erector_from_erb as HTML
3644
+ Rendered test/_erector.rb (0.2ms)
3645
+ Rendered test/erector_from_erb.html.erb (0.9ms)
3646
+ Completed 200 OK in 3ms (Views: 2.5ms)
3647
+ Processing by TestController#render_erector_with_locals_from_erb as HTML
3648
+ Rendered test/_partial_with_locals.rb (1.9ms)
3649
+ Rendered test/erector_with_locals_from_erb.html.erb (3.4ms)
3650
+ Completed 200 OK in 5ms (Views: 4.9ms)
3651
+ Processing by TestController#render_erector_with_locals_from_erb_defaulted as HTML
3652
+ Rendered test/_partial_with_locals.rb (0.6ms)
3653
+ Rendered test/erector_with_locals_from_erb.html.erb (0.9ms)
3654
+ Completed 200 OK in 2ms (Views: 1.4ms)
3655
+ Processing by TestController#render_erector_with_locals_from_erb_override as HTML
3656
+ Rendered test/_partial_with_locals.rb (0.2ms)
3657
+ Rendered test/erector_with_locals_from_erb.html.erb (0.5ms)
3658
+ Completed 200 OK in 1ms (Views: 0.9ms)
3659
+ Processing by TestController#render_erector_with_locals_from_erb_not_needed as HTML
3660
+ Rendered test/_partial_with_locals.rb (0.6ms)
3661
+ Rendered test/erector_with_locals_from_erb.html.erb (0.9ms)
3662
+ Completed 500 Internal Server Error in 2ms
3663
+ Processing by TestController#render_erector_partial_with_unneeded_controller_variables as HTML
3664
+ Rendered test/_partial_with_locals.rb (0.2ms)
3665
+ Rendered test/erector_with_locals_from_erb.html.erb (0.4ms)
3666
+ Completed 200 OK in 1ms (Views: 0.9ms)
3667
+ Processing by TestController#render_erector_partial_without_controller_variables as HTML
3668
+ Rendered test/_partial_with_locals.rb (0.2ms)
3669
+ Rendered test/erector_with_locals_from_erb.html.erb (0.4ms)
3670
+ Completed 200 OK in 1ms (Views: 0.8ms)
3671
+ Processing by TestController#render_default as HTML
3672
+ Rendered test/render_default.html.rb (0.5ms)
3673
+ Completed 200 OK in 2ms (Views: 2.0ms)
3674
+ Processing by TestController#render_with_needs as HTML
3675
+ Completed 200 OK in 1ms (Views: 0.4ms)
3676
+ Rendered text template (0.0ms)
3677
+ Processing by TestController#render_widget_class as HTML
3678
+ Completed 200 OK in 542ms (Views: 2.5ms)
3679
+ Processing by TestController#render_widget_instance as HTML
3680
+ Completed 200 OK in 1ms (Views: 0.4ms)
3681
+ Processing by TestController#render_widget_with_ignored_controller_variables as HTML
3682
+ Completed 200 OK in 1ms (Views: 0.5ms)
3683
+ Processing by TestController#render_widget_with_extra_controller_variables as HTML
3684
+ Completed 500 Internal Server Error in 1ms
3685
+ Processing by TestController#render_with_content_method as HTML
3686
+ Completed 200 OK in 1ms (Views: 0.4ms)
3687
+ Processing by TestController#render_with_rails_options as HTML
3688
+ Completed 500 Internal Server Error in 1ms (Views: 0.4ms)
3689
+ Processing by TestController#render_template_with_implicit_assigns as HTML
3690
+ Rendered test/implicit_assigns.html.rb (1.3ms)
3691
+ Completed 200 OK in 3ms (Views: 2.8ms)
3692
+ Processing by TestController#render_template_with_protected_instance_variable as HTML
3693
+ Rendered test/protected_instance_variable.html.rb (1.0ms)
3694
+ Completed 200 OK in 3ms (Views: 2.5ms)
3695
+ Processing by TestController#render_bare_rb as HTML
3696
+ Rendered test/bare.rb (2.0ms)
3697
+ Completed 200 OK in 4ms (Views: 3.5ms)
3698
+ Processing by TestController#render_template_with_excess_variables as HTML
3699
+ Rendered test/render_default.html.rb (1.5ms)
3700
+ Completed 200 OK in 46ms (Views: 45.2ms)
3701
+ Processing by TestController#render_needs_template_with_excess_variables as HTML
3702
+ Rendered test/needs.html.rb (0.9ms)
3703
+ Completed 500 Internal Server Error in 3ms
3704
+ Processing by TestController#render_needs_template_with_excess_variables_and_ignoring_extras as HTML
3705
+ Rendered test/needs.html.rb (0.2ms)
3706
+ Completed 200 OK in 1ms (Views: 0.7ms)
3707
+ Processing by TestController#render_needs_subclass_template_with_excess_variables_and_ignoring_extras as HTML
3708
+ Rendered test/needs_subclass.html.rb (1.4ms)
3709
+ Completed 200 OK in 3ms (Views: 3.1ms)
3710
+ Processing by TestController#render_template_with_partial as HTML
3711
+ Rendered test/_erector.rb (1.8ms)
3712
+ Rendered test/render_partial.html.rb (4.1ms)
3713
+ Completed 200 OK in 6ms (Views: 5.6ms)
3714
+ Processing by TestController#render_erb_from_erector as HTML
3715
+ Rendered test/_erb.erb (0.4ms)
3716
+ Rendered test/erb_from_erector.html.rb (2.7ms)
3717
+ Completed 200 OK in 5ms (Views: 4.3ms)
3718
+ Processing by TestController#render_erector_from_erb as HTML
3719
+ Rendered test/_erector.rb (0.2ms)
3720
+ Rendered test/erector_from_erb.html.erb (0.8ms)
3721
+ Completed 200 OK in 2ms (Views: 2.2ms)
3722
+ Processing by TestController#render_erector_with_locals_from_erb as HTML
3723
+ Rendered test/_partial_with_locals.rb (2.0ms)
3724
+ Rendered test/erector_with_locals_from_erb.html.erb (3.6ms)
3725
+ Completed 200 OK in 5ms (Views: 5.2ms)
3726
+ Processing by TestController#render_erector_with_locals_from_erb_defaulted as HTML
3727
+ Rendered test/_partial_with_locals.rb (0.5ms)
3728
+ Rendered test/erector_with_locals_from_erb.html.erb (0.8ms)
3729
+ Completed 200 OK in 1ms (Views: 1.2ms)
3730
+ Processing by TestController#render_erector_with_locals_from_erb_override as HTML
3731
+ Rendered test/_partial_with_locals.rb (0.2ms)
3732
+ Rendered test/erector_with_locals_from_erb.html.erb (0.5ms)
3733
+ Completed 200 OK in 1ms (Views: 0.9ms)
3734
+ Processing by TestController#render_erector_with_locals_from_erb_not_needed as HTML
3735
+ Rendered test/_partial_with_locals.rb (0.7ms)
3736
+ Rendered test/erector_with_locals_from_erb.html.erb (0.9ms)
3737
+ Completed 500 Internal Server Error in 2ms
3738
+ Processing by TestController#render_erector_partial_with_unneeded_controller_variables as HTML
3739
+ Rendered test/_partial_with_locals.rb (0.2ms)
3740
+ Rendered test/erector_with_locals_from_erb.html.erb (0.4ms)
3741
+ Completed 200 OK in 1ms (Views: 0.8ms)
3742
+ Processing by TestController#render_erector_partial_without_controller_variables as HTML
3743
+ Rendered test/_partial_with_locals.rb (0.2ms)
3744
+ Rendered test/erector_with_locals_from_erb.html.erb (0.4ms)
3745
+ Completed 200 OK in 1ms (Views: 0.8ms)
3746
+ Processing by TestController#render_default as HTML
3747
+ Rendered test/render_default.html.rb (0.5ms)
3748
+ Completed 200 OK in 2ms (Views: 2.0ms)
3749
+ Processing by TestController#render_with_needs as HTML
3750
+ Completed 200 OK in 1ms (Views: 0.4ms)