terrific 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (56) hide show
  1. checksums.yaml +7 -0
  2. data/MIT-LICENSE +20 -0
  3. data/README.md +36 -0
  4. data/Rakefile +23 -0
  5. data/lib/terrific.rb +5 -0
  6. data/lib/terrific/error.rb +42 -0
  7. data/lib/terrific/locales.rb +1 -0
  8. data/lib/terrific/locales/en.yml +10 -0
  9. data/lib/terrific/mappable.rb +29 -0
  10. data/lib/terrific/version.rb +3 -0
  11. data/spec/dummy/README.rdoc +28 -0
  12. data/spec/dummy/Rakefile +6 -0
  13. data/spec/dummy/app/assets/javascripts/application.js +13 -0
  14. data/spec/dummy/app/assets/stylesheets/application.css +15 -0
  15. data/spec/dummy/app/controllers/application_controller.rb +5 -0
  16. data/spec/dummy/app/helpers/application_helper.rb +2 -0
  17. data/spec/dummy/app/models/user.rb +3 -0
  18. data/spec/dummy/app/views/layouts/application.html.erb +14 -0
  19. data/spec/dummy/bin/bundle +3 -0
  20. data/spec/dummy/bin/rails +4 -0
  21. data/spec/dummy/bin/rake +4 -0
  22. data/spec/dummy/bin/setup +29 -0
  23. data/spec/dummy/config.ru +4 -0
  24. data/spec/dummy/config/application.rb +32 -0
  25. data/spec/dummy/config/boot.rb +5 -0
  26. data/spec/dummy/config/database.yml +25 -0
  27. data/spec/dummy/config/environment.rb +5 -0
  28. data/spec/dummy/config/environments/development.rb +41 -0
  29. data/spec/dummy/config/environments/production.rb +79 -0
  30. data/spec/dummy/config/environments/test.rb +42 -0
  31. data/spec/dummy/config/initializers/assets.rb +11 -0
  32. data/spec/dummy/config/initializers/backtrace_silencers.rb +7 -0
  33. data/spec/dummy/config/initializers/cookies_serializer.rb +3 -0
  34. data/spec/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  35. data/spec/dummy/config/initializers/inflections.rb +16 -0
  36. data/spec/dummy/config/initializers/mime_types.rb +4 -0
  37. data/spec/dummy/config/initializers/session_store.rb +3 -0
  38. data/spec/dummy/config/initializers/wrap_parameters.rb +14 -0
  39. data/spec/dummy/config/locales/en.yml +27 -0
  40. data/spec/dummy/config/routes.rb +56 -0
  41. data/spec/dummy/config/secrets.yml +22 -0
  42. data/spec/dummy/db/development.sqlite3 +0 -0
  43. data/spec/dummy/db/migrate/20150216205144_create_users.rb +9 -0
  44. data/spec/dummy/db/schema.rb +22 -0
  45. data/spec/dummy/db/test.sqlite3 +0 -0
  46. data/spec/dummy/log/development.log +32 -0
  47. data/spec/dummy/log/test.log +1796 -0
  48. data/spec/dummy/public/404.html +67 -0
  49. data/spec/dummy/public/422.html +67 -0
  50. data/spec/dummy/public/500.html +66 -0
  51. data/spec/dummy/public/favicon.ico +0 -0
  52. data/spec/requests/errors_spec.rb +81 -0
  53. data/spec/spec_helper.rb +17 -0
  54. data/spec/support/request_helper.rb +27 -0
  55. data/spec/terrific/error_spec.rb +85 -0
  56. metadata +185 -0
