erector 0.8.2 → 0.8.3

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