qunit_for_rails 0.0.4

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