@@ -0,0 +1,79 @@
1
+ Rails.application.configure do
2
+ # Settings specified here will take precedence over those in config/application.rb.
3
+
4
+ # Code is not reloaded between requests.
5
+ config.cache_classes = true
6
+
7
+ # Eager load code on boot. This eager loads most of Rails and
8
+ # your application in memory, allowing both threaded web servers
9
+ # and those relying on copy on write to perform better.
10
+ # Rake tasks automatically ignore this option for performance.
11
+ config.eager_load = true
12
+
13
+ # Full error reports are disabled and caching is turned on.
14
+ config.consider_all_requests_local = false
15
+ config.action_controller.perform_caching = true
16
+
17
+ # Enable Rack::Cache to put a simple HTTP cache in front of your application
18
+ # Add `rack-cache` to your Gemfile before enabling this.
19
+ # For large-scale production use, consider using a caching reverse proxy like
20
+ # NGINX, varnish or squid.
21
+ # config.action_dispatch.rack_cache = true
22
+
23
+ # Disable serving static files from the `/public` folder by default since
24
+ # Apache or NGINX already handles this.
25
+ config.serve_static_files = ENV['RAILS_SERVE_STATIC_FILES'].present?
26
+
27
+ # Compress JavaScripts and CSS.
28
+ config.assets.js_compressor = :uglifier
29
+ # config.assets.css_compressor = :sass
30
+
31
+ # Do not fallback to assets pipeline if a precompiled asset is missed.
32
+ config.assets.compile = false
33
+
34
+ # Asset digests allow you to set far-future HTTP expiration dates on all assets,
35
+ # yet still be able to expire them through the digest params.
36
+ config.assets.digest = true
37
+
38
+ # `config.assets.precompile` and `config.assets.version` have moved to config/initializers/assets.rb
39
+
40
+ # Specifies the header that your server uses for sending files.
41
+ # config.action_dispatch.x_sendfile_header = 'X-Sendfile' # for Apache
42
+ # config.action_dispatch.x_sendfile_header = 'X-Accel-Redirect' # for NGINX
43
+
44
+ # Force all access to the app over SSL, use Strict-Transport-Security, and use secure cookies.
45
+ # config.force_ssl = true
46
+
47
+ # Use the lowest log level to ensure availability of diagnostic information
48
+ # when problems arise.
49
+ config.log_level = :debug
50
+
51
+ # Prepend all log lines with the following tags.
52
+ # config.log_tags = [ :subdomain, :uuid ]
53
+
54
+ # Use a different logger for distributed setups.
55
+ # config.logger = ActiveSupport::TaggedLogging.new(SyslogLogger.new)
56
+
57
+ # Use a different cache store in production.
58
+ # config.cache_store = :mem_cache_store
59
+
60
+ # Enable serving of images, stylesheets, and JavaScripts from an asset server.
61
+ # config.action_controller.asset_host = 'http://assets.example.com'
62
+
63
+ # Ignore bad email addresses and do not raise email delivery errors.
64
+ # Set this to true and configure the email server for immediate delivery to raise delivery errors.
65
+ # config.action_mailer.raise_delivery_errors = false
66
+
67
+ # Enable locale fallbacks for I18n (makes lookups for any locale fall back to
68
+ # the I18n.default_locale when a translation cannot be found).
69
+ config.i18n.fallbacks = true
70
+
71
+ # Send deprecation notices to registered listeners.
72
+ config.active_support.deprecation = :notify
73
+
74
+ # Use default logging formatter so that PID and timestamp are not suppressed.
75
+ config.log_formatter = ::Logger::Formatter.new
76
+
77
+ # Do not dump schema after migrations.
78
+ config.active_record.dump_schema_after_migration = false
79
+ end
@@ -0,0 +1,42 @@
1
+ Rails.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
+ # Do not eager load code on boot. This avoids loading your whole application
11
+ # just for the purpose of running a single test. If you are using a tool that
12
+ # preloads Rails for running tests, you may have to set it to true.
13
+ config.eager_load = false
14
+
15
+ # Configure static file server for tests with Cache-Control for performance.
16
+ config.serve_static_files = true
17
+ config.static_cache_control = 'public, max-age=3600'
18
+
19
+ # Show full error reports and disable caching.
20
+ config.consider_all_requests_local = true
21
+ config.action_controller.perform_caching = false
22
+
23
+ # Raise exceptions instead of rendering exception templates.
24
+ config.action_dispatch.show_exceptions = false
25
+
26
+ # Disable request forgery protection in test environment.
27
+ config.action_controller.allow_forgery_protection = false
28
+
29
+ # Tell Action Mailer not to deliver emails to the real world.
30
+ # The :test delivery method accumulates sent emails in the
31
+ # ActionMailer::Base.deliveries array.
32
+ config.action_mailer.delivery_method = :test
33
+
34
+ # Randomize the order test cases are executed.
35
+ config.active_support.test_order = :random
36
+
37
+ # Print deprecation notices to the stderr.
38
+ config.active_support.deprecation = :stderr
39
+
40
+ # Raises error for missing translations
41
+ # config.action_view.raise_on_missing_translations = true
42
+ end
@@ -0,0 +1,11 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Version of your assets, change this if you want to expire all your assets.
4
+ Rails.application.config.assets.version = '1.0'
5
+
6
+ # Add additional assets to the asset load path
7
+ # Rails.application.config.assets.paths << Emoji.images_path
8
+
9
+ # Precompile additional assets.
10
+ # application.js, application.css, and all non-JS/CSS in app/assets folder are already added.
11
+ # Rails.application.config.assets.precompile += %w( search.js )
@@ -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,3 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ Rails.application.config.action_dispatch.cookies_serializer = :json
@@ -0,0 +1,4 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Configure sensitive parameters which will be filtered from the log file.
4
+ Rails.application.config.filter_parameters += [:password]
@@ -0,0 +1,16 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Add new inflection rules using the following format. Inflections
4
+ # are locale specific, and you may define rules for as many different
5
+ # locales as you wish. All of these examples are active by default:
6
+ # ActiveSupport::Inflector.inflections(:en) do |inflect|
7
+ # inflect.plural /^(ox)$/i, '\1en'
8
+ # inflect.singular /^(ox)en/i, '\1'
9
+ # inflect.irregular 'person', 'people'
10
+ # inflect.uncountable %w( fish sheep )
11
+ # end
12
+
13
+ # These inflection rules are supported but not enabled by default:
14
+ # ActiveSupport::Inflector.inflections(:en) do |inflect|
15
+ # inflect.acronym 'RESTful'
16
+ # end
@@ -0,0 +1,4 @@
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
@@ -0,0 +1,3 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ Rails.application.config.session_store :cookie_store, key: '_dummy_session'
@@ -0,0 +1,14 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # This file contains settings for ActionController::ParamsWrapper which
4
+ # is enabled by default.
5
+
6
+ # Enable parameter wrapping for JSON. You can disable this by setting :format to an empty array.
7
+ ActiveSupport.on_load(:action_controller) do
8
+ wrap_parameters format: [:json] if respond_to?(:wrap_parameters)
9
+ end
10
+
11
+ # To enable root element in JSON for ActiveRecord objects.
12
+ # ActiveSupport.on_load(:active_record) do
13
+ # self.include_root_in_json = true
14
+ # end
@@ -0,0 +1,27 @@
1
+ # Files in the config/locales directory are used for internationalization
2
+ # and are automatically loaded by Rails. If you want to use locales other
3
+ # than English, add the necessary files in this directory.
4
+ #
5
+ # To use the locales, use `I18n.t`:
6
+ #
7
+ # I18n.t 'hello'
8
+ #
9
+ # In views, this is aliased to just `t`:
10
+ #
11
+ # <%= t('hello') %>
12
+ #
13
+ # To use a different locale, set it with `I18n.locale`:
14
+ #
15
+ # I18n.locale = :es
16
+ #
17
+ # This would use the information in config/locales/es.yml.
18
+ #
19
+ # To learn more, please read the Rails Internationalization guide
20
+ # available at http://guides.rubyonrails.org/i18n.html.
21
+
22
+ en:
23
+ hello: "Hello world"
24
+
25
+ terrific:
26
+ messages:
27
+ exception: "translated message"
@@ -0,0 +1,56 @@
1
+ Rails.application.routes.draw do
2
+ # The priority is based upon order of creation: first created -> highest priority.
3
+ # See how all your routes lay out with "rake routes".
4
+
5
+ # You can have the root of your site routed with "root"
6
+ # root 'welcome#index'
7
+
8
+ # Example of regular route:
9
+ # get 'products/:id' => 'catalog#view'
10
+
11
+ # Example of named route that can be invoked with purchase_url(id: product.id)
12
+ # get 'products/:id/purchase' => 'catalog#purchase', as: :purchase
13
+
14
+ # Example resource route (maps HTTP verbs to controller actions automatically):
15
+ # resources :products
16
+
17
+ # Example resource route with options:
18
+ # resources :products do
19
+ # member do
20
+ # get 'short'
21
+ # post 'toggle'
22
+ # end
23
+ #
24
+ # collection do
25
+ # get 'sold'
26
+ # end
27
+ # end
28
+
29
+ # Example resource route with sub-resources:
30
+ # resources :products do
31
+ # resources :comments, :sales
32
+ # resource :seller
33
+ # end
34
+
35
+ # Example resource route with more complex sub-resources:
36
+ # resources :products do
37
+ # resources :comments
38
+ # resources :sales do
39
+ # get 'recent', on: :collection
40
+ # end
41
+ # end
42
+
43
+ # Example resource route with concerns:
44
+ # concern :toggleable do
45
+ # post 'toggle'
46
+ # end
47
+ # resources :posts, concerns: :toggleable
48
+ # resources :photos, concerns: :toggleable
49
+
50
+ # Example resource route within a namespace:
51
+ # namespace :admin do
52
+ # # Directs /admin/products/* to Admin::ProductsController
53
+ # # (app/controllers/admin/products_controller.rb)
54
+ # resources :products
55
+ # end
56
+ end
@@ -0,0 +1,22 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Your secret key is used for verifying the integrity of signed cookies.
4
+ # If you change this key, all old signed cookies will become invalid!
5
+
6
+ # Make sure the secret is at least 30 characters and all random,
7
+ # no regular words or you'll be exposed to dictionary attacks.
8
+ # You can use `rake secret` to generate a secure secret key.
9
+
10
+ # Make sure the secrets in this file are kept private
11
+ # if you're sharing your code publicly.
12
+
13
+ development:
14
+ secret_key_base: 085d09d6538d626a5d3f490f10b721d56e3472527bf6a24ba02bf02256eb1b26c0cded1fd581ec25c04b9b600bf71bb80d0434558decd4920b0b9ec2fe331c69
15
+
16
+ test:
17
+ secret_key_base: 0048a8b14a5b7899aaf242818eae3c8b5fc9ba1e188a54051aa86582d12ce9b9e18d76f63b951f0563b9ad554a3f6bf77f94abab1c5698f49aba44647950541f
18
+
19
+ # Do not keep production secrets in the repository,
20
+ # instead read values from the environment.
21
+ production:
22
+ secret_key_base: <%= ENV["SECRET_KEY_BASE"] %>
@@ -0,0 +1,9 @@
1
+ class CreateUsers < ActiveRecord::Migration
2
+ def change
3
+ create_table :users do |t|
4
+ t.string :name
5
+
6
+ t.timestamps null: false
7
+ end
8
+ end
9
+ end
@@ -0,0 +1,22 @@
1
+ # encoding: UTF-8
2
+ # This file is auto-generated from the current state of the database. Instead
3
+ # of editing this file, please use the migrations feature of Active Record to
4
+ # incrementally modify your database, and then regenerate this schema definition.
5
+ #
6
+ # Note that this schema.rb definition is the authoritative source for your
7
+ # database schema. If you need to create the application database on another
8
+ # system, you should be using db:schema:load, not running all the migrations
9
+ # from scratch. The latter is a flawed and unsustainable approach (the more migrations
10
+ # you'll amass, the slower it'll run and the greater likelihood for issues).
11
+ #
12
+ # It's strongly recommended that you check this file into your version control system.
13
+
14
+ ActiveRecord::Schema.define(version: 20150216205144) do
15
+
16
+ create_table "users", force: :cascade do |t|
17
+ t.string "name"
18
+ t.datetime "created_at", null: false
19
+ t.datetime "updated_at", null: false
20
+ end
21
+
22
+ end
@@ -0,0 +1,32 @@
1
+  (1.1ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
2
+  (0.1ms) select sqlite_version(*)
3
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
4
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
5
+ Migrating to CreateUsers (20150216205144)
6
+  (0.1ms) begin transaction
7
+  (0.9ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
8
+ SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150216205144"]]
9
+  (0.9ms) commit transaction
10
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
11
+  (1.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
12
+  (1.0ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
13
+  (0.0ms) select sqlite_version(*)
14
+  (1.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
15
+  (0.1ms) SELECT version FROM "schema_migrations"
16
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20150216205144')
17
+  (1.1ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
18
+  (0.1ms) select sqlite_version(*)
19
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
20
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
21
+ Migrating to CreateUsers (20150216205144)
22
+  (0.1ms) begin transaction
23
+  (0.4ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
24
+ SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150216205144"]]
25
+  (1.0ms) commit transaction
26
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
27
+  (1.0ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
28
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
29
+  (0.1ms) select sqlite_version(*)
30
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
31
+  (0.1ms) SELECT version FROM "schema_migrations"
32
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150216205144')
@@ -0,0 +1,1796 @@
1
+  (0.3ms) begin transaction
2
+  (0.1ms) rollback transaction
3
+  (0.3ms) begin transaction
4
+  (0.1ms) rollback transaction
5
+  (0.7ms) begin transaction
6
+ Started GET "/unrecognized_exception" for 127.0.0.1 at 2015-02-15 23:21:28 -0800
7
+  (0.1ms) rollback transaction
8
+  (0.4ms) begin transaction
9
+ Started GET "/unrecognized_exception" for 127.0.0.1 at 2015-02-15 23:21:44 -0800
10
+  (0.1ms) rollback transaction
11
+  (0.3ms) begin transaction
12
+ Started GET "/unrecognized_exception" for 127.0.0.1 at 2015-02-15 23:22:13 -0800
13
+  (0.1ms) rollback transaction
14
+  (0.2ms) begin transaction
15
+  (0.1ms) rollback transaction
16
+  (0.3ms) begin transaction
17
+ Started GET "/unrecognized_exception" for 127.0.0.1 at 2015-02-15 23:25:50 -0800
18
+  (0.1ms) rollback transaction
19
+  (0.3ms) begin transaction
20
+ Started GET "/unrecognized_exception" for 127.0.0.1 at 2015-02-15 23:26:23 -0800
21
+  (0.1ms) rollback transaction
22
+  (0.3ms) begin transaction
23
+ Started GET "/unrecognized_exception" for 127.0.0.1 at 2015-02-15 23:26:34 -0800
24
+ Processing by TestController#unrecognized_exception as HTML
25
+ Parameters: {"test"=>{}}
26
+ Completed 500 Internal Server Error in 1ms
27
+  (0.1ms) rollback transaction
28
+  (0.2ms) begin transaction
29
+  (0.0ms) rollback transaction
30
+  (0.9ms) begin transaction
31
+ Started GET "/unrecognized_exception" for 127.0.0.1 at 2015-02-16 00:17:15 -0800
32
+ Processing by TestController#unrecognized_exception as HTML
33
+ Parameters: {"test"=>{}}
34
+ Completed 500 Internal Server Error in 1ms
35
+  (0.1ms) rollback transaction
36
+  (0.3ms) begin transaction
37
+ Started GET "/unrecognized_exception" for 127.0.0.1 at 2015-02-16 00:21:51 -0800
38
+ Processing by TestController#unrecognized_exception as HTML
39
+ Completed 500 Internal Server Error in 1ms
40
+  (0.1ms) rollback transaction
41
+  (0.3ms) begin transaction
42
+ Started GET "/unrecognized_exception" for 127.0.0.1 at 2015-02-16 00:22:28 -0800
43
+ Processing by TestController#unrecognized_exception as HTML
44
+ Completed 500 Internal Server Error in 1ms
45
+  (0.1ms) rollback transaction
46
+  (0.2ms) begin transaction
47
+ Started GET "/unrecognized_exception" for 127.0.0.1 at 2015-02-16 00:24:31 -0800
48
+ Processing by TestController#unrecognized_exception as HTML
49
+ Completed 500 Internal Server Error in 1ms
50
+  (0.1ms) rollback transaction
51
+  (0.3ms) begin transaction
52
+ Started GET "/unrecognized_exception" for 127.0.0.1 at 2015-02-16 00:26:36 -0800
53
+ Processing by TestController#unrecognized_exception as HTML
54
+ Completed 422 Unprocessable Entity in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
55
+  (0.1ms) rollback transaction
56
+  (0.3ms) begin transaction
57
+ Started GET "/unrecognized_exception" for 127.0.0.1 at 2015-02-16 00:32:21 -0800
58
+ Processing by TestController#unrecognized_exception as HTML
59
+ Completed 500 Internal Server Error in 0ms
60
+  (0.2ms) rollback transaction
61
+  (0.2ms) begin transaction
62
+ Started GET "/unrecognized_exception" for 127.0.0.1 at 2015-02-16 00:45:22 -0800
63
+ Processing by TestController#unrecognized_exception as HTML
64
+ Completed 500 Internal Server Error in 0ms
65
+  (0.1ms) rollback transaction
66
+  (0.3ms) begin transaction
67
+ Started GET "/unrecognized_exception" for 127.0.0.1 at 2015-02-16 00:45:36 -0800
68
+ Processing by TestController#unrecognized_exception as HTML
69
+ Completed 500 Internal Server Error in 1ms
70
+  (0.1ms) rollback transaction
71
+  (0.3ms) begin transaction
72
+ Started GET "/unrecognized_exception" for 127.0.0.1 at 2015-02-16 00:46:59 -0800
73
+ Processing by TestController#unrecognized_exception as HTML
74
+ Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
75
+  (0.1ms) rollback transaction
76
+  (0.3ms) begin transaction
77
+ Started GET "/unrecognized_exception" for 127.0.0.1 at 2015-02-16 00:48:00 -0800
78
+ Processing by TestController#unrecognized_exception as HTML
79
+ Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
80
+  (0.1ms) rollback transaction
81
+  (0.3ms) begin transaction
82
+ Started GET "/unrecognized_exception" for 127.0.0.1 at 2015-02-16 00:51:00 -0800
83
+ Processing by TestController#unrecognized_exception as HTML
84
+ Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
85
+  (0.1ms) rollback transaction
86
+  (0.3ms) begin transaction
87
+ Started GET "/unrecognized_exception" for 127.0.0.1 at 2015-02-16 00:51:42 -0800
88
+ Processing by TestController#unrecognized_exception as HTML
89
+ Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
90
+  (0.1ms) rollback transaction
91
+  (0.2ms) begin transaction
92
+ Started GET "/unrecognized_exception" for 127.0.0.1 at 2015-02-16 00:51:52 -0800
93
+ Processing by TestController#unrecognized_exception as HTML
94
+ Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
95
+  (0.1ms) rollback transaction
96
+  (0.3ms) begin transaction
97
+ Started GET "/unrecognized_exception" for 127.0.0.1 at 2015-02-16 00:52:13 -0800
98
+ Processing by TestController#unrecognized_exception as HTML
99
+ Completed 500 Internal Server Error in 1ms
100
+  (0.1ms) rollback transaction
101
+  (0.3ms) begin transaction
102
+ Started GET "/unrecognized_exception" for 127.0.0.1 at 2015-02-16 00:52:24 -0800
103
+ Processing by TestController#unrecognized_exception as HTML
104
+ Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
105
+  (0.1ms) rollback transaction
106
+  (0.2ms) begin transaction
107
+ Started GET "/unrecognized_exception" for 127.0.0.1 at 2015-02-16 00:52:36 -0800
108
+ Processing by TestController#unrecognized_exception as HTML
109
+ Completed 500 Internal Server Error in 1ms
110
+  (0.1ms) rollback transaction
111
+  (0.2ms) begin transaction
112
+ Started GET "/unrecognized_exception" for 127.0.0.1 at 2015-02-16 00:52:42 -0800
113
+ Processing by TestController#unrecognized_exception as HTML
114
+ Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
115
+  (0.1ms) rollback transaction
116
+  (0.3ms) begin transaction
117
+ Started GET "/unrecognized_exception" for 127.0.0.1 at 2015-02-16 00:55:33 -0800
118
+ Processing by TestController#unrecognized_exception as HTML
119
+ Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
120
+  (0.1ms) rollback transaction
121
+  (0.2ms) begin transaction
122
+ Started GET "/unrecognized_exception" for 127.0.0.1 at 2015-02-16 00:55:40 -0800
123
+ Processing by TestController#unrecognized_exception as HTML
124
+ Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
125
+  (0.1ms) rollback transaction
126
+  (0.3ms) begin transaction
127
+ Started GET "/unrecognized_exception" for 127.0.0.1 at 2015-02-16 00:57:39 -0800
128
+ Processing by TestController#unrecognized_exception as HTML
129
+ Completed 500 Internal Server Error in 0ms
130
+  (0.1ms) rollback transaction
131
+  (0.2ms) begin transaction
132
+ Started GET "/unrecognized_exception" for 127.0.0.1 at 2015-02-16 00:58:09 -0800
133
+ Processing by TestController#unrecognized_exception as HTML
134
+ Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
135
+  (0.1ms) rollback transaction
136
+  (0.3ms) begin transaction
137
+ Started GET "/unrecognized_exception" for 127.0.0.1 at 2015-02-16 01:06:51 -0800
138
+ Processing by TestController#unrecognized_exception as HTML
139
+ Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
140
+  (0.1ms) rollback transaction
141
+  (0.4ms) begin transaction
142
+ Started GET "/unrecognized_exception" for 127.0.0.1 at 2015-02-16 01:15:43 -0800
143
+ Processing by TestController#unrecognized_exception as HTML
144
+ Completed 500 Internal Server Error in 0ms
145
+  (0.1ms) rollback transaction
146
+  (0.3ms) begin transaction
147
+ Started GET "/unrecognized_exception" for 127.0.0.1 at 2015-02-16 01:16:13 -0800
148
+ Processing by TestController#unrecognized_exception as HTML
149
+ Completed 500 Internal Server Error in 0ms
150
+  (0.1ms) rollback transaction
151
+  (0.6ms) begin transaction
152
+ Started GET "/unrecognized_exception" for 127.0.0.1 at 2015-02-16 01:16:44 -0800
153
+ Processing by TestController#unrecognized_exception as HTML
154
+ Completed 500 Internal Server Error in 0ms
155
+  (0.1ms) rollback transaction
156
+  (0.2ms) begin transaction
157
+ Started GET "/unrecognized_exception" for 127.0.0.1 at 2015-02-16 01:17:01 -0800
158
+ Processing by TestController#unrecognized_exception as HTML
159
+ Completed 500 Internal Server Error in 0ms
160
+  (0.1ms) rollback transaction
161
+  (0.3ms) begin transaction
162
+ Started GET "/unrecognized_exception" for 127.0.0.1 at 2015-02-16 01:17:23 -0800
163
+ Processing by TestController#unrecognized_exception as HTML
164
+ Completed 201 Created in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
165
+  (0.1ms) rollback transaction
166
+  (0.2ms) begin transaction
167
+ Started GET "/unrecognized_exception" for 127.0.0.1 at 2015-02-16 01:17:32 -0800
168
+ Processing by TestController#unrecognized_exception as HTML
169
+ Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
170
+  (0.1ms) rollback transaction
171
+  (0.3ms) begin transaction
172
+ Started GET "/unrecognized_exception" for 127.0.0.1 at 2015-02-16 01:21:03 -0800
173
+ Processing by TestController#unrecognized_exception as HTML
174
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
175
+  (0.1ms) rollback transaction
176
+  (0.3ms) begin transaction
177
+ Started GET "/unrecognized_exception" for 127.0.0.1 at 2015-02-16 01:25:34 -0800
178
+ Processing by TestController#unrecognized_exception as HTML
179
+ Completed 500 Internal Server Error in 0ms
180
+  (0.1ms) rollback transaction
181
+  (0.3ms) begin transaction
182
+ Started GET "/unrecognized_exception" for 127.0.0.1 at 2015-02-16 01:25:59 -0800
183
+ Processing by TestController#unrecognized_exception as HTML
184
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
185
+  (0.1ms) rollback transaction
186
+  (0.3ms) begin transaction
187
+ Started GET "/unrecognized_exception" for 127.0.0.1 at 2015-02-16 01:26:43 -0800
188
+ Processing by TestController#unrecognized_exception as HTML
189
+ Completed 500 Internal Server Error in 0ms
190
+  (0.1ms) rollback transaction
191
+  (0.3ms) begin transaction
192
+ Started GET "/unrecognized_exception" for 127.0.0.1 at 2015-02-16 01:27:20 -0800
193
+ Processing by TestController#unrecognized_exception as HTML
194
+ Completed 500 Internal Server Error in 0ms
195
+  (0.1ms) rollback transaction
196
+  (0.3ms) begin transaction
197
+ Started GET "/unrecognized_exception" for 127.0.0.1 at 2015-02-16 01:27:38 -0800
198
+ Processing by TestController#unrecognized_exception as HTML
199
+ Completed 200 OK in 0ms (Views: 0.3ms | ActiveRecord: 0.0ms)
200
+  (0.1ms) rollback transaction
201
+  (0.3ms) begin transaction
202
+ Started GET "/unrecognized_exception" for 127.0.0.1 at 2015-02-16 01:29:13 -0800
203
+ Processing by TestController#unrecognized_exception as HTML
204
+ Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
205
+  (0.1ms) rollback transaction
206
+  (0.3ms) begin transaction
207
+ Started GET "/unrecognized_exception" for 127.0.0.1 at 2015-02-16 10:59:19 -0800
208
+ Processing by TestController#unrecognized_exception as HTML
209
+ Completed 422 Unprocessable Entity in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
210
+  (0.1ms) rollback transaction
211
+  (0.2ms) begin transaction
212
+ Started GET "/unrecognized_exception" for 127.0.0.1 at 2015-02-16 10:59:35 -0800
213
+ Processing by TestController#unrecognized_exception as HTML
214
+ Completed 422 Unprocessable Entity in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
215
+  (0.1ms) rollback transaction
216
+  (0.3ms) begin transaction
217
+ Started GET "/unrecognized_exception" for 127.0.0.1 at 2015-02-16 11:01:49 -0800
218
+ Processing by TestController#unrecognized_exception as HTML
219
+ Completed 422 Unprocessable Entity in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
220
+  (0.1ms) rollback transaction
221
+  (0.3ms) begin transaction
222
+ Started GET "/unrecognized_exception" for 127.0.0.1 at 2015-02-16 11:06:50 -0800
223
+ Processing by TestController#unrecognized_exception as HTML
224
+ Completed 422 Unprocessable Entity in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
225
+  (0.1ms) rollback transaction
226
+  (0.3ms) begin transaction
227
+ Started GET "/unrecognized_exception" for 127.0.0.1 at 2015-02-16 11:07:14 -0800
228
+ Processing by TestController#unrecognized_exception as HTML
229
+ Completed 422 Unprocessable Entity in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms)
230
+  (0.1ms) rollback transaction
231
+  (0.3ms) begin transaction
232
+ Started GET "/unrecognized_exception" for 127.0.0.1 at 2015-02-16 11:08:12 -0800
233
+ Processing by TestController#unrecognized_exception as HTML
234
+ Completed 422 Unprocessable Entity in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
235
+  (0.1ms) rollback transaction
236
+  (0.3ms) begin transaction
237
+ Started GET "/unrecognized_exception" for 127.0.0.1 at 2015-02-16 11:11:06 -0800
238
+ Processing by TestController#unrecognized_exception as HTML
239
+ Completed 422 Unprocessable Entity in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
240
+  (0.1ms) rollback transaction
241
+  (0.4ms) begin transaction
242
+ Started GET "/unrecognized_exception" for 127.0.0.1 at 2015-02-16 11:35:50 -0800
243
+ Processing by TestController#unrecognized_exception as HTML
244
+ Completed 422 Unprocessable Entity in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
245
+  (0.1ms) rollback transaction
246
+  (0.4ms) begin transaction
247
+ Started GET "/unrecognized_exception" for 127.0.0.1 at 2015-02-16 11:35:59 -0800
248
+ Processing by TestController#unrecognized_exception as HTML
249
+ Completed 422 Unprocessable Entity in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
250
+  (0.1ms) rollback transaction
251
+  (0.3ms) begin transaction
252
+ Started GET "/unrecognized_exception" for 127.0.0.1 at 2015-02-16 11:40:15 -0800
253
+ Processing by TestController#unrecognized_exception as HTML
254
+ Completed 422 Unprocessable Entity in 12ms (Views: 0.2ms | ActiveRecord: 0.0ms)
255
+  (0.1ms) rollback transaction
256
+  (0.3ms) begin transaction
257
+ Started GET "/unrecognized_exception" for 127.0.0.1 at 2015-02-16 11:40:51 -0800
258
+ Processing by TestController#unrecognized_exception as HTML
259
+ Completed 422 Unprocessable Entity in 7ms (Views: 0.2ms | ActiveRecord: 0.0ms)
260
+  (0.1ms) rollback transaction
261
+  (0.2ms) begin transaction
262
+ Started GET "/unrecognized_exception" for 127.0.0.1 at 2015-02-16 11:40:58 -0800
263
+ Processing by TestController#unrecognized_exception as HTML
264
+ Completed 422 Unprocessable Entity in 7ms (Views: 0.2ms | ActiveRecord: 0.0ms)
265
+  (0.1ms) rollback transaction
266
+  (0.3ms) begin transaction
267
+ Started GET "/unrecognized_exception" for 127.0.0.1 at 2015-02-16 11:41:34 -0800
268
+ Processing by TestController#unrecognized_exception as HTML
269
+ Completed 422 Unprocessable Entity in 7ms (Views: 0.2ms | ActiveRecord: 0.0ms)
270
+  (0.1ms) rollback transaction
271
+  (0.3ms) begin transaction
272
+ Started GET "/unrecognized_exception" for 127.0.0.1 at 2015-02-16 11:43:24 -0800
273
+ Processing by TestController#unrecognized_exception as HTML
274
+ Completed 422 Unprocessable Entity in 7ms (Views: 0.2ms | ActiveRecord: 0.0ms)
275
+  (0.1ms) rollback transaction
276
+  (0.3ms) begin transaction
277
+ Started GET "/unrecognized_exception" for 127.0.0.1 at 2015-02-16 11:44:11 -0800
278
+ Processing by TestController#unrecognized_exception as HTML
279
+ Completed 422 Unprocessable Entity in 5ms (Views: 0.2ms | ActiveRecord: 0.0ms)
280
+  (0.1ms) rollback transaction
281
+  (0.2ms) begin transaction
282
+ Started GET "/unrecognized_exception" for 127.0.0.1 at 2015-02-16 11:44:20 -0800
283
+ Processing by TestController#unrecognized_exception as HTML
284
+ Completed 422 Unprocessable Entity in 6ms (Views: 0.3ms | ActiveRecord: 0.0ms)
285
+  (0.1ms) rollback transaction
286
+  (0.3ms) begin transaction
287
+ Started GET "/unrecognized_exception" for 127.0.0.1 at 2015-02-16 11:44:50 -0800
288
+ Processing by TestController#unrecognized_exception as HTML
289
+ Completed 422 Unprocessable Entity in 5ms (Views: 0.2ms | ActiveRecord: 0.0ms)
290
+  (0.4ms) rollback transaction
291
+  (0.3ms) begin transaction
292
+ Started GET "/unrecognized_exception" for 127.0.0.1 at 2015-02-16 11:45:25 -0800
293
+ Processing by TestController#unrecognized_exception as HTML
294
+ Completed 422 Unprocessable Entity in 5ms (Views: 0.2ms | ActiveRecord: 0.0ms)
295
+  (0.1ms) rollback transaction
296
+  (0.3ms) begin transaction
297
+ Started GET "/unrecognized_exception" for 127.0.0.1 at 2015-02-16 11:46:42 -0800
298
+ Processing by TestController#unrecognized_exception as HTML
299
+ Completed 422 Unprocessable Entity in 4ms (Views: 0.2ms | ActiveRecord: 0.0ms)
300
+  (0.1ms) rollback transaction
301
+  (0.2ms) begin transaction
302
+ Started GET "/unrecognized_exception" for 127.0.0.1 at 2015-02-16 11:47:08 -0800
303
+ Processing by TestController#unrecognized_exception as HTML
304
+ Completed 422 Unprocessable Entity in 9ms (Views: 0.3ms | ActiveRecord: 0.0ms)
305
+  (0.1ms) rollback transaction
306
+  (0.3ms) begin transaction
307
+ Started GET "/unrecognized_exception" for 127.0.0.1 at 2015-02-16 11:49:28 -0800
308
+ Processing by TestController#unrecognized_exception as HTML
309
+ Completed 422 Unprocessable Entity in 7ms (Views: 0.2ms | ActiveRecord: 0.0ms)
310
+  (0.1ms) rollback transaction
311
+  (0.2ms) begin transaction
312
+ Started GET "/unrecognized_exception" for 127.0.0.1 at 2015-02-16 11:49:49 -0800
313
+ Processing by TestController#unrecognized_exception as HTML
314
+ Completed 422 Unprocessable Entity in 4ms (Views: 0.2ms | ActiveRecord: 0.0ms)
315
+  (0.1ms) rollback transaction
316
+  (0.2ms) begin transaction
317
+ Started GET "/unrecognized_exception" for 127.0.0.1 at 2015-02-16 11:50:49 -0800
318
+ Processing by TestController#unrecognized_exception as HTML
319
+ Completed 422 Unprocessable Entity in 11ms (Views: 0.2ms | ActiveRecord: 0.0ms)
320
+  (0.1ms) rollback transaction
321
+  (0.2ms) begin transaction
322
+ Started GET "/unrecognized_exception" for 127.0.0.1 at 2015-02-16 11:51:01 -0800
323
+ Processing by TestController#unrecognized_exception as HTML
324
+ Completed 422 Unprocessable Entity in 10ms (Views: 0.3ms | ActiveRecord: 0.0ms)
325
+  (0.1ms) rollback transaction
326
+  (0.3ms) begin transaction
327
+ Started GET "/unrecognized_exception" for 127.0.0.1 at 2015-02-16 11:53:34 -0800
328
+ Processing by TestController#unrecognized_exception as HTML
329
+ Completed 422 Unprocessable Entity in 10ms (Views: 0.6ms | ActiveRecord: 0.0ms)
330
+  (0.1ms) rollback transaction
331
+  (0.3ms) begin transaction
332
+ Started GET "/unrecognized_exception" for 127.0.0.1 at 2015-02-16 11:54:31 -0800
333
+ Processing by TestController#unrecognized_exception as HTML
334
+ Completed 422 Unprocessable Entity in 12ms (Views: 0.3ms | ActiveRecord: 0.0ms)
335
+  (0.1ms) rollback transaction
336
+  (0.3ms) begin transaction
337
+ Started GET "/unrecognized_exception" for 127.0.0.1 at 2015-02-16 11:55:32 -0800
338
+ Processing by TestController#unrecognized_exception as HTML
339
+ Completed 422 Unprocessable Entity in 8ms (Views: 0.2ms | ActiveRecord: 0.0ms)
340
+  (0.1ms) rollback transaction
341
+  (0.3ms) begin transaction
342
+ Started GET "/unrecognized_exception" for 127.0.0.1 at 2015-02-16 11:55:45 -0800
343
+ Processing by TestController#unrecognized_exception as HTML
344
+ Completed 422 Unprocessable Entity in 8ms (Views: 0.4ms | ActiveRecord: 0.0ms)
345
+  (0.1ms) rollback transaction
346
+  (0.3ms) begin transaction
347
+ Started GET "/unrecognized_exception" for 127.0.0.1 at 2015-02-16 11:56:24 -0800
348
+ Processing by TestController#unrecognized_exception as HTML
349
+ Completed 422 Unprocessable Entity in 9ms (Views: 0.2ms | ActiveRecord: 0.0ms)
350
+  (0.1ms) rollback transaction
351
+  (0.2ms) begin transaction
352
+ Started GET "/unrecognized_exception" for 127.0.0.1 at 2015-02-16 11:56:51 -0800
353
+ Processing by TestController#unrecognized_exception as HTML
354
+ Completed 422 Unprocessable Entity in 4ms (Views: 0.2ms | ActiveRecord: 0.0ms)
355
+  (0.1ms) rollback transaction
356
+  (0.3ms) begin transaction
357
+ Started GET "/unrecognized_exception" for 127.0.0.1 at 2015-02-16 11:57:03 -0800
358
+ Processing by TestController#unrecognized_exception as HTML
359
+ Completed 422 Unprocessable Entity in 8ms (Views: 0.2ms | ActiveRecord: 0.0ms)
360
+  (0.1ms) rollback transaction
361
+  (0.3ms) begin transaction
362
+ Started GET "/unrecognized_exception" for 127.0.0.1 at 2015-02-16 11:57:49 -0800
363
+ Processing by TestController#unrecognized_exception as HTML
364
+ Completed 422 Unprocessable Entity in 10ms (Views: 0.3ms | ActiveRecord: 0.0ms)
365
+  (0.1ms) rollback transaction
366
+  (0.2ms) begin transaction
367
+ Started GET "/unrecognized_exception" for 127.0.0.1 at 2015-02-16 11:58:02 -0800
368
+ Processing by TestController#unrecognized_exception as HTML
369
+ Completed 422 Unprocessable Entity in 7ms (Views: 0.2ms | ActiveRecord: 0.0ms)
370
+  (0.1ms) rollback transaction
371
+  (0.2ms) begin transaction
372
+ Started GET "/unrecognized_exception" for 127.0.0.1 at 2015-02-16 11:59:37 -0800
373
+ Processing by TestController#unrecognized_exception as HTML
374
+ Completed 422 Unprocessable Entity in 8ms (Views: 0.2ms | ActiveRecord: 0.0ms)
375
+  (0.1ms) rollback transaction
376
+  (0.4ms) begin transaction
377
+ Started GET "/unrecognized_exception" for 127.0.0.1 at 2015-02-16 12:00:05 -0800
378
+ Processing by TestController#unrecognized_exception as HTML
379
+ Completed 422 Unprocessable Entity in 8ms (Views: 0.3ms | ActiveRecord: 0.0ms)
380
+  (0.2ms) rollback transaction
381
+  (0.3ms) begin transaction
382
+ Started GET "/unrecognized_exception" for 127.0.0.1 at 2015-02-16 12:00:29 -0800
383
+ Processing by TestController#unrecognized_exception as HTML
384
+ Completed 422 Unprocessable Entity in 9ms (Views: 0.2ms | ActiveRecord: 0.0ms)
385
+  (0.1ms) rollback transaction
386
+  (0.3ms) begin transaction
387
+ Started GET "/unrecognized_exception" for 127.0.0.1 at 2015-02-16 12:30:23 -0800
388
+ Processing by TestController#unrecognized_exception as HTML
389
+ Completed 500 Internal Server Error in 2ms
390
+  (0.1ms) rollback transaction
391
+  (12.1ms) begin transaction
392
+ Started GET "/unrecognized_exception" for 127.0.0.1 at 2015-02-16 12:30:46 -0800
393
+ Processing by TestController#unrecognized_exception as HTML
394
+ Completed 500 Internal Server Error in 2ms
395
+  (0.1ms) rollback transaction
396
+  (0.2ms) begin transaction
397
+ Started GET "/unrecognized_exception" for 127.0.0.1 at 2015-02-16 12:31:14 -0800
398
+ Processing by TestController#unrecognized_exception as HTML
399
+ Completed 422 Unprocessable Entity in 9ms (Views: 0.4ms | ActiveRecord: 0.0ms)
400
+  (0.1ms) rollback transaction
401
+  (0.2ms) begin transaction
402
+ Started GET "/unrecognized_exception" for 127.0.0.1 at 2015-02-16 12:31:50 -0800
403
+ Processing by TestController#unrecognized_exception as HTML
404
+ Completed 422 Unprocessable Entity in 5ms (Views: 0.2ms | ActiveRecord: 0.0ms)
405
+  (0.1ms) rollback transaction
406
+  (0.3ms) begin transaction
407
+ Started GET "/unrecognized_exception" for 127.0.0.1 at 2015-02-16 12:35:18 -0800
408
+ Processing by TestController#unrecognized_exception as HTML
409
+ Completed 422 Unprocessable Entity in 8ms (Views: 0.2ms | ActiveRecord: 0.0ms)
410
+  (0.1ms) rollback transaction
411
+  (0.3ms) begin transaction
412
+ Started GET "/unrecognized_exception" for 127.0.0.1 at 2015-02-16 12:35:55 -0800
413
+ Processing by TestController#unrecognized_exception as HTML
414
+ Completed 500 Internal Server Error in 9ms (Views: 0.2ms | ActiveRecord: 0.0ms)
415
+  (0.1ms) rollback transaction
416
+  (0.2ms) begin transaction
417
+ Started GET "/unrecognized_exception" for 127.0.0.1 at 2015-02-16 12:37:22 -0800
418
+ Processing by TestController#unrecognized_exception as HTML
419
+ Completed 500 Internal Server Error in 11ms (Views: 0.2ms | ActiveRecord: 0.0ms)
420
+  (0.1ms) rollback transaction
421
+  (0.3ms) begin transaction
422
+ Started GET "/unrecognized_exception" for 127.0.0.1 at 2015-02-16 12:37:45 -0800
423
+ Processing by TestController#unrecognized_exception as HTML
424
+ Completed 500 Internal Server Error in 9ms (Views: 0.2ms | ActiveRecord: 0.0ms)
425
+  (0.1ms) rollback transaction
426
+  (0.3ms) begin transaction
427
+ Started GET "/not_unique" for 127.0.0.1 at 2015-02-16 12:40:09 -0800
428
+ Processing by TestController#not_unique as HTML
429
+ Completed 500 Internal Server Error in 9ms (Views: 0.2ms | ActiveRecord: 0.0ms)
430
+  (0.1ms) rollback transaction
431
+  (0.1ms) begin transaction
432
+ Started GET "/unrecognized_exception" for 127.0.0.1 at 2015-02-16 12:40:09 -0800
433
+ Processing by TestController#unrecognized_exception as HTML
434
+ Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)
435
+  (0.1ms) rollback transaction
436
+  (0.3ms) begin transaction
437
+ Started GET "/not_unique" for 127.0.0.1 at 2015-02-16 12:41:12 -0800
438
+ Processing by TestController#not_unique as HTML
439
+ Completed 500 Internal Server Error in 9ms (Views: 0.2ms | ActiveRecord: 0.0ms)
440
+  (0.1ms) rollback transaction
441
+  (0.0ms) begin transaction
442
+ Started GET "/unrecognized_exception" for 127.0.0.1 at 2015-02-16 12:41:12 -0800
443
+ Processing by TestController#unrecognized_exception as HTML
444
+ Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.0ms)
445
+  (0.1ms) rollback transaction
446
+  (0.2ms) begin transaction
447
+ Started GET "/unrecognized_exception" for 127.0.0.1 at 2015-02-16 12:41:46 -0800
448
+ Processing by TestController#unrecognized_exception as HTML
449
+ Completed 500 Internal Server Error in 10ms (Views: 0.2ms | ActiveRecord: 0.0ms)
450
+  (0.1ms) rollback transaction
451
+  (0.5ms) begin transaction
452
+ Started GET "/not_unique" for 127.0.0.1 at 2015-02-16 12:42:27 -0800
453
+ Processing by TestController#not_unique as HTML
454
+ Completed 500 Internal Server Error in 11ms (Views: 0.2ms | ActiveRecord: 0.0ms)
455
+  (0.1ms) rollback transaction
456
+  (0.0ms) begin transaction
457
+ Started GET "/unrecognized_exception" for 127.0.0.1 at 2015-02-16 12:42:27 -0800
458
+ Processing by TestController#unrecognized_exception as HTML
459
+ Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)
460
+  (0.1ms) rollback transaction
461
+  (0.2ms) begin transaction
462
+ Started GET "/unrecognized_exception" for 127.0.0.1 at 2015-02-16 12:43:33 -0800
463
+ Processing by TestController#unrecognized_exception as HTML
464
+ Completed 500 Internal Server Error in 15ms (Views: 0.2ms | ActiveRecord: 0.0ms)
465
+  (0.1ms) rollback transaction
466
+  (0.0ms) begin transaction
467
+ Started GET "/not_found" for 127.0.0.1 at 2015-02-16 12:43:33 -0800
468
+  (0.1ms) rollback transaction
469
+  (0.2ms) begin transaction
470
+ Started GET "/not_found" for 127.0.0.1 at 2015-02-16 12:43:46 -0800
471
+  (0.1ms) rollback transaction
472
+  (0.1ms) begin transaction
473
+ Started GET "/unrecognized_exception" for 127.0.0.1 at 2015-02-16 12:43:46 -0800
474
+ Processing by TestController#unrecognized_exception as HTML
475
+ Completed 500 Internal Server Error in 7ms (Views: 0.2ms | ActiveRecord: 0.0ms)
476
+  (0.1ms) rollback transaction
477
+  (0.2ms) begin transaction
478
+ Started GET "/unrecognized_exception" for 127.0.0.1 at 2015-02-16 12:43:58 -0800
479
+ Processing by TestController#unrecognized_exception as HTML
480
+ Completed 500 Internal Server Error in 6ms (Views: 0.2ms | ActiveRecord: 0.0ms)
481
+  (0.1ms) rollback transaction
482
+  (0.1ms) begin transaction
483
+ Started GET "/not_found" for 127.0.0.1 at 2015-02-16 12:43:58 -0800
484
+ Processing by TestController#not_found as HTML
485
+ Completed 404 Not Found in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
486
+  (0.1ms) rollback transaction
487
+  (0.3ms) begin transaction
488
+ Started GET "/unrecognized_exception" for 127.0.0.1 at 2015-02-16 12:47:09 -0800
489
+ Processing by TestController#unrecognized_exception as HTML
490
+ Completed 500 Internal Server Error in 10ms (Views: 0.2ms | ActiveRecord: 0.0ms)
491
+  (0.1ms) rollback transaction
492
+  (0.0ms) begin transaction
493
+ Started GET "/not_found" for 127.0.0.1 at 2015-02-16 12:47:09 -0800
494
+ Processing by TestController#not_found as HTML
495
+ Completed 404 Not Found in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
496
+  (0.1ms) rollback transaction
497
+  (0.3ms) begin transaction
498
+ Started GET "/invalid_attribute" for 127.0.0.1 at 2015-02-16 12:53:48 -0800
499
+ Processing by TestController#invalid_attribute as HTML
500
+  (0.5ms) SAVEPOINT active_record_1
501
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
502
+ Completed 422 Unprocessable Entity in 20ms (Views: 0.2ms | ActiveRecord: 1.6ms)
503
+  (0.1ms) rollback transaction
504
+  (0.0ms) begin transaction
505
+ Started GET "/unrecognized_exception" for 127.0.0.1 at 2015-02-16 12:53:48 -0800
506
+ Processing by TestController#unrecognized_exception as HTML
507
+ Completed 500 Internal Server Error in 3ms (Views: 0.2ms | ActiveRecord: 0.0ms)
508
+  (0.1ms) rollback transaction
509
+  (0.1ms) begin transaction
510
+ Started GET "/not_found" for 127.0.0.1 at 2015-02-16 12:53:48 -0800
511
+ Processing by TestController#not_found as HTML
512
+ Completed 404 Not Found in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
513
+  (0.1ms) rollback transaction
514
+  (0.3ms) begin transaction
515
+ Started GET "/not_found" for 127.0.0.1 at 2015-02-16 12:54:59 -0800
516
+ Processing by TestController#not_found as HTML
517
+ Completed 404 Not Found in 8ms (Views: 0.2ms | ActiveRecord: 0.0ms)
518
+  (0.1ms) rollback transaction
519
+  (0.1ms) begin transaction
520
+ Started GET "/invalid_attribute" for 127.0.0.1 at 2015-02-16 12:54:59 -0800
521
+ Processing by TestController#invalid_attribute as HTML
522
+  (0.1ms) SAVEPOINT active_record_1
523
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
524
+ Completed 422 Unprocessable Entity in 70ms (Views: 0.2ms | ActiveRecord: 1.7ms)
525
+  (0.1ms) rollback transaction
526
+  (0.1ms) begin transaction
527
+ Started GET "/unrecognized_exception" for 127.0.0.1 at 2015-02-16 12:54:59 -0800
528
+ Processing by TestController#unrecognized_exception as HTML
529
+ Completed 500 Internal Server Error in 2ms (Views: 0.2ms | ActiveRecord: 0.0ms)
530
+  (0.1ms) rollback transaction
531
+  (0.5ms) begin transaction
532
+ Started GET "/invalid_attribute" for 127.0.0.1 at 2015-02-16 12:55:17 -0800
533
+ Processing by TestController#invalid_attribute as HTML
534
+  (0.0ms) SAVEPOINT active_record_1
535
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
536
+ Completed 422 Unprocessable Entity in 27ms (Views: 0.2ms | ActiveRecord: 2.4ms)
537
+  (0.1ms) rollback transaction
538
+  (0.0ms) begin transaction
539
+ Started GET "/unrecognized_exception" for 127.0.0.1 at 2015-02-16 12:55:18 -0800
540
+ Processing by TestController#unrecognized_exception as HTML
541
+ Completed 500 Internal Server Error in 2ms (Views: 0.2ms | ActiveRecord: 0.0ms)
542
+  (0.1ms) rollback transaction
543
+  (0.0ms) begin transaction
544
+ Started GET "/not_found" for 127.0.0.1 at 2015-02-16 12:55:18 -0800
545
+ Processing by TestController#not_found as HTML
546
+ Completed 404 Not Found in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
547
+  (0.1ms) rollback transaction
548
+  (0.3ms) begin transaction
549
+ Started GET "/invalid_attribute" for 127.0.0.1 at 2015-02-16 12:56:27 -0800
550
+ Processing by TestController#invalid_attribute as HTML
551
+  (0.0ms) SAVEPOINT active_record_1
552
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
553
+ Completed 422 Unprocessable Entity in 23ms (Views: 0.2ms | ActiveRecord: 1.6ms)
554
+  (0.1ms) rollback transaction
555
+  (0.0ms) begin transaction
556
+ Started GET "/unrecognized_exception" for 127.0.0.1 at 2015-02-16 12:56:27 -0800
557
+ Processing by TestController#unrecognized_exception as HTML
558
+ Completed 500 Internal Server Error in 14ms (Views: 0.2ms | ActiveRecord: 0.0ms)
559
+  (0.1ms) rollback transaction
560
+  (0.1ms) begin transaction
561
+ Started GET "/not_found" for 127.0.0.1 at 2015-02-16 12:56:27 -0800
562
+ Processing by TestController#not_found as HTML
563
+ Completed 404 Not Found in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
564
+  (0.1ms) rollback transaction
565
+  (0.0ms) begin transaction
566
+ Started GET "/nonexistant_route" for 127.0.0.1 at 2015-02-16 12:56:27 -0800
567
+  (0.1ms) rollback transaction
568
+  (0.3ms) begin transaction
569
+ Started GET "/wrong_route" for 127.0.0.1 at 2015-02-16 13:17:56 -0800
570
+  (0.1ms) rollback transaction
571
+  (0.0ms) begin transaction
572
+ Started GET "/unrecognized_exception" for 127.0.0.1 at 2015-02-16 13:17:56 -0800
573
+ Processing by TestController#unrecognized_exception as HTML
574
+ Completed 500 Internal Server Error in 10ms (Views: 0.2ms | ActiveRecord: 0.0ms)
575
+  (0.1ms) rollback transaction
576
+  (0.0ms) begin transaction
577
+ Started GET "/invalid_attribute" for 127.0.0.1 at 2015-02-16 13:17:56 -0800
578
+ Processing by TestController#invalid_attribute as HTML
579
+  (0.1ms) SAVEPOINT active_record_1
580
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
581
+ Completed 422 Unprocessable Entity in 24ms (Views: 0.2ms | ActiveRecord: 1.7ms)
582
+  (0.1ms) rollback transaction
583
+  (0.0ms) begin transaction
584
+ Started GET "/not_found" for 127.0.0.1 at 2015-02-16 13:17:56 -0800
585
+ Processing by TestController#not_found as HTML
586
+ Completed 404 Not Found in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
587
+  (0.1ms) rollback transaction
588
+  (0.3ms) begin transaction
589
+ Started GET "/not_found" for 127.0.0.1 at 2015-02-16 13:18:44 -0800
590
+ Processing by TestController#not_found as HTML
591
+ Completed 404 Not Found in 9ms (Views: 0.2ms | ActiveRecord: 0.0ms)
592
+  (0.1ms) rollback transaction
593
+  (0.0ms) begin transaction
594
+ Started GET "/wrong_route" for 127.0.0.1 at 2015-02-16 13:18:44 -0800
595
+  (0.1ms) rollback transaction
596
+  (0.0ms) begin transaction
597
+ Started GET "/unrecognized_exception" for 127.0.0.1 at 2015-02-16 13:18:44 -0800
598
+ Processing by TestController#unrecognized_exception as HTML
599
+ Completed 500 Internal Server Error in 4ms (Views: 0.2ms | ActiveRecord: 0.0ms)
600
+  (0.1ms) rollback transaction
601
+  (0.1ms) begin transaction
602
+ Started GET "/invalid_attribute" for 127.0.0.1 at 2015-02-16 13:18:44 -0800
603
+ Processing by TestController#invalid_attribute as HTML
604
+  (0.1ms) SAVEPOINT active_record_1
605
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
606
+ Completed 422 Unprocessable Entity in 40ms (Views: 0.2ms | ActiveRecord: 22.2ms)
607
+  (0.1ms) rollback transaction
608
+  (0.3ms) begin transaction
609
+ Started GET "/not_found" for 127.0.0.1 at 2015-02-16 13:20:11 -0800
610
+ Processing by TestController#not_found as HTML
611
+ Completed 404 Not Found in 8ms (Views: 0.2ms | ActiveRecord: 0.0ms)
612
+  (0.1ms) rollback transaction
613
+  (0.0ms) begin transaction
614
+ Started GET "/unrecognized_exception" for 127.0.0.1 at 2015-02-16 13:20:11 -0800
615
+ Processing by TestController#unrecognized_exception as HTML
616
+ Completed 500 Internal Server Error in 2ms (Views: 0.2ms | ActiveRecord: 0.0ms)
617
+  (0.1ms) rollback transaction
618
+  (0.1ms) begin transaction
619
+ Started GET "/invalid_attribute" for 127.0.0.1 at 2015-02-16 13:20:11 -0800
620
+ Processing by TestController#invalid_attribute as HTML
621
+  (0.1ms) SAVEPOINT active_record_1
622
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
623
+ Completed 422 Unprocessable Entity in 65ms (Views: 0.3ms | ActiveRecord: 1.9ms)
624
+  (0.1ms) rollback transaction
625
+  (0.5ms) begin transaction
626
+ Started GET "/unrecognized_exception" for 127.0.0.1 at 2015-02-16 13:20:30 -0800
627
+ Processing by TestController#unrecognized_exception as HTML
628
+ Completed 500 Internal Server Error in 10ms (Views: 0.2ms | ActiveRecord: 0.0ms)
629
+  (0.2ms) rollback transaction
630
+  (0.1ms) begin transaction
631
+ Started GET "/invalid_attribute" for 127.0.0.1 at 2015-02-16 13:20:30 -0800
632
+ Processing by TestController#invalid_attribute as HTML
633
+  (0.2ms) SAVEPOINT active_record_1
634
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
635
+ Completed 422 Unprocessable Entity in 72ms (Views: 0.4ms | ActiveRecord: 2.7ms)
636
+  (0.1ms) rollback transaction
637
+  (0.1ms) begin transaction
638
+ Started GET "/not_found" for 127.0.0.1 at 2015-02-16 13:20:30 -0800
639
+ Processing by TestController#not_found as HTML
640
+ Completed 404 Not Found in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
641
+  (0.1ms) rollback transaction
642
+  (0.1ms) begin transaction
643
+ Started GET "/not_unique" for 127.0.0.1 at 2015-02-16 13:20:30 -0800
644
+ Processing by TestController#not_unique as HTML
645
+ Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.0ms)
646
+  (0.1ms) rollback transaction
647
+  (0.3ms) begin transaction
648
+ Started GET "/custom" for 127.0.0.1 at 2015-02-16 13:26:53 -0800
649
+  (0.1ms) rollback transaction
650
+  (0.3ms) begin transaction
651
+ Started GET "/not_found" for 127.0.0.1 at 2015-02-16 13:26:53 -0800
652
+ Processing by TestController#not_found as HTML
653
+ Completed 404 Not Found in 52ms (Views: 0.8ms | ActiveRecord: 0.0ms)
654
+  (0.1ms) rollback transaction
655
+  (0.1ms) begin transaction
656
+ Started GET "/unrecognized_exception" for 127.0.0.1 at 2015-02-16 13:26:53 -0800
657
+ Processing by TestController#unrecognized_exception as HTML
658
+ Completed 500 Internal Server Error in 2ms (Views: 0.2ms | ActiveRecord: 0.0ms)
659
+  (0.1ms) rollback transaction
660
+  (0.1ms) begin transaction
661
+ Started GET "/invalid_attribute" for 127.0.0.1 at 2015-02-16 13:26:53 -0800
662
+ Processing by TestController#invalid_attribute as HTML
663
+  (0.1ms) SAVEPOINT active_record_1
664
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
665
+ Completed 422 Unprocessable Entity in 25ms (Views: 0.2ms | ActiveRecord: 1.7ms)
666
+  (0.1ms) rollback transaction
667
+  (0.3ms) begin transaction
668
+ Started GET "/unrecognized_exception" for 127.0.0.1 at 2015-02-16 13:27:30 -0800
669
+ Processing by TestController#unrecognized_exception as HTML
670
+ Completed 500 Internal Server Error in 8ms (Views: 0.2ms | ActiveRecord: 0.0ms)
671
+  (0.1ms) rollback transaction
672
+  (0.0ms) begin transaction
673
+ Started GET "/custom" for 127.0.0.1 at 2015-02-16 13:27:30 -0800
674
+ Processing by TestController#custom as HTML
675
+ Completed 422 Unprocessable Entity in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
676
+  (0.1ms) rollback transaction
677
+  (0.1ms) begin transaction
678
+ Started GET "/invalid_attribute" for 127.0.0.1 at 2015-02-16 13:27:30 -0800
679
+ Processing by TestController#invalid_attribute as HTML
680
+  (0.1ms) SAVEPOINT active_record_1
681
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
682
+ Completed 422 Unprocessable Entity in 24ms (Views: 0.2ms | ActiveRecord: 1.6ms)
683
+  (0.1ms) rollback transaction
684
+  (0.0ms) begin transaction
685
+ Started GET "/not_found" for 127.0.0.1 at 2015-02-16 13:27:30 -0800
686
+ Processing by TestController#not_found as HTML
687
+ Completed 404 Not Found in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
688
+  (0.1ms) rollback transaction
689
+  (0.3ms) begin transaction
690
+ Started GET "/custom" for 127.0.0.1 at 2015-02-16 13:33:16 -0800
691
+ Processing by TestController#custom as HTML
692
+ Completed 422 Unprocessable Entity in 7ms (Views: 0.2ms | ActiveRecord: 0.0ms)
693
+  (0.1ms) rollback transaction
694
+  (0.1ms) begin transaction
695
+ Started GET "/unrecognized_exception" for 127.0.0.1 at 2015-02-16 13:33:16 -0800
696
+ Processing by TestController#unrecognized_exception as HTML
697
+ Completed 500 Internal Server Error in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
698
+  (0.1ms) rollback transaction
699
+  (0.0ms) begin transaction
700
+ Started GET "/not_found" for 127.0.0.1 at 2015-02-16 13:33:16 -0800
701
+ Processing by TestController#not_found as HTML
702
+ Completed 404 Not Found in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
703
+  (0.1ms) rollback transaction
704
+  (0.0ms) begin transaction
705
+ Started GET "/invalid_attribute" for 127.0.0.1 at 2015-02-16 13:33:16 -0800
706
+ Processing by TestController#invalid_attribute as HTML
707
+  (0.1ms) SAVEPOINT active_record_1
708
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
709
+ Completed 422 Unprocessable Entity in 27ms (Views: 0.2ms | ActiveRecord: 2.5ms)
710
+  (0.1ms) rollback transaction
711
+  (0.4ms) begin transaction
712
+ Started GET "/not_found" for 127.0.0.1 at 2015-02-16 13:38:03 -0800
713
+ Processing by TestController#not_found as HTML
714
+ Completed 404 Not Found in 8ms (Views: 0.2ms | ActiveRecord: 0.0ms)
715
+  (0.1ms) rollback transaction
716
+  (0.0ms) begin transaction
717
+ Started GET "/unrecognized_exception" for 127.0.0.1 at 2015-02-16 13:38:03 -0800
718
+ Processing by TestController#unrecognized_exception as HTML
719
+ Completed 500 Internal Server Error in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
720
+  (0.1ms) rollback transaction
721
+  (0.0ms) begin transaction
722
+ Started GET "/explicit" for 127.0.0.1 at 2015-02-16 13:38:03 -0800
723
+ Processing by TestController#explicit as HTML
724
+ Completed 422 Unprocessable Entity in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
725
+  (0.1ms) rollback transaction
726
+  (0.0ms) begin transaction
727
+ Started GET "/localized" for 127.0.0.1 at 2015-02-16 13:38:03 -0800
728
+  (0.1ms) rollback transaction
729
+  (0.1ms) begin transaction
730
+ Started GET "/with_lambdas" for 127.0.0.1 at 2015-02-16 13:38:03 -0800
731
+  (0.3ms) rollback transaction
732
+  (0.2ms) begin transaction
733
+ Started GET "/invalid_attribute" for 127.0.0.1 at 2015-02-16 13:38:03 -0800
734
+ Processing by TestController#invalid_attribute as HTML
735
+  (0.1ms) SAVEPOINT active_record_1
736
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
737
+ Completed 422 Unprocessable Entity in 37ms (Views: 0.3ms | ActiveRecord: 4.6ms)
738
+  (0.1ms) rollback transaction
739
+  (0.3ms) begin transaction
740
+ Started GET "/record_invalid" for 127.0.0.1 at 2015-02-16 13:38:53 -0800
741
+ Processing by TestController#record_invalid as HTML
742
+  (0.0ms) SAVEPOINT active_record_1
743
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
744
+ Completed 422 Unprocessable Entity in 23ms (Views: 0.3ms | ActiveRecord: 1.6ms)
745
+  (0.1ms) rollback transaction
746
+  (0.1ms) begin transaction
747
+ Started GET "/not_found" for 127.0.0.1 at 2015-02-16 13:38:53 -0800
748
+ Processing by TestController#not_found as HTML
749
+ Completed 404 Not Found in 3ms (Views: 0.5ms | ActiveRecord: 0.0ms)
750
+  (0.1ms) rollback transaction
751
+  (0.1ms) begin transaction
752
+ Started GET "/localized" for 127.0.0.1 at 2015-02-16 13:38:53 -0800
753
+  (0.1ms) rollback transaction
754
+  (0.1ms) begin transaction
755
+ Started GET "/with_lambdas" for 127.0.0.1 at 2015-02-16 13:38:53 -0800
756
+  (0.1ms) rollback transaction
757
+  (0.2ms) begin transaction
758
+ Started GET "/explicit" for 127.0.0.1 at 2015-02-16 13:38:53 -0800
759
+ Processing by TestController#explicit as HTML
760
+ Completed 422 Unprocessable Entity in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
761
+  (0.1ms) rollback transaction
762
+  (0.0ms) begin transaction
763
+ Started GET "/unrecognized_exception" for 127.0.0.1 at 2015-02-16 13:38:53 -0800
764
+ Processing by TestController#unrecognized_exception as HTML
765
+ Completed 500 Internal Server Error in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
766
+  (0.1ms) rollback transaction
767
+  (0.3ms) begin transaction
768
+ Started GET "/unrecognized_exception" for 127.0.0.1 at 2015-02-16 13:40:04 -0800
769
+ Processing by TestController#unrecognized_exception as HTML
770
+ Completed 500 Internal Server Error in 9ms (Views: 0.2ms | ActiveRecord: 0.0ms)
771
+  (0.1ms) rollback transaction
772
+  (0.1ms) begin transaction
773
+ Started GET "/explicit" for 127.0.0.1 at 2015-02-16 13:40:04 -0800
774
+ Processing by TestController#explicit as HTML
775
+ Completed 422 Unprocessable Entity in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
776
+  (0.1ms) rollback transaction
777
+  (0.0ms) begin transaction
778
+ Started GET "/localized" for 127.0.0.1 at 2015-02-16 13:40:04 -0800
779
+ Processing by TestController#localized as HTML
780
+ Completed 422 Unprocessable Entity in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
781
+  (0.1ms) rollback transaction
782
+  (0.0ms) begin transaction
783
+ Started GET "/with_lambdas" for 127.0.0.1 at 2015-02-16 13:40:04 -0800
784
+ Processing by TestController#with_lambdas as HTML
785
+ Completed 422 Unprocessable Entity in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
786
+  (0.1ms) rollback transaction
787
+  (0.0ms) begin transaction
788
+ Started GET "/not_found" for 127.0.0.1 at 2015-02-16 13:40:04 -0800
789
+ Processing by TestController#not_found as HTML
790
+ Completed 404 Not Found in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
791
+  (0.1ms) rollback transaction
792
+  (0.1ms) begin transaction
793
+ Started GET "/record_invalid" for 127.0.0.1 at 2015-02-16 13:40:04 -0800
794
+ Processing by TestController#record_invalid as HTML
795
+  (0.1ms) SAVEPOINT active_record_1
796
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
797
+ Completed 422 Unprocessable Entity in 18ms (Views: 0.2ms | ActiveRecord: 2.4ms)
798
+  (0.1ms) rollback transaction
799
+  (0.3ms) begin transaction
800
+ Started GET "/with_lambdas" for 127.0.0.1 at 2015-02-16 13:40:39 -0800
801
+ Processing by TestController#with_lambdas as HTML
802
+ Completed 422 Unprocessable Entity in 8ms (Views: 0.2ms | ActiveRecord: 0.0ms)
803
+  (0.1ms) rollback transaction
804
+  (0.0ms) begin transaction
805
+ Started GET "/explicit" for 127.0.0.1 at 2015-02-16 13:40:39 -0800
806
+ Processing by TestController#explicit as HTML
807
+ Completed 422 Unprocessable Entity in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
808
+  (0.1ms) rollback transaction
809
+  (0.1ms) begin transaction
810
+ Started GET "/localized" for 127.0.0.1 at 2015-02-16 13:40:39 -0800
811
+ Processing by TestController#localized as HTML
812
+ Completed 422 Unprocessable Entity in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
813
+  (0.1ms) rollback transaction
814
+  (0.1ms) begin transaction
815
+ Started GET "/unrecognized_exception" for 127.0.0.1 at 2015-02-16 13:40:39 -0800
816
+ Processing by TestController#unrecognized_exception as HTML
817
+ Completed 500 Internal Server Error in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
818
+  (0.1ms) rollback transaction
819
+  (0.1ms) begin transaction
820
+ Started GET "/record_invalid" for 127.0.0.1 at 2015-02-16 13:40:39 -0800
821
+ Processing by TestController#record_invalid as HTML
822
+  (0.1ms) SAVEPOINT active_record_1
823
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
824
+ Completed 422 Unprocessable Entity in 17ms (Views: 0.1ms | ActiveRecord: 1.7ms)
825
+  (0.1ms) rollback transaction
826
+  (0.0ms) begin transaction
827
+ Started GET "/not_found" for 127.0.0.1 at 2015-02-16 13:40:39 -0800
828
+ Processing by TestController#not_found as HTML
829
+ Completed 404 Not Found in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
830
+  (0.1ms) rollback transaction
831
+  (0.3ms) begin transaction
832
+ Started GET "/unrecognized_exception" for 127.0.0.1 at 2015-02-16 13:41:19 -0800
833
+ Processing by TestController#unrecognized_exception as HTML
834
+ Completed 500 Internal Server Error in 9ms (Views: 0.2ms | ActiveRecord: 0.0ms)
835
+  (0.1ms) rollback transaction
836
+  (0.0ms) begin transaction
837
+ Started GET "/explicit" for 127.0.0.1 at 2015-02-16 13:41:19 -0800
838
+ Processing by TestController#explicit as HTML
839
+ Completed 422 Unprocessable Entity in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
840
+  (0.1ms) rollback transaction
841
+  (0.0ms) begin transaction
842
+ Started GET "/localized" for 127.0.0.1 at 2015-02-16 13:41:19 -0800
843
+ Processing by TestController#localized as HTML
844
+ Completed 422 Unprocessable Entity in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
845
+  (0.2ms) rollback transaction
846
+  (0.1ms) begin transaction
847
+ Started GET "/with_lambdas" for 127.0.0.1 at 2015-02-16 13:41:19 -0800
848
+ Processing by TestController#with_lambdas as HTML
849
+ Completed 422 Unprocessable Entity in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
850
+  (0.1ms) rollback transaction
851
+  (0.1ms) begin transaction
852
+ Started GET "/record_not_found" for 127.0.0.1 at 2015-02-16 13:41:19 -0800
853
+ Processing by TestController#record_not_found as HTML
854
+ Completed 404 Not Found in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
855
+  (0.1ms) rollback transaction
856
+  (0.0ms) begin transaction
857
+ Started GET "/record_invalid" for 127.0.0.1 at 2015-02-16 13:41:19 -0800
858
+ Processing by TestController#record_invalid as HTML
859
+  (0.0ms) SAVEPOINT active_record_1
860
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
861
+ Completed 422 Unprocessable Entity in 15ms (Views: 0.2ms | ActiveRecord: 1.6ms)
862
+  (0.1ms) rollback transaction
863
+  (0.3ms) begin transaction
864
+ Started GET "/record_not_found" for 127.0.0.1 at 2015-02-16 13:44:54 -0800
865
+ Processing by TestController#record_not_found as HTML
866
+ Completed 422 Unprocessable Entity in 7ms (Views: 0.2ms | ActiveRecord: 0.0ms)
867
+  (0.1ms) rollback transaction
868
+  (0.0ms) begin transaction
869
+ Started GET "/record_invalid" for 127.0.0.1 at 2015-02-16 13:44:54 -0800
870
+ Processing by TestController#record_invalid as HTML
871
+  (0.1ms) SAVEPOINT active_record_1
872
+  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1
873
+ Completed 422 Unprocessable Entity in 38ms (Views: 0.4ms | ActiveRecord: 2.4ms)
874
+  (0.1ms) rollback transaction
875
+  (0.1ms) begin transaction
876
+ Started GET "/record_not_found" for 127.0.0.1 at 2015-02-16 13:44:54 -0800
877
+ Processing by TestController#record_not_found as HTML
878
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
879
+  (0.1ms) rollback transaction
880
+  (0.1ms) begin transaction
881
+ Started GET "/unrecognized_exception" for 127.0.0.1 at 2015-02-16 13:44:54 -0800
882
+ Processing by TestController#unrecognized_exception as HTML
883
+ Completed 500 Internal Server Error in 2ms (Views: 0.2ms | ActiveRecord: 0.0ms)
884
+  (0.1ms) rollback transaction
885
+  (0.1ms) begin transaction
886
+ Started GET "/with_lambdas" for 127.0.0.1 at 2015-02-16 13:44:54 -0800
887
+ Processing by TestController#with_lambdas as HTML
888
+ Completed 422 Unprocessable Entity in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
889
+  (0.1ms) rollback transaction
890
+  (0.0ms) begin transaction
891
+ Started GET "/localized" for 127.0.0.1 at 2015-02-16 13:44:54 -0800
892
+ Processing by TestController#localized as HTML
893
+ Completed 422 Unprocessable Entity in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
894
+  (0.1ms) rollback transaction
895
+  (0.0ms) begin transaction
896
+ Started GET "/explicit" for 127.0.0.1 at 2015-02-16 13:44:54 -0800
897
+ Processing by TestController#explicit as HTML
898
+ Completed 422 Unprocessable Entity in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
899
+  (0.1ms) rollback transaction
900
+  (0.3ms) begin transaction
901
+ Started GET "/localized" for 127.0.0.1 at 2015-02-16 13:49:16 -0800
902
+ Processing by TestController#localized as HTML
903
+ Completed 422 Unprocessable Entity in 8ms (Views: 0.2ms | ActiveRecord: 0.0ms)
904
+  (0.1ms) rollback transaction
905
+  (0.1ms) begin transaction
906
+ Started GET "/explicit" for 127.0.0.1 at 2015-02-16 13:49:16 -0800
907
+ Processing by TestController#explicit as HTML
908
+ Completed 422 Unprocessable Entity in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
909
+  (0.1ms) rollback transaction
910
+  (0.0ms) begin transaction
911
+ Started GET "/with_lambdas" for 127.0.0.1 at 2015-02-16 13:49:16 -0800
912
+ Processing by TestController#with_lambdas as HTML
913
+ Completed 422 Unprocessable Entity in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
914
+  (0.1ms) rollback transaction
915
+  (0.1ms) begin transaction
916
+ Started GET "/record_not_found" for 127.0.0.1 at 2015-02-16 13:49:16 -0800
917
+ Processing by TestController#record_not_found as HTML
918
+ Completed 404 Not Found in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
919
+  (0.1ms) rollback transaction
920
+  (0.0ms) begin transaction
921
+ Started GET "/unrecognized_exception" for 127.0.0.1 at 2015-02-16 13:49:16 -0800
922
+ Processing by TestController#unrecognized_exception as HTML
923
+ Completed 500 Internal Server Error in 2ms (Views: 0.3ms | ActiveRecord: 0.0ms)
924
+  (0.1ms) rollback transaction
925
+  (0.1ms) begin transaction
926
+ Started GET "/overridden" for 127.0.0.1 at 2015-02-16 13:49:16 -0800
927
+ Processing by TestController#overridden as HTML
928
+ Completed 422 Unprocessable Entity in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
929
+  (0.1ms) rollback transaction
930
+  (0.2ms) begin transaction
931
+ Started GET "/record_invalid" for 127.0.0.1 at 2015-02-16 13:49:16 -0800
932
+ Processing by TestController#record_invalid as HTML
933
+  (0.0ms) SAVEPOINT active_record_1
934
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
935
+ Completed 422 Unprocessable Entity in 17ms (Views: 0.2ms | ActiveRecord: 1.6ms)
936
+  (0.1ms) rollback transaction
937
+  (0.3ms) begin transaction
938
+ Started GET "/record_invalid" for 127.0.0.1 at 2015-02-16 13:49:25 -0800
939
+ Processing by TestController#record_invalid as HTML
940
+  (0.1ms) SAVEPOINT active_record_1
941
+  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1
942
+ Completed 422 Unprocessable Entity in 28ms (Views: 0.4ms | ActiveRecord: 1.7ms)
943
+  (0.1ms) rollback transaction
944
+  (0.0ms) begin transaction
945
+ Started GET "/record_not_found" for 127.0.0.1 at 2015-02-16 13:49:25 -0800
946
+ Processing by TestController#record_not_found as HTML
947
+ Completed 404 Not Found in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
948
+  (0.1ms) rollback transaction
949
+  (0.0ms) begin transaction
950
+ Started GET "/overridden" for 127.0.0.1 at 2015-02-16 13:49:25 -0800
951
+ Processing by TestController#overridden as HTML
952
+ Completed 422 Unprocessable Entity in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
953
+  (0.1ms) rollback transaction
954
+  (0.0ms) begin transaction
955
+ Started GET "/localized" for 127.0.0.1 at 2015-02-16 13:49:25 -0800
956
+ Processing by TestController#localized as HTML
957
+ Completed 422 Unprocessable Entity in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
958
+  (0.1ms) rollback transaction
959
+  (0.1ms) begin transaction
960
+ Started GET "/explicit" for 127.0.0.1 at 2015-02-16 13:49:25 -0800
961
+ Processing by TestController#explicit as HTML
962
+ Completed 422 Unprocessable Entity in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
963
+  (0.1ms) rollback transaction
964
+  (0.1ms) begin transaction
965
+ Started GET "/with_lambdas" for 127.0.0.1 at 2015-02-16 13:49:25 -0800
966
+ Processing by TestController#with_lambdas as HTML
967
+ Completed 422 Unprocessable Entity in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
968
+  (0.1ms) rollback transaction
969
+  (0.0ms) begin transaction
970
+ Started GET "/unrecognized_exception" for 127.0.0.1 at 2015-02-16 13:49:25 -0800
971
+ Processing by TestController#unrecognized_exception as HTML
972
+ Completed 500 Internal Server Error in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
973
+  (0.1ms) rollback transaction
974
+  (0.3ms) begin transaction
975
+ Started GET "/overridden" for 127.0.0.1 at 2015-02-16 13:49:31 -0800
976
+ Processing by TestController#overridden as HTML
977
+ Completed 422 Unprocessable Entity in 7ms (Views: 0.2ms | ActiveRecord: 0.0ms)
978
+  (0.1ms) rollback transaction
979
+  (0.0ms) begin transaction
980
+ Started GET "/unrecognized_exception" for 127.0.0.1 at 2015-02-16 13:49:31 -0800
981
+ Processing by TestController#unrecognized_exception as HTML
982
+ Completed 500 Internal Server Error in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
983
+  (0.1ms) rollback transaction
984
+  (0.1ms) begin transaction
985
+ Started GET "/record_invalid" for 127.0.0.1 at 2015-02-16 13:49:31 -0800
986
+ Processing by TestController#record_invalid as HTML
987
+  (0.1ms) SAVEPOINT active_record_1
988
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
989
+ Completed 422 Unprocessable Entity in 64ms (Views: 0.3ms | ActiveRecord: 2.4ms)
990
+  (0.2ms) rollback transaction
991
+  (0.1ms) begin transaction
992
+ Started GET "/explicit" for 127.0.0.1 at 2015-02-16 13:49:31 -0800
993
+ Processing by TestController#explicit as HTML
994
+ Completed 422 Unprocessable Entity in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
995
+  (0.1ms) rollback transaction
996
+  (0.1ms) begin transaction
997
+ Started GET "/with_lambdas" for 127.0.0.1 at 2015-02-16 13:49:31 -0800
998
+ Processing by TestController#with_lambdas as HTML
999
+ Completed 422 Unprocessable Entity in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1000
+  (0.1ms) rollback transaction
1001
+  (0.0ms) begin transaction
1002
+ Started GET "/localized" for 127.0.0.1 at 2015-02-16 13:49:31 -0800
1003
+ Processing by TestController#localized as HTML
1004
+ Completed 422 Unprocessable Entity in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1005
+  (0.1ms) rollback transaction
1006
+  (0.1ms) begin transaction
1007
+ Started GET "/record_not_found" for 127.0.0.1 at 2015-02-16 13:49:31 -0800
1008
+ Processing by TestController#record_not_found as HTML
1009
+ Completed 404 Not Found in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1010
+  (0.1ms) rollback transaction
1011
+  (0.3ms) begin transaction
1012
+ Started GET "/record_not_found" for 127.0.0.1 at 2015-02-16 13:49:37 -0800
1013
+ Processing by TestController#record_not_found as HTML
1014
+ Completed 404 Not Found in 6ms (Views: 0.2ms | ActiveRecord: 0.0ms)
1015
+  (0.1ms) rollback transaction
1016
+  (0.0ms) begin transaction
1017
+ Started GET "/overridden" for 127.0.0.1 at 2015-02-16 13:49:37 -0800
1018
+ Processing by TestController#overridden as HTML
1019
+ Completed 422 Unprocessable Entity in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
1020
+  (0.1ms) rollback transaction
1021
+  (0.1ms) begin transaction
1022
+ Started GET "/unrecognized_exception" for 127.0.0.1 at 2015-02-16 13:49:37 -0800
1023
+ Processing by TestController#unrecognized_exception as HTML
1024
+ Completed 500 Internal Server Error in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1025
+  (0.1ms) rollback transaction
1026
+  (0.1ms) begin transaction
1027
+ Started GET "/explicit" for 127.0.0.1 at 2015-02-16 13:49:37 -0800
1028
+ Processing by TestController#explicit as HTML
1029
+ Completed 422 Unprocessable Entity in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1030
+  (0.1ms) rollback transaction
1031
+  (0.0ms) begin transaction
1032
+ Started GET "/localized" for 127.0.0.1 at 2015-02-16 13:49:37 -0800
1033
+ Processing by TestController#localized as HTML
1034
+ Completed 422 Unprocessable Entity in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
1035
+  (0.1ms) rollback transaction
1036
+  (0.0ms) begin transaction
1037
+ Started GET "/with_lambdas" for 127.0.0.1 at 2015-02-16 13:49:37 -0800
1038
+ Processing by TestController#with_lambdas as HTML
1039
+ Completed 422 Unprocessable Entity in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1040
+  (0.1ms) rollback transaction
1041
+  (0.1ms) begin transaction
1042
+ Started GET "/record_invalid" for 127.0.0.1 at 2015-02-16 13:49:37 -0800
1043
+ Processing by TestController#record_invalid as HTML
1044
+  (0.0ms) SAVEPOINT active_record_1
1045
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
1046
+ Completed 422 Unprocessable Entity in 12ms (Views: 0.2ms | ActiveRecord: 1.1ms)
1047
+  (0.1ms) rollback transaction
1048
+  (0.3ms) begin transaction
1049
+ Started GET "/overridden" for 127.0.0.1 at 2015-02-16 13:50:30 -0800
1050
+ Processing by TestController#overridden as HTML
1051
+ Completed 422 Unprocessable Entity in 5ms (Views: 0.2ms | ActiveRecord: 0.0ms)
1052
+  (0.1ms) rollback transaction
1053
+  (0.1ms) begin transaction
1054
+ Started GET "/record_invalid" for 127.0.0.1 at 2015-02-16 13:50:30 -0800
1055
+ Processing by TestController#record_invalid as HTML
1056
+  (0.1ms) SAVEPOINT active_record_1
1057
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
1058
+ Completed 422 Unprocessable Entity in 57ms (Views: 0.3ms | ActiveRecord: 1.2ms)
1059
+  (0.1ms) rollback transaction
1060
+  (0.1ms) begin transaction
1061
+ Started GET "/explicit" for 127.0.0.1 at 2015-02-16 13:50:31 -0800
1062
+ Processing by TestController#explicit as HTML
1063
+ Completed 422 Unprocessable Entity in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
1064
+  (0.1ms) rollback transaction
1065
+  (0.1ms) begin transaction
1066
+ Started GET "/localized" for 127.0.0.1 at 2015-02-16 13:50:31 -0800
1067
+ Processing by TestController#localized as HTML
1068
+ Completed 422 Unprocessable Entity in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
1069
+  (0.1ms) rollback transaction
1070
+  (0.1ms) begin transaction
1071
+ Started GET "/with_lambdas" for 127.0.0.1 at 2015-02-16 13:50:31 -0800
1072
+ Processing by TestController#with_lambdas as HTML
1073
+ Completed 422 Unprocessable Entity in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1074
+  (0.1ms) rollback transaction
1075
+  (0.0ms) begin transaction
1076
+ Started GET "/unrecognized_exception" for 127.0.0.1 at 2015-02-16 13:50:31 -0800
1077
+ Processing by TestController#unrecognized_exception as HTML
1078
+ Completed 500 Internal Server Error in 2ms (Views: 0.2ms | ActiveRecord: 0.0ms)
1079
+  (0.1ms) rollback transaction
1080
+  (0.1ms) begin transaction
1081
+ Started GET "/record_not_found" for 127.0.0.1 at 2015-02-16 13:50:31 -0800
1082
+ Processing by TestController#record_not_found as HTML
1083
+ Completed 404 Not Found in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1084
+  (0.1ms) rollback transaction
1085
+  (0.3ms) begin transaction
1086
+ Started GET "/record_invalid" for 127.0.0.1 at 2015-02-16 14:08:12 -0800
1087
+ Processing by TestController#record_invalid as HTML
1088
+  (0.0ms) SAVEPOINT active_record_1
1089
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
1090
+ Completed 422 Unprocessable Entity in 28ms (Views: 0.2ms | ActiveRecord: 1.6ms)
1091
+  (0.1ms) rollback transaction
1092
+  (0.1ms) begin transaction
1093
+ Started GET "/unrecognized_exception" for 127.0.0.1 at 2015-02-16 14:08:12 -0800
1094
+ Processing by TestController#unrecognized_exception as HTML
1095
+ Completed 500 Internal Server Error in 1ms
1096
+  (0.1ms) rollback transaction
1097
+  (0.1ms) begin transaction
1098
+ Started GET "/with_lambdas" for 127.0.0.1 at 2015-02-16 14:08:12 -0800
1099
+ Processing by TestController#with_lambdas as HTML
1100
+ Completed 422 Unprocessable Entity in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1101
+  (0.1ms) rollback transaction
1102
+  (0.1ms) begin transaction
1103
+ Started GET "/localized" for 127.0.0.1 at 2015-02-16 14:08:12 -0800
1104
+ Processing by TestController#localized as HTML
1105
+ Completed 422 Unprocessable Entity in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
1106
+  (0.1ms) rollback transaction
1107
+  (0.0ms) begin transaction
1108
+ Started GET "/explicit" for 127.0.0.1 at 2015-02-16 14:08:12 -0800
1109
+ Processing by TestController#explicit as HTML
1110
+ Completed 422 Unprocessable Entity in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
1111
+  (0.1ms) rollback transaction
1112
+  (0.0ms) begin transaction
1113
+ Started GET "/record_not_found" for 127.0.0.1 at 2015-02-16 14:08:12 -0800
1114
+ Processing by TestController#record_not_found as HTML
1115
+ Completed 404 Not Found in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
1116
+  (0.1ms) rollback transaction
1117
+  (0.1ms) begin transaction
1118
+ Started GET "/overridden" for 127.0.0.1 at 2015-02-16 14:08:12 -0800
1119
+ Processing by TestController#overridden as HTML
1120
+ Completed 422 Unprocessable Entity in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
1121
+  (0.1ms) rollback transaction
1122
+  (0.3ms) begin transaction
1123
+ Started GET "/overridden" for 127.0.0.1 at 2015-02-16 14:23:24 -0800
1124
+ Processing by TestController#overridden as HTML
1125
+ Completed 422 Unprocessable Entity in 10ms (Views: 0.3ms | ActiveRecord: 0.0ms)
1126
+  (0.1ms) rollback transaction
1127
+  (0.0ms) begin transaction
1128
+ Started GET "/record_not_found" for 127.0.0.1 at 2015-02-16 14:23:24 -0800
1129
+ Processing by TestController#record_not_found as HTML
1130
+ Completed 404 Not Found in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
1131
+  (0.1ms) rollback transaction
1132
+  (0.0ms) begin transaction
1133
+ Started GET "/record_invalid" for 127.0.0.1 at 2015-02-16 14:23:24 -0800
1134
+ Processing by TestController#record_invalid as HTML
1135
+  (0.1ms) SAVEPOINT active_record_1
1136
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
1137
+ Completed 422 Unprocessable Entity in 42ms (Views: 0.2ms | ActiveRecord: 1.8ms)
1138
+  (0.1ms) rollback transaction
1139
+  (0.0ms) begin transaction
1140
+ Started GET "/unrecognized_exception" for 127.0.0.1 at 2015-02-16 14:23:24 -0800
1141
+ Processing by TestController#unrecognized_exception as HTML
1142
+ Completed 500 Internal Server Error in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1143
+  (0.1ms) rollback transaction
1144
+  (0.0ms) begin transaction
1145
+ Started GET "/localized" for 127.0.0.1 at 2015-02-16 14:23:24 -0800
1146
+ Processing by TestController#localized as HTML
1147
+ Completed 422 Unprocessable Entity in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1148
+  (0.1ms) rollback transaction
1149
+  (0.1ms) begin transaction
1150
+ Started GET "/with_lambdas" for 127.0.0.1 at 2015-02-16 14:23:24 -0800
1151
+ Processing by TestController#with_lambdas as HTML
1152
+ Completed 422 Unprocessable Entity in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1153
+  (0.1ms) rollback transaction
1154
+  (0.1ms) begin transaction
1155
+ Started GET "/explicit" for 127.0.0.1 at 2015-02-16 14:23:24 -0800
1156
+ Processing by TestController#explicit as HTML
1157
+ Completed 422 Unprocessable Entity in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1158
+  (0.1ms) rollback transaction
1159
+  (0.3ms) begin transaction
1160
+ Started GET "/record_not_found" for 127.0.0.1 at 2015-02-16 14:23:59 -0800
1161
+ Processing by TestController#record_not_found as HTML
1162
+ Completed 404 Not Found in 12ms (Views: 0.2ms | ActiveRecord: 0.0ms)
1163
+  (0.1ms) rollback transaction
1164
+  (0.0ms) begin transaction
1165
+ Started GET "/record_invalid" for 127.0.0.1 at 2015-02-16 14:23:59 -0800
1166
+ Processing by TestController#record_invalid as HTML
1167
+  (0.1ms) SAVEPOINT active_record_1
1168
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
1169
+ Completed 422 Unprocessable Entity in 59ms (Views: 0.2ms | ActiveRecord: 1.7ms)
1170
+  (0.1ms) rollback transaction
1171
+  (0.0ms) begin transaction
1172
+ Started GET "/unrecognized_exception" for 127.0.0.1 at 2015-02-16 14:23:59 -0800
1173
+ Processing by TestController#unrecognized_exception as HTML
1174
+ Completed 500 Internal Server Error in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
1175
+  (0.1ms) rollback transaction
1176
+  (0.0ms) begin transaction
1177
+ Started GET "/overridden" for 127.0.0.1 at 2015-02-16 14:23:59 -0800
1178
+ Processing by TestController#overridden as HTML
1179
+ Completed 422 Unprocessable Entity in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1180
+  (0.1ms) rollback transaction
1181
+  (0.0ms) begin transaction
1182
+ Started GET "/localized" for 127.0.0.1 at 2015-02-16 14:23:59 -0800
1183
+ Processing by TestController#localized as HTML
1184
+ Completed 422 Unprocessable Entity in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1185
+  (0.1ms) rollback transaction
1186
+  (0.0ms) begin transaction
1187
+ Started GET "/with_lambdas" for 127.0.0.1 at 2015-02-16 14:23:59 -0800
1188
+ Processing by TestController#with_lambdas as HTML
1189
+ Completed 422 Unprocessable Entity in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1190
+  (0.1ms) rollback transaction
1191
+  (0.0ms) begin transaction
1192
+ Started GET "/explicit" for 127.0.0.1 at 2015-02-16 14:23:59 -0800
1193
+ Processing by TestController#explicit as HTML
1194
+ Completed 422 Unprocessable Entity in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
1195
+  (0.1ms) rollback transaction
1196
+  (0.3ms) begin transaction
1197
+ Started GET "/unrecognized_exception" for 127.0.0.1 at 2015-02-16 14:38:20 -0800
1198
+ Processing by TestController#unrecognized_exception as HTML
1199
+ Completed 500 Internal Server Error in 8ms (Views: 0.2ms | ActiveRecord: 0.0ms)
1200
+  (0.1ms) rollback transaction
1201
+  (0.1ms) begin transaction
1202
+ Started GET "/record_not_found" for 127.0.0.1 at 2015-02-16 14:38:20 -0800
1203
+ Processing by TestController#record_not_found as HTML
1204
+ Completed 500 Internal Server Error in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
1205
+  (0.1ms) rollback transaction
1206
+  (0.0ms) begin transaction
1207
+ Started GET "/localized" for 127.0.0.1 at 2015-02-16 14:38:20 -0800
1208
+ Processing by TestController#localized as HTML
1209
+ Completed 500 Internal Server Error in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1210
+  (0.1ms) rollback transaction
1211
+  (0.1ms) begin transaction
1212
+ Started GET "/explicit" for 127.0.0.1 at 2015-02-16 14:38:20 -0800
1213
+ Processing by TestController#explicit as HTML
1214
+ Completed 422 Unprocessable Entity in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1215
+  (0.1ms) rollback transaction
1216
+  (0.0ms) begin transaction
1217
+ Started GET "/with_lambdas" for 127.0.0.1 at 2015-02-16 14:38:20 -0800
1218
+ Processing by TestController#with_lambdas as HTML
1219
+ Completed 422 Unprocessable Entity in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1220
+  (0.1ms) rollback transaction
1221
+  (0.0ms) begin transaction
1222
+ Started GET "/overridden" for 127.0.0.1 at 2015-02-16 14:38:20 -0800
1223
+ Processing by TestController#overridden as HTML
1224
+ Completed 422 Unprocessable Entity in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
1225
+  (0.1ms) rollback transaction
1226
+  (0.0ms) begin transaction
1227
+ Started GET "/record_invalid" for 127.0.0.1 at 2015-02-16 14:38:20 -0800
1228
+ Processing by TestController#record_invalid as HTML
1229
+  (0.1ms) SAVEPOINT active_record_1
1230
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
1231
+ Completed 500 Internal Server Error in 16ms (Views: 0.2ms | ActiveRecord: 1.6ms)
1232
+  (0.1ms) rollback transaction
1233
+  (0.3ms) begin transaction
1234
+ Started GET "/record_not_found" for 127.0.0.1 at 2015-02-16 14:41:21 -0800
1235
+ Processing by TestController#record_not_found as HTML
1236
+ Completed 404 Not Found in 8ms (Views: 0.2ms | ActiveRecord: 0.0ms)
1237
+  (0.1ms) rollback transaction
1238
+  (0.0ms) begin transaction
1239
+ Started GET "/overridden" for 127.0.0.1 at 2015-02-16 14:41:21 -0800
1240
+ Processing by TestController#overridden as HTML
1241
+ Completed 422 Unprocessable Entity in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
1242
+  (0.1ms) rollback transaction
1243
+  (0.0ms) begin transaction
1244
+ Started GET "/unrecognized_exception" for 127.0.0.1 at 2015-02-16 14:41:21 -0800
1245
+ Processing by TestController#unrecognized_exception as HTML
1246
+ Completed 500 Internal Server Error in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
1247
+  (0.1ms) rollback transaction
1248
+  (0.1ms) begin transaction
1249
+ Started GET "/record_invalid" for 127.0.0.1 at 2015-02-16 14:41:21 -0800
1250
+ Processing by TestController#record_invalid as HTML
1251
+  (0.1ms) SAVEPOINT active_record_1
1252
+  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1
1253
+ Completed 422 Unprocessable Entity in 28ms (Views: 0.5ms | ActiveRecord: 2.1ms)
1254
+  (0.1ms) rollback transaction
1255
+  (0.1ms) begin transaction
1256
+ Started GET "/explicit" for 127.0.0.1 at 2015-02-16 14:41:21 -0800
1257
+ Processing by TestController#explicit as HTML
1258
+ Completed 422 Unprocessable Entity in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1259
+  (0.1ms) rollback transaction
1260
+  (0.1ms) begin transaction
1261
+ Started GET "/localized" for 127.0.0.1 at 2015-02-16 14:41:21 -0800
1262
+ Processing by TestController#localized as HTML
1263
+ Completed 422 Unprocessable Entity in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1264
+  (0.1ms) rollback transaction
1265
+  (0.1ms) begin transaction
1266
+ Started GET "/with_lambdas" for 127.0.0.1 at 2015-02-16 14:41:21 -0800
1267
+ Processing by TestController#with_lambdas as HTML
1268
+ Completed 422 Unprocessable Entity in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
1269
+  (0.1ms) rollback transaction
1270
+  (0.3ms) begin transaction
1271
+ Started GET "/explicit" for 127.0.0.1 at 2015-02-16 14:43:27 -0800
1272
+ Processing by TestController#explicit as HTML
1273
+ Completed 422 Unprocessable Entity in 9ms (Views: 0.2ms | ActiveRecord: 0.0ms)
1274
+  (0.1ms) rollback transaction
1275
+  (0.0ms) begin transaction
1276
+ Started GET "/localized" for 127.0.0.1 at 2015-02-16 14:43:27 -0800
1277
+ Processing by TestController#localized as HTML
1278
+ Completed 422 Unprocessable Entity in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
1279
+  (0.1ms) rollback transaction
1280
+  (0.0ms) begin transaction
1281
+ Started GET "/with_lambdas" for 127.0.0.1 at 2015-02-16 14:43:27 -0800
1282
+ Processing by TestController#with_lambdas as HTML
1283
+ Completed 422 Unprocessable Entity in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1284
+  (0.1ms) rollback transaction
1285
+  (0.1ms) begin transaction
1286
+ Started GET "/record_invalid" for 127.0.0.1 at 2015-02-16 14:43:27 -0800
1287
+ Processing by TestController#record_invalid as HTML
1288
+  (0.0ms) SAVEPOINT active_record_1
1289
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
1290
+ Completed 422 Unprocessable Entity in 15ms (Views: 0.2ms | ActiveRecord: 1.4ms)
1291
+  (0.1ms) rollback transaction
1292
+  (0.1ms) begin transaction
1293
+ Started GET "/unrecognized_exception" for 127.0.0.1 at 2015-02-16 14:43:27 -0800
1294
+ Processing by TestController#unrecognized_exception as HTML
1295
+ Completed 500 Internal Server Error in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1296
+  (0.1ms) rollback transaction
1297
+  (0.0ms) begin transaction
1298
+ Started GET "/overridden" for 127.0.0.1 at 2015-02-16 14:43:27 -0800
1299
+ Processing by TestController#overridden as HTML
1300
+ Completed 422 Unprocessable Entity in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
1301
+  (0.1ms) rollback transaction
1302
+  (0.0ms) begin transaction
1303
+ Started GET "/record_not_found" for 127.0.0.1 at 2015-02-16 14:43:27 -0800
1304
+ Processing by TestController#record_not_found as HTML
1305
+ Completed 404 Not Found in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
1306
+  (0.1ms) rollback transaction
1307
+  (0.3ms) begin transaction
1308
+ Started GET "/record_not_found" for 127.0.0.1 at 2015-02-16 14:48:57 -0800
1309
+ Processing by TestController#record_not_found as HTML
1310
+ Parameters: {"test"=>{}}
1311
+ Completed 404 Not Found in 8ms (Views: 0.2ms | ActiveRecord: 0.0ms)
1312
+  (0.1ms) rollback transaction
1313
+  (0.0ms) begin transaction
1314
+ Started GET "/record_invalid" for 127.0.0.1 at 2015-02-16 14:48:57 -0800
1315
+ Processing by TestController#record_invalid as HTML
1316
+ Parameters: {"test"=>{}}
1317
+  (0.4ms) SAVEPOINT active_record_1
1318
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
1319
+ Completed 422 Unprocessable Entity in 25ms (Views: 0.2ms | ActiveRecord: 2.0ms)
1320
+  (0.1ms) rollback transaction
1321
+  (0.0ms) begin transaction
1322
+ Started GET "/localized" for 127.0.0.1 at 2015-02-16 14:48:57 -0800
1323
+ Processing by TestController#localized as HTML
1324
+ Parameters: {"test"=>{}}
1325
+ Completed 422 Unprocessable Entity in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
1326
+  (0.1ms) rollback transaction
1327
+  (0.0ms) begin transaction
1328
+ Started GET "/with_lambdas" for 127.0.0.1 at 2015-02-16 14:48:57 -0800
1329
+ Processing by TestController#with_lambdas as HTML
1330
+ Parameters: {"test"=>{}}
1331
+ Completed 422 Unprocessable Entity in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
1332
+  (0.2ms) rollback transaction
1333
+  (0.0ms) begin transaction
1334
+ Started GET "/explicit" for 127.0.0.1 at 2015-02-16 14:48:57 -0800
1335
+ Processing by TestController#explicit as HTML
1336
+ Parameters: {"test"=>{}}
1337
+ Completed 422 Unprocessable Entity in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
1338
+  (0.1ms) rollback transaction
1339
+  (0.1ms) begin transaction
1340
+ Started GET "/unrecognized_exception" for 127.0.0.1 at 2015-02-16 14:48:57 -0800
1341
+ Processing by TestController#unrecognized_exception as HTML
1342
+ Parameters: {"test"=>{}}
1343
+ Completed 500 Internal Server Error in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
1344
+  (0.1ms) rollback transaction
1345
+  (0.0ms) begin transaction
1346
+ Started GET "/overridden" for 127.0.0.1 at 2015-02-16 14:48:57 -0800
1347
+ Processing by TestController#overridden as HTML
1348
+ Parameters: {"test"=>{}}
1349
+ Completed 422 Unprocessable Entity in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
1350
+  (0.1ms) rollback transaction
1351
+  (0.3ms) begin transaction
1352
+ Started GET "/record_invalid" for 127.0.0.1 at 2015-02-16 14:54:37 -0800
1353
+ Processing by TestController#record_invalid as HTML
1354
+ Parameters: {"test"=>{}}
1355
+  (0.0ms) SAVEPOINT active_record_1
1356
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
1357
+ Completed 422 Unprocessable Entity in 22ms (Views: 0.2ms | ActiveRecord: 1.6ms)
1358
+  (0.1ms) rollback transaction
1359
+  (0.1ms) begin transaction
1360
+ Started GET "/overridden" for 127.0.0.1 at 2015-02-16 14:54:37 -0800
1361
+ Processing by TestController#overridden as HTML
1362
+ Parameters: {"test"=>{}}
1363
+ Completed 422 Unprocessable Entity in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
1364
+  (0.1ms) rollback transaction
1365
+  (0.1ms) begin transaction
1366
+ Started GET "/explicit" for 127.0.0.1 at 2015-02-16 14:54:37 -0800
1367
+ Processing by TestController#explicit as HTML
1368
+ Parameters: {"test"=>{}}
1369
+ Completed 422 Unprocessable Entity in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
1370
+  (0.1ms) rollback transaction
1371
+  (0.1ms) begin transaction
1372
+ Started GET "/with_lambdas" for 127.0.0.1 at 2015-02-16 14:54:37 -0800
1373
+ Processing by TestController#with_lambdas as HTML
1374
+ Parameters: {"test"=>{}}
1375
+ Completed 422 Unprocessable Entity in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
1376
+  (0.1ms) rollback transaction
1377
+  (0.1ms) begin transaction
1378
+ Started GET "/localized" for 127.0.0.1 at 2015-02-16 14:54:37 -0800
1379
+ Processing by TestController#localized as HTML
1380
+ Parameters: {"test"=>{}}
1381
+ Completed 422 Unprocessable Entity in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
1382
+  (0.1ms) rollback transaction
1383
+  (0.1ms) begin transaction
1384
+ Started GET "/unrecognized_exception" for 127.0.0.1 at 2015-02-16 14:54:37 -0800
1385
+ Processing by TestController#unrecognized_exception as HTML
1386
+ Parameters: {"test"=>{}}
1387
+ Completed 500 Internal Server Error in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
1388
+  (0.1ms) rollback transaction
1389
+  (0.0ms) begin transaction
1390
+ Started GET "/record_not_found" for 127.0.0.1 at 2015-02-16 14:54:37 -0800
1391
+ Processing by TestController#record_not_found as HTML
1392
+ Parameters: {"test"=>{}}
1393
+ Completed 404 Not Found in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
1394
+  (0.1ms) rollback transaction
1395
+  (0.3ms) begin transaction
1396
+ Started GET "/unrecognized_exception" for 127.0.0.1 at 2015-02-16 15:19:50 -0800
1397
+ Processing by TestController#unrecognized_exception as HTML
1398
+ Parameters: {"test"=>{}}
1399
+ Completed 500 Internal Server Error in 32ms (Views: 1.7ms | ActiveRecord: 0.0ms)
1400
+  (0.2ms) rollback transaction
1401
+  (0.2ms) begin transaction
1402
+ Started GET "/record_invalid" for 127.0.0.1 at 2015-02-16 15:19:50 -0800
1403
+ Processing by TestController#record_invalid as HTML
1404
+ Parameters: {"test"=>{}}
1405
+  (0.1ms) SAVEPOINT active_record_1
1406
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
1407
+ Completed 422 Unprocessable Entity in 36ms (Views: 0.2ms | ActiveRecord: 3.7ms)
1408
+  (0.1ms) rollback transaction
1409
+  (0.0ms) begin transaction
1410
+ Started GET "/overridden" for 127.0.0.1 at 2015-02-16 15:19:50 -0800
1411
+ Processing by TestController#overridden as HTML
1412
+ Parameters: {"test"=>{}}
1413
+ Completed 422 Unprocessable Entity in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
1414
+  (0.1ms) rollback transaction
1415
+  (0.0ms) begin transaction
1416
+ Started GET "/record_not_found" for 127.0.0.1 at 2015-02-16 15:19:50 -0800
1417
+ Processing by TestController#record_not_found as HTML
1418
+ Parameters: {"test"=>{}}
1419
+ Completed 404 Not Found in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
1420
+  (0.1ms) rollback transaction
1421
+  (0.0ms) begin transaction
1422
+  (0.0ms) rollback transaction
1423
+  (0.0ms) begin transaction
1424
+  (0.0ms) rollback transaction
1425
+  (0.0ms) begin transaction
1426
+  (0.0ms) rollback transaction
1427
+  (0.0ms) begin transaction
1428
+  (0.0ms) rollback transaction
1429
+  (0.0ms) begin transaction
1430
+  (0.0ms) rollback transaction
1431
+  (0.0ms) begin transaction
1432
+  (0.0ms) rollback transaction
1433
+  (0.0ms) begin transaction
1434
+  (0.0ms) rollback transaction
1435
+  (0.0ms) begin transaction
1436
+  (0.1ms) rollback transaction
1437
+  (0.3ms) begin transaction
1438
+  (0.0ms) rollback transaction
1439
+  (0.0ms) begin transaction
1440
+  (0.0ms) rollback transaction
1441
+  (0.0ms) begin transaction
1442
+  (0.0ms) rollback transaction
1443
+  (0.0ms) begin transaction
1444
+  (0.0ms) rollback transaction
1445
+  (0.1ms) begin transaction
1446
+  (0.0ms) rollback transaction
1447
+  (0.0ms) begin transaction
1448
+  (0.0ms) rollback transaction
1449
+  (0.0ms) begin transaction
1450
+  (0.0ms) rollback transaction
1451
+  (0.0ms) begin transaction
1452
+  (0.0ms) rollback transaction
1453
+  (0.4ms) begin transaction
1454
+  (0.1ms) rollback transaction
1455
+  (0.1ms) begin transaction
1456
+  (0.1ms) rollback transaction
1457
+  (0.1ms) begin transaction
1458
+  (0.0ms) rollback transaction
1459
+  (0.1ms) begin transaction
1460
+  (0.1ms) rollback transaction
1461
+  (0.1ms) begin transaction
1462
+  (0.0ms) rollback transaction
1463
+  (0.0ms) begin transaction
1464
+  (0.0ms) rollback transaction
1465
+  (0.1ms) begin transaction
1466
+  (0.0ms) rollback transaction
1467
+  (0.1ms) begin transaction
1468
+  (0.1ms) rollback transaction
1469
+  (0.3ms) begin transaction
1470
+  (0.1ms) rollback transaction
1471
+  (0.0ms) begin transaction
1472
+  (0.1ms) rollback transaction
1473
+  (0.0ms) begin transaction
1474
+  (0.1ms) rollback transaction
1475
+  (0.1ms) begin transaction
1476
+  (0.0ms) rollback transaction
1477
+  (0.0ms) begin transaction
1478
+  (0.0ms) rollback transaction
1479
+  (0.0ms) begin transaction
1480
+  (0.0ms) rollback transaction
1481
+  (0.0ms) begin transaction
1482
+  (0.1ms) rollback transaction
1483
+  (0.0ms) begin transaction
1484
+  (0.2ms) rollback transaction
1485
+  (0.4ms) begin transaction
1486
+  (0.2ms) rollback transaction
1487
+  (0.1ms) begin transaction
1488
+  (0.3ms) rollback transaction
1489
+  (0.1ms) begin transaction
1490
+  (0.4ms) rollback transaction
1491
+  (0.1ms) begin transaction
1492
+  (0.1ms) rollback transaction
1493
+  (0.3ms) begin transaction
1494
+  (0.1ms) rollback transaction
1495
+  (0.1ms) begin transaction
1496
+  (0.1ms) rollback transaction
1497
+  (0.1ms) begin transaction
1498
+  (0.0ms) rollback transaction
1499
+  (0.0ms) begin transaction
1500
+  (0.0ms) rollback transaction
1501
+  (0.3ms) begin transaction
1502
+  (0.1ms) rollback transaction
1503
+  (0.0ms) begin transaction
1504
+  (0.0ms) rollback transaction
1505
+  (0.0ms) begin transaction
1506
+  (0.0ms) rollback transaction
1507
+  (0.0ms) begin transaction
1508
+  (0.0ms) rollback transaction
1509
+  (0.0ms) begin transaction
1510
+  (0.0ms) rollback transaction
1511
+  (0.0ms) begin transaction
1512
+  (0.0ms) rollback transaction
1513
+  (0.0ms) begin transaction
1514
+  (0.0ms) rollback transaction
1515
+  (0.0ms) begin transaction
1516
+  (0.0ms) rollback transaction
1517
+  (0.3ms) begin transaction
1518
+  (0.1ms) rollback transaction
1519
+  (0.1ms) begin transaction
1520
+  (0.1ms) rollback transaction
1521
+  (0.0ms) begin transaction
1522
+  (0.1ms) rollback transaction
1523
+  (0.0ms) begin transaction
1524
+  (0.1ms) rollback transaction
1525
+  (0.0ms) begin transaction
1526
+  (0.0ms) rollback transaction
1527
+  (0.0ms) begin transaction
1528
+  (0.0ms) rollback transaction
1529
+  (0.0ms) begin transaction
1530
+  (0.0ms) rollback transaction
1531
+  (0.0ms) begin transaction
1532
+  (0.1ms) rollback transaction
1533
+  (0.5ms) begin transaction
1534
+  (0.1ms) rollback transaction
1535
+  (0.1ms) begin transaction
1536
+  (0.1ms) rollback transaction
1537
+  (0.1ms) begin transaction
1538
+  (0.1ms) rollback transaction
1539
+  (0.1ms) begin transaction
1540
+  (0.1ms) rollback transaction
1541
+  (0.1ms) begin transaction
1542
+  (0.1ms) rollback transaction
1543
+  (0.1ms) begin transaction
1544
+  (0.1ms) rollback transaction
1545
+  (0.1ms) begin transaction
1546
+  (0.1ms) rollback transaction
1547
+  (0.1ms) begin transaction
1548
+  (0.1ms) rollback transaction
1549
+  (0.3ms) begin transaction
1550
+  (0.1ms) rollback transaction
1551
+  (0.1ms) begin transaction
1552
+  (0.1ms) rollback transaction
1553
+  (0.1ms) begin transaction
1554
+  (0.1ms) rollback transaction
1555
+  (0.1ms) begin transaction
1556
+  (0.1ms) rollback transaction
1557
+  (0.0ms) begin transaction
1558
+  (0.0ms) rollback transaction
1559
+  (0.0ms) begin transaction
1560
+  (0.0ms) rollback transaction
1561
+  (0.0ms) begin transaction
1562
+  (0.0ms) rollback transaction
1563
+  (0.0ms) begin transaction
1564
+  (0.1ms) rollback transaction
1565
+  (0.3ms) begin transaction
1566
+  (0.1ms) rollback transaction
1567
+  (0.0ms) begin transaction
1568
+  (0.0ms) rollback transaction
1569
+  (0.0ms) begin transaction
1570
+  (0.0ms) rollback transaction
1571
+  (0.0ms) begin transaction
1572
+  (0.0ms) rollback transaction
1573
+  (0.0ms) begin transaction
1574
+  (0.0ms) rollback transaction
1575
+  (0.0ms) begin transaction
1576
+  (0.0ms) rollback transaction
1577
+  (0.0ms) begin transaction
1578
+  (0.0ms) rollback transaction
1579
+  (0.0ms) begin transaction
1580
+  (0.1ms) rollback transaction
1581
+  (0.3ms) begin transaction
1582
+  (0.1ms) rollback transaction
1583
+  (0.0ms) begin transaction
1584
+  (0.0ms) rollback transaction
1585
+  (0.0ms) begin transaction
1586
+  (0.0ms) rollback transaction
1587
+  (0.0ms) begin transaction
1588
+  (0.0ms) rollback transaction
1589
+  (0.0ms) begin transaction
1590
+  (0.0ms) rollback transaction
1591
+  (0.0ms) begin transaction
1592
+  (0.0ms) rollback transaction
1593
+  (0.0ms) begin transaction
1594
+  (0.0ms) rollback transaction
1595
+  (0.0ms) begin transaction
1596
+  (0.1ms) rollback transaction
1597
+  (0.3ms) begin transaction
1598
+  (0.0ms) rollback transaction
1599
+  (0.0ms) begin transaction
1600
+  (0.1ms) rollback transaction
1601
+  (0.0ms) begin transaction
1602
+  (0.0ms) rollback transaction
1603
+  (0.0ms) begin transaction
1604
+  (0.1ms) rollback transaction
1605
+  (0.1ms) begin transaction
1606
+  (0.1ms) rollback transaction
1607
+  (0.0ms) begin transaction
1608
+  (0.0ms) rollback transaction
1609
+  (0.1ms) begin transaction
1610
+  (0.1ms) rollback transaction
1611
+  (0.1ms) begin transaction
1612
+  (0.0ms) rollback transaction
1613
+  (0.3ms) begin transaction
1614
+  (0.2ms) rollback transaction
1615
+  (0.1ms) begin transaction
1616
+  (0.1ms) rollback transaction
1617
+  (0.0ms) begin transaction
1618
+  (0.0ms) rollback transaction
1619
+  (0.1ms) begin transaction
1620
+  (0.1ms) rollback transaction
1621
+  (0.0ms) begin transaction
1622
+  (0.0ms) rollback transaction
1623
+  (0.0ms) begin transaction
1624
+  (0.0ms) rollback transaction
1625
+  (0.0ms) begin transaction
1626
+  (0.0ms) rollback transaction
1627
+  (0.0ms) begin transaction
1628
+  (0.0ms) rollback transaction
1629
+  (0.3ms) begin transaction
1630
+ Started GET "/overridden" for 127.0.0.1 at 2015-02-16 15:32:54 -0800
1631
+ Processing by TestController#overridden as HTML
1632
+ Parameters: {"test"=>{}}
1633
+ Completed 422 Unprocessable Entity in 8ms (Views: 0.2ms | ActiveRecord: 0.0ms)
1634
+  (0.1ms) rollback transaction
1635
+  (0.0ms) begin transaction
1636
+ Started GET "/unrecognized_exception" for 127.0.0.1 at 2015-02-16 15:32:54 -0800
1637
+ Processing by TestController#unrecognized_exception as HTML
1638
+ Parameters: {"test"=>{}}
1639
+ Completed 500 Internal Server Error in 2ms (Views: 0.3ms | ActiveRecord: 0.0ms)
1640
+  (0.1ms) rollback transaction
1641
+  (0.1ms) begin transaction
1642
+ Started GET "/record_invalid" for 127.0.0.1 at 2015-02-16 15:32:54 -0800
1643
+ Processing by TestController#record_invalid as HTML
1644
+ Parameters: {"test"=>{}}
1645
+  (0.0ms) SAVEPOINT active_record_1
1646
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
1647
+ Completed 422 Unprocessable Entity in 20ms (Views: 0.2ms | ActiveRecord: 2.5ms)
1648
+  (0.1ms) rollback transaction
1649
+  (0.0ms) begin transaction
1650
+ Started GET "/record_not_found" for 127.0.0.1 at 2015-02-16 15:32:54 -0800
1651
+ Processing by TestController#record_not_found as HTML
1652
+ Parameters: {"test"=>{}}
1653
+ Completed 404 Not Found in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
1654
+  (0.1ms) rollback transaction
1655
+  (0.0ms) begin transaction
1656
+  (0.0ms) rollback transaction
1657
+  (0.1ms) begin transaction
1658
+  (0.0ms) rollback transaction
1659
+  (0.0ms) begin transaction
1660
+  (0.0ms) rollback transaction
1661
+  (0.0ms) begin transaction
1662
+  (0.1ms) rollback transaction
1663
+  (0.1ms) begin transaction
1664
+  (0.1ms) rollback transaction
1665
+  (0.1ms) begin transaction
1666
+  (0.0ms) rollback transaction
1667
+  (0.1ms) begin transaction
1668
+  (0.1ms) rollback transaction
1669
+  (0.1ms) begin transaction
1670
+  (0.0ms) rollback transaction
1671
+  (0.3ms) begin transaction
1672
+  (0.1ms) rollback transaction
1673
+  (0.0ms) begin transaction
1674
+  (0.0ms) rollback transaction
1675
+  (0.0ms) begin transaction
1676
+  (0.0ms) rollback transaction
1677
+  (0.0ms) begin transaction
1678
+  (0.0ms) rollback transaction
1679
+  (0.0ms) begin transaction
1680
+  (0.0ms) rollback transaction
1681
+  (0.0ms) begin transaction
1682
+  (0.0ms) rollback transaction
1683
+  (0.0ms) begin transaction
1684
+  (0.0ms) rollback transaction
1685
+  (0.1ms) begin transaction
1686
+  (0.1ms) rollback transaction
1687
+  (0.0ms) begin transaction
1688
+ Started GET "/record_not_found" for 127.0.0.1 at 2015-02-16 15:34:03 -0800
1689
+ Processing by TestController#record_not_found as HTML
1690
+ Parameters: {"test"=>{}}
1691
+ Completed 404 Not Found in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
1692
+  (0.1ms) rollback transaction
1693
+  (0.1ms) begin transaction
1694
+ Started GET "/overridden" for 127.0.0.1 at 2015-02-16 15:34:03 -0800
1695
+ Processing by TestController#overridden as HTML
1696
+ Parameters: {"test"=>{}}
1697
+ Completed 422 Unprocessable Entity in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
1698
+  (0.1ms) rollback transaction
1699
+  (0.1ms) begin transaction
1700
+ Started GET "/record_invalid" for 127.0.0.1 at 2015-02-16 15:34:03 -0800
1701
+ Processing by TestController#record_invalid as HTML
1702
+ Parameters: {"test"=>{}}
1703
+  (0.0ms) SAVEPOINT active_record_1
1704
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
1705
+ Completed 422 Unprocessable Entity in 19ms (Views: 0.2ms | ActiveRecord: 1.6ms)
1706
+  (0.1ms) rollback transaction
1707
+  (0.0ms) begin transaction
1708
+ Started GET "/unrecognized_exception" for 127.0.0.1 at 2015-02-16 15:34:03 -0800
1709
+ Processing by TestController#unrecognized_exception as HTML
1710
+ Parameters: {"test"=>{}}
1711
+ Completed 500 Internal Server Error in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
1712
+  (0.1ms) rollback transaction
1713
+  (0.3ms) begin transaction
1714
+ Started GET "/record_not_found" for 127.0.0.1 at 2015-02-16 15:36:27 -0800
1715
+ Processing by TestController#record_not_found as HTML
1716
+ Parameters: {"test"=>{}}
1717
+ Completed 404 Not Found in 8ms (Views: 0.3ms | ActiveRecord: 0.0ms)
1718
+  (0.1ms) rollback transaction
1719
+  (0.0ms) begin transaction
1720
+ Started GET "/record_invalid" for 127.0.0.1 at 2015-02-16 15:36:27 -0800
1721
+ Processing by TestController#record_invalid as HTML
1722
+ Parameters: {"test"=>{}}
1723
+  (0.0ms) SAVEPOINT active_record_1
1724
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
1725
+ Completed 422 Unprocessable Entity in 16ms (Views: 0.2ms | ActiveRecord: 1.6ms)
1726
+  (0.1ms) rollback transaction
1727
+  (0.0ms) begin transaction
1728
+ Started GET "/unrecognized_exception" for 127.0.0.1 at 2015-02-16 15:36:27 -0800
1729
+ Processing by TestController#unrecognized_exception as HTML
1730
+ Parameters: {"test"=>{}}
1731
+ Completed 500 Internal Server Error in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
1732
+  (0.1ms) rollback transaction
1733
+  (0.1ms) begin transaction
1734
+ Started GET "/overridden" for 127.0.0.1 at 2015-02-16 15:36:27 -0800
1735
+ Processing by TestController#overridden as HTML
1736
+ Parameters: {"test"=>{}}
1737
+ Completed 422 Unprocessable Entity in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
1738
+  (0.1ms) rollback transaction
1739
+  (0.0ms) begin transaction
1740
+  (0.0ms) rollback transaction
1741
+  (0.0ms) begin transaction
1742
+  (0.0ms) rollback transaction
1743
+  (0.0ms) begin transaction
1744
+  (0.0ms) rollback transaction
1745
+  (0.0ms) begin transaction
1746
+  (0.0ms) rollback transaction
1747
+  (0.0ms) begin transaction
1748
+  (0.0ms) rollback transaction
1749
+  (0.0ms) begin transaction
1750
+  (0.0ms) rollback transaction
1751
+  (0.0ms) begin transaction
1752
+  (0.0ms) rollback transaction
1753
+  (0.0ms) begin transaction
1754
+  (0.1ms) rollback transaction
1755
+  (0.3ms) begin transaction
1756
+  (0.1ms) rollback transaction
1757
+  (0.0ms) begin transaction
1758
+  (0.0ms) rollback transaction
1759
+  (0.1ms) begin transaction
1760
+  (0.0ms) rollback transaction
1761
+  (0.0ms) begin transaction
1762
+  (0.0ms) rollback transaction
1763
+  (0.0ms) begin transaction
1764
+  (0.0ms) rollback transaction
1765
+  (0.0ms) begin transaction
1766
+  (0.0ms) rollback transaction
1767
+  (0.0ms) begin transaction
1768
+  (0.0ms) rollback transaction
1769
+  (0.0ms) begin transaction
1770
+  (0.1ms) rollback transaction
1771
+  (0.1ms) begin transaction
1772
+ Started GET "/record_invalid" for 127.0.0.1 at 2015-02-16 15:44:22 -0800
1773
+ Processing by TestController#record_invalid as HTML
1774
+ Parameters: {"test"=>{}}
1775
+  (0.0ms) SAVEPOINT active_record_1
1776
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
1777
+ Completed 422 Unprocessable Entity in 18ms (Views: 0.2ms | ActiveRecord: 1.5ms)
1778
+  (0.1ms) rollback transaction
1779
+  (0.0ms) begin transaction
1780
+ Started GET "/record_not_found" for 127.0.0.1 at 2015-02-16 15:44:22 -0800
1781
+ Processing by TestController#record_not_found as HTML
1782
+ Parameters: {"test"=>{}}
1783
+ Completed 404 Not Found in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1784
+  (0.1ms) rollback transaction
1785
+  (0.0ms) begin transaction
1786
+ Started GET "/overridden" for 127.0.0.1 at 2015-02-16 15:44:22 -0800
1787
+ Processing by TestController#overridden as HTML
1788
+ Parameters: {"test"=>{}}
1789
+ Completed 422 Unprocessable Entity in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
1790
+  (0.1ms) rollback transaction
1791
+  (0.0ms) begin transaction
1792
+ Started GET "/unrecognized_exception" for 127.0.0.1 at 2015-02-16 15:44:22 -0800
1793
+ Processing by TestController#unrecognized_exception as HTML
1794
+ Parameters: {"test"=>{}}
1795
+ Completed 500 Internal Server Error in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
1796
+  (0.1ms) rollback transaction