active_record_date_formatted 0.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (54) hide show
  1. checksums.yaml +7 -0
  2. data/MIT-LICENSE +20 -0
  3. data/README.rdoc +3 -0
  4. data/Rakefile +34 -0
  5. data/lib/active_record_date_formatted/model.rb +29 -0
  6. data/lib/active_record_date_formatted/version.rb +3 -0
  7. data/lib/active_record_date_formatted.rb +4 -0
  8. data/test/active_record_date_formatted_test.rb +34 -0
  9. data/test/dummy/README.rdoc +28 -0
  10. data/test/dummy/Rakefile +6 -0
  11. data/test/dummy/app/assets/javascripts/application.js +13 -0
  12. data/test/dummy/app/assets/stylesheets/application.css +15 -0
  13. data/test/dummy/app/controllers/application_controller.rb +5 -0
  14. data/test/dummy/app/helpers/application_helper.rb +2 -0
  15. data/test/dummy/app/models/person.rb +2 -0
  16. data/test/dummy/app/views/layouts/application.html.erb +14 -0
  17. data/test/dummy/bin/bundle +3 -0
  18. data/test/dummy/bin/rails +4 -0
  19. data/test/dummy/bin/rake +4 -0
  20. data/test/dummy/bin/setup +29 -0
  21. data/test/dummy/config/application.rb +26 -0
  22. data/test/dummy/config/boot.rb +5 -0
  23. data/test/dummy/config/database.yml +25 -0
  24. data/test/dummy/config/environment.rb +5 -0
  25. data/test/dummy/config/environments/development.rb +41 -0
  26. data/test/dummy/config/environments/production.rb +79 -0
  27. data/test/dummy/config/environments/test.rb +42 -0
  28. data/test/dummy/config/initializers/assets.rb +11 -0
  29. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  30. data/test/dummy/config/initializers/cookies_serializer.rb +3 -0
  31. data/test/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  32. data/test/dummy/config/initializers/inflections.rb +16 -0
  33. data/test/dummy/config/initializers/mime_types.rb +4 -0
  34. data/test/dummy/config/initializers/session_store.rb +3 -0
  35. data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
  36. data/test/dummy/config/locales/de.yml +5 -0
  37. data/test/dummy/config/locales/en.yml +23 -0
  38. data/test/dummy/config/routes.rb +56 -0
  39. data/test/dummy/config/secrets.yml +22 -0
  40. data/test/dummy/config.ru +4 -0
  41. data/test/dummy/db/development.sqlite3 +0 -0
  42. data/test/dummy/db/migrate/20150911135550_create_people.rb +9 -0
  43. data/test/dummy/db/schema.rb +22 -0
  44. data/test/dummy/db/test.sqlite3 +0 -0
  45. data/test/dummy/log/development.log +31 -0
  46. data/test/dummy/log/test.log +929 -0
  47. data/test/dummy/public/404.html +67 -0
  48. data/test/dummy/public/422.html +67 -0
  49. data/test/dummy/public/500.html +66 -0
  50. data/test/dummy/public/favicon.ico +0 -0
  51. data/test/dummy/test/fixtures/people.yml +7 -0
  52. data/test/dummy/test/models/person_test.rb +7 -0
  53. data/test/test_helper.rb +20 -0
  54. metadata +185 -0
@@ -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,5 @@
1
+ de:
2
+ hello: "Hello world"
3
+ date:
4
+ formats:
5
+ default: "%d.%m.%Y"
@@ -0,0 +1,23 @@
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"
@@ -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: 4921422314c2cc620118d6bfc41a99d514ce47301872c8aa29e1cf67f264f66412a2eda2443f021173be8885d0d4a22a7899312b32b5b2e1f63a0cc3b65a91b3
15
+
16
+ test:
17
+ secret_key_base: eae787cc6cf3a6f93a62c5307a469de6d1f8c6460f181b951f0fed1708beebff7c50490d951a8ac42c1508c254a783862bf76b3c9bd8569738829c5ff03ea8b9
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,4 @@
1
+ # This file is used by Rack-based servers to start the application.
2
+
3
+ require ::File.expand_path('../config/environment', __FILE__)
4
+ run Rails.application
Binary file
@@ -0,0 +1,9 @@
1
+ class CreatePeople < ActiveRecord::Migration
2
+ def change
3
+ create_table :people do |t|
4
+ t.date :birth_date
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: 20150911135550) do
15
+
16
+ create_table "people", force: :cascade do |t|
17
+ t.date "birth_date"
18
+ t.datetime "created_at", null: false
19
+ t.datetime "updated_at", null: false
20
+ end
21
+
22
+ end
Binary file
@@ -0,0 +1,31 @@
1
+  (2.2ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
2
+  (0.1ms) select sqlite_version(*)
3
+  (3.3ms) 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 CreatePeople (20150911135550)
6
+  (0.1ms) begin transaction
7
+  (0.5ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "birth_date" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
8
+ SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150911135550"]]
9
+  (1.6ms) commit transaction
10
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
11
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
12
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
13
+  (2.2ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "birth_date" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
14
+  (1.8ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
15
+  (0.1ms) select sqlite_version(*)
16
+  (2.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
17
+  (0.1ms) SELECT version FROM "schema_migrations"
18
+  (1.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20150911135550')
19
+  (2.0ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "birth_date" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
20
+  (1.7ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
21
+  (0.1ms) select sqlite_version(*)
22
+  (2.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
23
+  (0.1ms) SELECT version FROM "schema_migrations"
24
+  (1.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150911135550')
25
+  (0.1ms) begin transaction
26
+ SQL (0.4ms) INSERT INTO "people" ("birth_date", "created_at", "updated_at") VALUES (?, ?, ?) [["birth_date", "1971-02-18"], ["created_at", "2015-09-11 14:20:55.125294"], ["updated_at", "2015-09-11 14:20:55.125294"]]
27
+  (1.6ms) commit transaction
28
+ Person Load (0.2ms) SELECT "people".* FROM "people" ORDER BY "people"."id" ASC LIMIT 1
29
+ Person Load (0.3ms) SELECT "people".* FROM "people" ORDER BY "people"."id" ASC LIMIT 1
30
+ Person Load (0.3ms) SELECT "people".* FROM "people" ORDER BY "people"."id" ASC LIMIT 1
31
+ Person Load (0.4ms) SELECT "people".* FROM "people" ORDER BY "people"."id" ASC LIMIT 1
@@ -0,0 +1,929 @@
1
+  (2.0ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "birth_date" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
2
+  (1.9ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
3
+  (0.1ms) select sqlite_version(*)
4
+  (1.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
5
+  (0.1ms) SELECT version FROM "schema_migrations"
6
+  (1.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20150911135550')
7
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
8
+  (0.1ms) begin transaction
9
+ -------------------------------
10
+ DateFormattedTest: test_defined
11
+ -------------------------------
12
+  (0.0ms) rollback transaction
13
+  (0.0ms) begin transaction
14
+ ---------------------------------------------
15
+ DateFormattedTest: test_date_formatted_setter
16
+ ---------------------------------------------
17
+  (0.0ms) rollback transaction
18
+  (0.1ms) begin transaction
19
+ ---------------------------------------------
20
+ DateFormattedTest: test_date_formatted_getter
21
+ ---------------------------------------------
22
+  (0.0ms) rollback transaction
23
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
24
+  (0.1ms) begin transaction
25
+ ---------------------------------------------
26
+ DateFormattedTest: test_date_formatted_setter
27
+ ---------------------------------------------
28
+  (0.0ms) rollback transaction
29
+  (0.1ms) begin transaction
30
+ ---------------------------------------------
31
+ DateFormattedTest: test_date_formatted_getter
32
+ ---------------------------------------------
33
+  (0.1ms) SAVEPOINT active_record_1
34
+ SQL (0.4ms) INSERT INTO "people" ("birth_date", "created_at", "updated_at") VALUES (?, ?, ?) [["birth_date", "1971-02-18"], ["created_at", "2015-09-11 13:58:00.632848"], ["updated_at", "2015-09-11 13:58:00.632848"]]
35
+  (0.1ms) RELEASE SAVEPOINT active_record_1
36
+  (1.1ms) rollback transaction
37
+  (0.1ms) begin transaction
38
+ -------------------------------
39
+ DateFormattedTest: test_defined
40
+ -------------------------------
41
+  (0.0ms) rollback transaction
42
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
43
+  (0.1ms) begin transaction
44
+ -------------------------------
45
+ DateFormattedTest: test_defined
46
+ -------------------------------
47
+  (0.0ms) rollback transaction
48
+  (0.0ms) begin transaction
49
+ ---------------------------------------------
50
+ DateFormattedTest: test_date_formatted_setter
51
+ ---------------------------------------------
52
+  (0.0ms) rollback transaction
53
+  (0.1ms) begin transaction
54
+ ---------------------------------------------
55
+ DateFormattedTest: test_date_formatted_getter
56
+ ---------------------------------------------
57
+  (0.0ms) SAVEPOINT active_record_1
58
+ SQL (0.4ms) INSERT INTO "people" ("birth_date", "created_at", "updated_at") VALUES (?, ?, ?) [["birth_date", "1971-02-18"], ["created_at", "2015-09-11 13:58:25.638739"], ["updated_at", "2015-09-11 13:58:25.638739"]]
59
+  (0.0ms) RELEASE SAVEPOINT active_record_1
60
+ Person Load (0.1ms) SELECT "people".* FROM "people" ORDER BY "people"."id" ASC LIMIT 1
61
+  (1.4ms) rollback transaction
62
+ ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
63
+  (0.2ms) begin transaction
64
+ ---------------------------------------------
65
+ DateFormattedTest: test_date_formatted_getter
66
+ ---------------------------------------------
67
+  (0.1ms) SAVEPOINT active_record_1
68
+ SQL (0.4ms) INSERT INTO "people" ("birth_date", "created_at", "updated_at") VALUES (?, ?, ?) [["birth_date", "1971-02-18"], ["created_at", "2015-09-11 14:02:44.339353"], ["updated_at", "2015-09-11 14:02:44.339353"]]
69
+  (0.1ms) RELEASE SAVEPOINT active_record_1
70
+ Person Load (0.1ms) SELECT "people".* FROM "people" ORDER BY "people"."id" ASC LIMIT 1
71
+  (1.3ms) rollback transaction
72
+  (0.1ms) begin transaction
73
+ ---------------------------------------------
74
+ DateFormattedTest: test_date_formatted_setter
75
+ ---------------------------------------------
76
+  (0.0ms) rollback transaction
77
+  (0.1ms) begin transaction
78
+ -------------------------------
79
+ DateFormattedTest: test_defined
80
+ -------------------------------
81
+  (0.0ms) rollback transaction
82
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
83
+  (0.1ms) begin transaction
84
+ -------------------------------
85
+ DateFormattedTest: test_defined
86
+ -------------------------------
87
+  (0.0ms) rollback transaction
88
+  (0.0ms) begin transaction
89
+ ---------------------------------------------
90
+ DateFormattedTest: test_date_formatted_getter
91
+ ---------------------------------------------
92
+  (0.1ms) SAVEPOINT active_record_1
93
+ SQL (0.5ms) INSERT INTO "people" ("birth_date", "created_at", "updated_at") VALUES (?, ?, ?) [["birth_date", "1971-02-18"], ["created_at", "2015-09-11 14:10:30.062118"], ["updated_at", "2015-09-11 14:10:30.062118"]]
94
+  (0.1ms) RELEASE SAVEPOINT active_record_1
95
+ Person Load (0.1ms) SELECT "people".* FROM "people" ORDER BY "people"."id" ASC LIMIT 1
96
+  (1.4ms) rollback transaction
97
+  (0.1ms) begin transaction
98
+ ---------------------------------------------
99
+ DateFormattedTest: test_date_formatted_setter
100
+ ---------------------------------------------
101
+  (0.0ms) rollback transaction
102
+ ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
103
+  (0.1ms) begin transaction
104
+ ---------------------------------------------
105
+ DateFormattedTest: test_date_formatted_getter
106
+ ---------------------------------------------
107
+  (0.1ms) SAVEPOINT active_record_1
108
+ SQL (0.7ms) INSERT INTO "people" ("birth_date", "created_at", "updated_at") VALUES (?, ?, ?) [["birth_date", "1971-02-18"], ["created_at", "2015-09-11 14:10:48.289034"], ["updated_at", "2015-09-11 14:10:48.289034"]]
109
+  (0.1ms) RELEASE SAVEPOINT active_record_1
110
+ Person Load (0.4ms) SELECT "people".* FROM "people" ORDER BY "people"."id" ASC LIMIT 1
111
+  (1.5ms) rollback transaction
112
+  (0.1ms) begin transaction
113
+ ---------------------------------------------
114
+ DateFormattedTest: test_date_formatted_setter
115
+ ---------------------------------------------
116
+  (0.0ms) rollback transaction
117
+  (0.0ms) begin transaction
118
+ -------------------------------
119
+ DateFormattedTest: test_defined
120
+ -------------------------------
121
+  (0.0ms) rollback transaction
122
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
123
+  (0.1ms) begin transaction
124
+ ---------------------------------------------
125
+ DateFormattedTest: test_date_formatted_getter
126
+ ---------------------------------------------
127
+  (0.1ms) SAVEPOINT active_record_1
128
+ SQL (0.4ms) INSERT INTO "people" ("birth_date", "created_at", "updated_at") VALUES (?, ?, ?) [["birth_date", "1971-02-18"], ["created_at", "2015-09-11 14:13:19.876257"], ["updated_at", "2015-09-11 14:13:19.876257"]]
129
+  (0.0ms) RELEASE SAVEPOINT active_record_1
130
+ Person Load (0.1ms) SELECT "people".* FROM "people" ORDER BY "people"."id" ASC LIMIT 1
131
+  (1.4ms) rollback transaction
132
+  (0.1ms) begin transaction
133
+ ---------------------------------------------
134
+ DateFormattedTest: test_date_formatted_setter
135
+ ---------------------------------------------
136
+  (0.0ms) rollback transaction
137
+  (0.0ms) begin transaction
138
+ -------------------------------
139
+ DateFormattedTest: test_defined
140
+ -------------------------------
141
+  (0.0ms) rollback transaction
142
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
143
+  (0.2ms) begin transaction
144
+ ---------------------------------------------
145
+ DateFormattedTest: test_date_formatted_setter
146
+ ---------------------------------------------
147
+  (0.1ms) rollback transaction
148
+  (0.1ms) begin transaction
149
+ ---------------------------------------------
150
+ DateFormattedTest: test_date_formatted_getter
151
+ ---------------------------------------------
152
+  (0.1ms) rollback transaction
153
+  (0.0ms) begin transaction
154
+ -------------------------------
155
+ DateFormattedTest: test_defined
156
+ -------------------------------
157
+  (0.0ms) rollback transaction
158
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
159
+  (0.1ms) begin transaction
160
+ ---------------------------------------------
161
+ DateFormattedTest: test_date_formatted_getter
162
+ ---------------------------------------------
163
+  (0.1ms) rollback transaction
164
+  (0.0ms) begin transaction
165
+ ---------------------------------------------
166
+ DateFormattedTest: test_date_formatted_setter
167
+ ---------------------------------------------
168
+  (0.0ms) rollback transaction
169
+  (0.1ms) begin transaction
170
+ -------------------------------
171
+ DateFormattedTest: test_defined
172
+ -------------------------------
173
+  (0.0ms) rollback transaction
174
+ ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
175
+  (0.1ms) begin transaction
176
+ ---------------------------------------------
177
+ DateFormattedTest: test_date_formatted_setter
178
+ ---------------------------------------------
179
+  (0.0ms) rollback transaction
180
+  (0.1ms) begin transaction
181
+ -------------------------------
182
+ DateFormattedTest: test_defined
183
+ -------------------------------
184
+  (0.0ms) rollback transaction
185
+  (0.0ms) begin transaction
186
+ ---------------------------------------------
187
+ DateFormattedTest: test_date_formatted_getter
188
+ ---------------------------------------------
189
+  (0.1ms) rollback transaction
190
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
191
+  (0.1ms) begin transaction
192
+ ---------------------------------------------
193
+ DateFormattedTest: test_date_formatted_getter
194
+ ---------------------------------------------
195
+  (0.1ms) SAVEPOINT active_record_1
196
+ SQL (0.4ms) INSERT INTO "people" ("birth_date", "created_at", "updated_at") VALUES (?, ?, ?) [["birth_date", "1971-02-18"], ["created_at", "2015-09-11 14:22:27.514492"], ["updated_at", "2015-09-11 14:22:27.514492"]]
197
+  (0.0ms) RELEASE SAVEPOINT active_record_1
198
+ Person Load (0.1ms) SELECT "people".* FROM "people" ORDER BY "people"."id" ASC LIMIT 1
199
+  (1.3ms) rollback transaction
200
+  (0.1ms) begin transaction
201
+ ---------------------------------------------
202
+ DateFormattedTest: test_date_formatted_setter
203
+ ---------------------------------------------
204
+  (0.0ms) rollback transaction
205
+  (0.1ms) begin transaction
206
+ -------------------------------
207
+ DateFormattedTest: test_defined
208
+ -------------------------------
209
+  (0.0ms) rollback transaction
210
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
211
+  (0.1ms) begin transaction
212
+ ---------------------------------------------
213
+ DateFormattedTest: test_date_formatted_getter
214
+ ---------------------------------------------
215
+  (0.1ms) SAVEPOINT active_record_1
216
+ SQL (0.4ms) INSERT INTO "people" ("birth_date", "created_at", "updated_at") VALUES (?, ?, ?) [["birth_date", "1971-02-18"], ["created_at", "2015-09-11 14:23:59.716864"], ["updated_at", "2015-09-11 14:23:59.716864"]]
217
+  (0.0ms) RELEASE SAVEPOINT active_record_1
218
+ Person Load (0.1ms) SELECT "people".* FROM "people" ORDER BY "people"."id" ASC LIMIT 1
219
+  (1.3ms) rollback transaction
220
+  (0.1ms) begin transaction
221
+ -------------------------------
222
+ DateFormattedTest: test_defined
223
+ -------------------------------
224
+  (0.0ms) rollback transaction
225
+  (0.1ms) begin transaction
226
+ ---------------------------------------------
227
+ DateFormattedTest: test_date_formatted_setter
228
+ ---------------------------------------------
229
+  (0.3ms) rollback transaction
230
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
231
+  (0.1ms) begin transaction
232
+ ---------------------------------------------
233
+ DateFormattedTest: test_date_formatted_getter
234
+ ---------------------------------------------
235
+  (0.0ms) SAVEPOINT active_record_1
236
+ SQL (0.6ms) INSERT INTO "people" ("birth_date", "created_at", "updated_at") VALUES (?, ?, ?) [["birth_date", "1971-02-18"], ["created_at", "2015-09-11 14:27:03.147912"], ["updated_at", "2015-09-11 14:27:03.147912"]]
237
+  (0.2ms) RELEASE SAVEPOINT active_record_1
238
+ Person Load (0.1ms) SELECT "people".* FROM "people" ORDER BY "people"."id" ASC LIMIT 1
239
+  (1.3ms) rollback transaction
240
+  (0.1ms) begin transaction
241
+ ----------------------------------------------------
242
+ DateFormattedTest: test_date_formatted_getter_german
243
+ ----------------------------------------------------
244
+  (0.0ms) SAVEPOINT active_record_1
245
+ SQL (0.4ms) INSERT INTO "people" ("birth_date", "created_at", "updated_at") VALUES (?, ?, ?) [["birth_date", "1971-02-18"], ["created_at", "2015-09-11 14:27:03.160758"], ["updated_at", "2015-09-11 14:27:03.160758"]]
246
+  (0.1ms) RELEASE SAVEPOINT active_record_1
247
+ Person Load (0.1ms) SELECT "people".* FROM "people" ORDER BY "people"."id" ASC LIMIT 1
248
+  (1.0ms) rollback transaction
249
+  (0.5ms) begin transaction
250
+ ---------------------------------------------
251
+ DateFormattedTest: test_date_formatted_setter
252
+ ---------------------------------------------
253
+  (0.1ms) rollback transaction
254
+  (0.0ms) begin transaction
255
+ -------------------------------
256
+ DateFormattedTest: test_defined
257
+ -------------------------------
258
+  (0.0ms) rollback transaction
259
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
260
+  (0.1ms) begin transaction
261
+ ---------------------------------------------
262
+ DateFormattedTest: test_date_formatted_setter
263
+ ---------------------------------------------
264
+  (0.1ms) rollback transaction
265
+  (0.1ms) begin transaction
266
+ -------------------------------
267
+ DateFormattedTest: test_defined
268
+ -------------------------------
269
+  (0.0ms) rollback transaction
270
+  (0.0ms) begin transaction
271
+ ----------------------------------------------------
272
+ DateFormattedTest: test_date_formatted_getter_german
273
+ ----------------------------------------------------
274
+  (0.1ms) SAVEPOINT active_record_1
275
+ SQL (0.4ms) INSERT INTO "people" ("birth_date", "created_at", "updated_at") VALUES (?, ?, ?) [["birth_date", "1971-02-18"], ["created_at", "2015-09-11 14:27:42.100399"], ["updated_at", "2015-09-11 14:27:42.100399"]]
276
+  (0.0ms) RELEASE SAVEPOINT active_record_1
277
+ Person Load (0.1ms) SELECT "people".* FROM "people" ORDER BY "people"."id" ASC LIMIT 1
278
+  (1.0ms) rollback transaction
279
+  (0.1ms) begin transaction
280
+ ---------------------------------------------
281
+ DateFormattedTest: test_date_formatted_getter
282
+ ---------------------------------------------
283
+  (0.0ms) SAVEPOINT active_record_1
284
+ SQL (0.3ms) INSERT INTO "people" ("birth_date", "created_at", "updated_at") VALUES (?, ?, ?) [["birth_date", "1971-02-18"], ["created_at", "2015-09-11 14:27:42.121625"], ["updated_at", "2015-09-11 14:27:42.121625"]]
285
+  (0.0ms) RELEASE SAVEPOINT active_record_1
286
+ Person Load (0.1ms) SELECT "people".* FROM "people" ORDER BY "people"."id" ASC LIMIT 1
287
+  (0.9ms) rollback transaction
288
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
289
+  (0.1ms) begin transaction
290
+ ---------------------------------------------
291
+ DateFormattedTest: test_date_formatted_getter
292
+ ---------------------------------------------
293
+  (0.1ms) SAVEPOINT active_record_1
294
+ SQL (0.4ms) INSERT INTO "people" ("birth_date", "created_at", "updated_at") VALUES (?, ?, ?) [["birth_date", "1971-02-18"], ["created_at", "2015-09-11 14:28:00.470455"], ["updated_at", "2015-09-11 14:28:00.470455"]]
295
+  (0.1ms) RELEASE SAVEPOINT active_record_1
296
+ Person Load (0.1ms) SELECT "people".* FROM "people" ORDER BY "people"."id" ASC LIMIT 1
297
+  (1.6ms) rollback transaction
298
+  (0.1ms) begin transaction
299
+ ----------------------------------------------------
300
+ DateFormattedTest: test_date_formatted_getter_german
301
+ ----------------------------------------------------
302
+  (0.0ms) SAVEPOINT active_record_1
303
+ SQL (0.5ms) INSERT INTO "people" ("birth_date", "created_at", "updated_at") VALUES (?, ?, ?) [["birth_date", "1971-02-18"], ["created_at", "2015-09-11 14:28:00.481127"], ["updated_at", "2015-09-11 14:28:00.481127"]]
304
+  (0.4ms) RELEASE SAVEPOINT active_record_1
305
+ Person Load (0.1ms) SELECT "people".* FROM "people" ORDER BY "people"."id" ASC LIMIT 1
306
+  (1.6ms) rollback transaction
307
+  (0.1ms) begin transaction
308
+ -------------------------------
309
+ DateFormattedTest: test_defined
310
+ -------------------------------
311
+  (0.0ms) rollback transaction
312
+  (0.0ms) begin transaction
313
+ ---------------------------------------------
314
+ DateFormattedTest: test_date_formatted_setter
315
+ ---------------------------------------------
316
+  (0.0ms) rollback transaction
317
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
318
+  (0.1ms) begin transaction
319
+ -------------------------------
320
+ DateFormattedTest: test_defined
321
+ -------------------------------
322
+  (0.0ms) rollback transaction
323
+  (0.1ms) begin transaction
324
+ ----------------------------------------------------
325
+ DateFormattedTest: test_date_formatted_getter_german
326
+ ----------------------------------------------------
327
+  (0.1ms) SAVEPOINT active_record_1
328
+ SQL (0.6ms) INSERT INTO "people" ("birth_date", "created_at", "updated_at") VALUES (?, ?, ?) [["birth_date", "1971-02-18"], ["created_at", "2015-09-11 14:28:18.484623"], ["updated_at", "2015-09-11 14:28:18.484623"]]
329
+  (0.1ms) RELEASE SAVEPOINT active_record_1
330
+ Person Load (0.1ms) SELECT "people".* FROM "people" ORDER BY "people"."id" ASC LIMIT 1
331
+  (1.4ms) rollback transaction
332
+  (0.1ms) begin transaction
333
+ ---------------------------------------------
334
+ DateFormattedTest: test_date_formatted_setter
335
+ ---------------------------------------------
336
+  (0.0ms) rollback transaction
337
+  (0.1ms) begin transaction
338
+ ---------------------------------------------
339
+ DateFormattedTest: test_date_formatted_getter
340
+ ---------------------------------------------
341
+  (0.0ms) SAVEPOINT active_record_1
342
+ SQL (0.4ms) INSERT INTO "people" ("birth_date", "created_at", "updated_at") VALUES (?, ?, ?) [["birth_date", "1971-02-18"], ["created_at", "2015-09-11 14:28:18.497782"], ["updated_at", "2015-09-11 14:28:18.497782"]]
343
+  (0.2ms) RELEASE SAVEPOINT active_record_1
344
+ Person Load (0.4ms) SELECT "people".* FROM "people" ORDER BY "people"."id" ASC LIMIT 1
345
+  (1.4ms) rollback transaction
346
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
347
+  (0.1ms) begin transaction
348
+ ---------------------------------------------
349
+ DateFormattedTest: test_date_formatted_getter
350
+ ---------------------------------------------
351
+  (0.1ms) SAVEPOINT active_record_1
352
+ SQL (1.1ms) INSERT INTO "people" ("birth_date", "created_at", "updated_at") VALUES (?, ?, ?) [["birth_date", "1971-02-18"], ["created_at", "2015-09-11 14:28:32.756218"], ["updated_at", "2015-09-11 14:28:32.756218"]]
353
+  (0.1ms) RELEASE SAVEPOINT active_record_1
354
+ Person Load (0.1ms) SELECT "people".* FROM "people" ORDER BY "people"."id" ASC LIMIT 1
355
+  (1.5ms) rollback transaction
356
+  (0.1ms) begin transaction
357
+ ---------------------------------------------
358
+ DateFormattedTest: test_date_formatted_setter
359
+ ---------------------------------------------
360
+  (0.0ms) rollback transaction
361
+  (0.1ms) begin transaction
362
+ ----------------------------------------------------
363
+ DateFormattedTest: test_date_formatted_getter_german
364
+ ----------------------------------------------------
365
+  (0.0ms) SAVEPOINT active_record_1
366
+ SQL (0.4ms) INSERT INTO "people" ("birth_date", "created_at", "updated_at") VALUES (?, ?, ?) [["birth_date", "1971-02-18"], ["created_at", "2015-09-11 14:28:32.768272"], ["updated_at", "2015-09-11 14:28:32.768272"]]
367
+  (0.1ms) RELEASE SAVEPOINT active_record_1
368
+ Person Load (0.1ms) SELECT "people".* FROM "people" ORDER BY "people"."id" ASC LIMIT 1
369
+  (1.4ms) rollback transaction
370
+  (0.1ms) begin transaction
371
+ -------------------------------
372
+ DateFormattedTest: test_defined
373
+ -------------------------------
374
+  (0.0ms) rollback transaction
375
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
376
+  (0.1ms) begin transaction
377
+ ---------------------------------------------
378
+ DateFormattedTest: test_date_formatted_getter
379
+ ---------------------------------------------
380
+  (0.1ms) SAVEPOINT active_record_1
381
+ SQL (0.5ms) INSERT INTO "people" ("birth_date", "created_at", "updated_at") VALUES (?, ?, ?) [["birth_date", "1971-02-18"], ["created_at", "2015-09-11 14:30:30.978058"], ["updated_at", "2015-09-11 14:30:30.978058"]]
382
+  (0.1ms) RELEASE SAVEPOINT active_record_1
383
+ Person Load (0.1ms) SELECT "people".* FROM "people" ORDER BY "people"."id" ASC LIMIT 1
384
+  (1.3ms) rollback transaction
385
+  (0.1ms) begin transaction
386
+ --------------------------------------
387
+ DateFormattedTest: test_module_defined
388
+ --------------------------------------
389
+  (0.0ms) SAVEPOINT active_record_1
390
+ SQL (0.4ms) INSERT INTO "people" ("birth_date", "created_at", "updated_at") VALUES (?, ?, ?) [["birth_date", "1971-02-18"], ["created_at", "2015-09-11 14:30:30.990492"], ["updated_at", "2015-09-11 14:30:30.990492"]]
391
+  (0.1ms) RELEASE SAVEPOINT active_record_1
392
+  (1.4ms) rollback transaction
393
+  (0.1ms) begin transaction
394
+ ----------------------------------------------------
395
+ DateFormattedTest: test_date_formatted_setter_german
396
+ ----------------------------------------------------
397
+  (0.0ms) SAVEPOINT active_record_1
398
+ SQL (0.3ms) INSERT INTO "people" ("birth_date", "created_at", "updated_at") VALUES (?, ?, ?) [["birth_date", "1971-02-18"], ["created_at", "2015-09-11 14:30:30.994172"], ["updated_at", "2015-09-11 14:30:30.994172"]]
399
+  (0.1ms) RELEASE SAVEPOINT active_record_1
400
+ Person Load (0.1ms) SELECT "people".* FROM "people" ORDER BY "people"."id" ASC LIMIT 1
401
+  (0.1ms) SAVEPOINT active_record_1
402
+ SQL (0.8ms) UPDATE "people" SET "birth_date" = ?, "updated_at" = ? WHERE "people"."id" = ? [["birth_date", "1971-02-24"], ["updated_at", "2015-09-11 14:30:30.998365"], ["id", 1]]
403
+  (0.1ms) RELEASE SAVEPOINT active_record_1
404
+ Person Load (0.1ms) SELECT "people".* FROM "people" ORDER BY "people"."id" ASC LIMIT 1
405
+ Person Load (0.1ms) SELECT "people".* FROM "people" ORDER BY "people"."id" ASC LIMIT 1
406
+  (1.6ms) rollback transaction
407
+  (0.1ms) begin transaction
408
+ ----------------------------------------------------
409
+ DateFormattedTest: test_date_formatted_getter_german
410
+ ----------------------------------------------------
411
+  (0.0ms) SAVEPOINT active_record_1
412
+ SQL (0.3ms) INSERT INTO "people" ("birth_date", "created_at", "updated_at") VALUES (?, ?, ?) [["birth_date", "1971-02-18"], ["created_at", "2015-09-11 14:30:31.012738"], ["updated_at", "2015-09-11 14:30:31.012738"]]
413
+  (0.0ms) RELEASE SAVEPOINT active_record_1
414
+ Person Load (0.1ms) SELECT "people".* FROM "people" ORDER BY "people"."id" ASC LIMIT 1
415
+  (1.3ms) rollback transaction
416
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
417
+  (0.1ms) begin transaction
418
+ ---------------------------------------------
419
+ DateFormattedTest: test_date_formatted_getter
420
+ ---------------------------------------------
421
+  (0.6ms) SAVEPOINT active_record_1
422
+ SQL (0.5ms) INSERT INTO "people" ("birth_date", "created_at", "updated_at") VALUES (?, ?, ?) [["birth_date", "1971-02-18"], ["created_at", "2015-09-11 14:42:42.864111"], ["updated_at", "2015-09-11 14:42:42.864111"]]
423
+  (0.1ms) RELEASE SAVEPOINT active_record_1
424
+ Person Load (0.1ms) SELECT "people".* FROM "people" ORDER BY "people"."id" ASC LIMIT 1
425
+ Person Load (0.1ms) SELECT "people".* FROM "people" ORDER BY "people"."id" ASC LIMIT 1
426
+  (1.2ms) rollback transaction
427
+  (0.1ms) begin transaction
428
+ --------------------------------------
429
+ DateFormattedTest: test_module_defined
430
+ --------------------------------------
431
+  (0.0ms) SAVEPOINT active_record_1
432
+ SQL (0.4ms) INSERT INTO "people" ("birth_date", "created_at", "updated_at") VALUES (?, ?, ?) [["birth_date", "1971-02-18"], ["created_at", "2015-09-11 14:42:42.875533"], ["updated_at", "2015-09-11 14:42:42.875533"]]
433
+  (0.0ms) RELEASE SAVEPOINT active_record_1
434
+  (1.5ms) rollback transaction
435
+  (0.1ms) begin transaction
436
+ ----------------------------------------------------
437
+ DateFormattedTest: test_date_formatted_getter_german
438
+ ----------------------------------------------------
439
+  (0.0ms) SAVEPOINT active_record_1
440
+ SQL (0.3ms) INSERT INTO "people" ("birth_date", "created_at", "updated_at") VALUES (?, ?, ?) [["birth_date", "1971-02-18"], ["created_at", "2015-09-11 14:42:42.879067"], ["updated_at", "2015-09-11 14:42:42.879067"]]
441
+  (0.0ms) RELEASE SAVEPOINT active_record_1
442
+ Person Load (0.1ms) SELECT "people".* FROM "people" ORDER BY "people"."id" ASC LIMIT 1
443
+ Person Load (0.0ms) SELECT "people".* FROM "people" ORDER BY "people"."id" ASC LIMIT 1
444
+  (1.3ms) rollback transaction
445
+  (0.1ms) begin transaction
446
+ ----------------------------------------------------
447
+ DateFormattedTest: test_date_formatted_setter_german
448
+ ----------------------------------------------------
449
+  (0.0ms) SAVEPOINT active_record_1
450
+ SQL (0.3ms) INSERT INTO "people" ("birth_date", "created_at", "updated_at") VALUES (?, ?, ?) [["birth_date", "1971-02-18"], ["created_at", "2015-09-11 14:42:42.883047"], ["updated_at", "2015-09-11 14:42:42.883047"]]
451
+  (0.0ms) RELEASE SAVEPOINT active_record_1
452
+ Person Load (0.1ms) SELECT "people".* FROM "people" ORDER BY "people"."id" ASC LIMIT 1
453
+  (0.0ms) SAVEPOINT active_record_1
454
+ SQL (0.6ms) UPDATE "people" SET "birth_date" = ?, "updated_at" = ? WHERE "people"."id" = ? [["birth_date", "1971-02-24"], ["updated_at", "2015-09-11 14:42:42.885477"], ["id", 1]]
455
+  (0.1ms) RELEASE SAVEPOINT active_record_1
456
+ Person Load (0.1ms) SELECT "people".* FROM "people" ORDER BY "people"."id" ASC LIMIT 1
457
+ Person Load (0.1ms) SELECT "people".* FROM "people" ORDER BY "people"."id" ASC LIMIT 1
458
+  (1.8ms) rollback transaction
459
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
460
+  (0.1ms) begin transaction
461
+ --------------------------------------
462
+ DateFormattedTest: test_module_defined
463
+ --------------------------------------
464
+  (0.3ms) SAVEPOINT active_record_1
465
+ SQL (0.4ms) INSERT INTO "people" ("birth_date", "created_at", "updated_at") VALUES (?, ?, ?) [["birth_date", "1971-02-18"], ["created_at", "2015-09-11 14:46:41.703162"], ["updated_at", "2015-09-11 14:46:41.703162"]]
466
+  (0.0ms) RELEASE SAVEPOINT active_record_1
467
+  (1.3ms) rollback transaction
468
+  (0.1ms) begin transaction
469
+ ----------------------------------------------------
470
+ DateFormattedTest: test_date_formatted_getter_german
471
+ ----------------------------------------------------
472
+  (0.0ms) SAVEPOINT active_record_1
473
+ SQL (0.3ms) INSERT INTO "people" ("birth_date", "created_at", "updated_at") VALUES (?, ?, ?) [["birth_date", "1971-02-18"], ["created_at", "2015-09-11 14:46:41.708818"], ["updated_at", "2015-09-11 14:46:41.708818"]]
474
+  (0.0ms) RELEASE SAVEPOINT active_record_1
475
+ Person Load (0.1ms) SELECT "people".* FROM "people" ORDER BY "people"."id" ASC LIMIT 1
476
+ Person Load (0.1ms) SELECT "people".* FROM "people" ORDER BY "people"."id" ASC LIMIT 1
477
+  (1.3ms) rollback transaction
478
+  (0.1ms) begin transaction
479
+ ---------------------------------------------
480
+ DateFormattedTest: test_date_formatted_getter
481
+ ---------------------------------------------
482
+  (0.0ms) SAVEPOINT active_record_1
483
+ SQL (0.3ms) INSERT INTO "people" ("birth_date", "created_at", "updated_at") VALUES (?, ?, ?) [["birth_date", "1971-02-18"], ["created_at", "2015-09-11 14:46:41.717829"], ["updated_at", "2015-09-11 14:46:41.717829"]]
484
+  (0.0ms) RELEASE SAVEPOINT active_record_1
485
+ Person Load (0.1ms) SELECT "people".* FROM "people" ORDER BY "people"."id" ASC LIMIT 1
486
+  (1.3ms) rollback transaction
487
+  (0.1ms) begin transaction
488
+ ----------------------------------------------------
489
+ DateFormattedTest: test_date_formatted_setter_german
490
+ ----------------------------------------------------
491
+  (0.0ms) SAVEPOINT active_record_1
492
+ SQL (0.4ms) INSERT INTO "people" ("birth_date", "created_at", "updated_at") VALUES (?, ?, ?) [["birth_date", "1971-02-18"], ["created_at", "2015-09-11 14:46:41.721582"], ["updated_at", "2015-09-11 14:46:41.721582"]]
493
+  (0.0ms) RELEASE SAVEPOINT active_record_1
494
+ Person Load (0.1ms) SELECT "people".* FROM "people" ORDER BY "people"."id" ASC LIMIT 1
495
+  (0.0ms) SAVEPOINT active_record_1
496
+ SQL (0.6ms) UPDATE "people" SET "birth_date" = ?, "updated_at" = ? WHERE "people"."id" = ? [["birth_date", "1971-02-24"], ["updated_at", "2015-09-11 14:46:41.723594"], ["id", 1]]
497
+  (0.1ms) RELEASE SAVEPOINT active_record_1
498
+ Person Load (0.1ms) SELECT "people".* FROM "people" ORDER BY "people"."id" ASC LIMIT 1
499
+ Person Load (0.1ms) SELECT "people".* FROM "people" ORDER BY "people"."id" ASC LIMIT 1
500
+  (1.5ms) rollback transaction
501
+ ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
502
+  (0.1ms) begin transaction
503
+ ----------------------------------------------------
504
+ DateFormattedTest: test_date_formatted_getter_german
505
+ ----------------------------------------------------
506
+  (0.1ms) SAVEPOINT active_record_1
507
+ SQL (0.4ms) INSERT INTO "people" ("birth_date", "created_at", "updated_at") VALUES (?, ?, ?) [["birth_date", "1971-02-18"], ["created_at", "2015-09-11 14:47:05.270825"], ["updated_at", "2015-09-11 14:47:05.270825"]]
508
+  (0.0ms) RELEASE SAVEPOINT active_record_1
509
+ Person Load (0.1ms) SELECT "people".* FROM "people" ORDER BY "people"."id" ASC LIMIT 1
510
+ Person Load (0.1ms) SELECT "people".* FROM "people" ORDER BY "people"."id" ASC LIMIT 1
511
+  (1.3ms) rollback transaction
512
+  (0.1ms) begin transaction
513
+ ---------------------------------------------
514
+ DateFormattedTest: test_date_formatted_getter
515
+ ---------------------------------------------
516
+  (0.0ms) SAVEPOINT active_record_1
517
+ SQL (0.3ms) INSERT INTO "people" ("birth_date", "created_at", "updated_at") VALUES (?, ?, ?) [["birth_date", "1971-02-18"], ["created_at", "2015-09-11 14:47:05.281499"], ["updated_at", "2015-09-11 14:47:05.281499"]]
518
+  (0.0ms) RELEASE SAVEPOINT active_record_1
519
+ Person Load (0.1ms) SELECT "people".* FROM "people" ORDER BY "people"."id" ASC LIMIT 1
520
+  (1.4ms) rollback transaction
521
+  (0.1ms) begin transaction
522
+ ----------------------------------------------------
523
+ DateFormattedTest: test_date_formatted_setter_german
524
+ ----------------------------------------------------
525
+  (0.0ms) SAVEPOINT active_record_1
526
+ SQL (0.4ms) INSERT INTO "people" ("birth_date", "created_at", "updated_at") VALUES (?, ?, ?) [["birth_date", "1971-02-18"], ["created_at", "2015-09-11 14:47:05.285563"], ["updated_at", "2015-09-11 14:47:05.285563"]]
527
+  (0.1ms) RELEASE SAVEPOINT active_record_1
528
+ Person Load (0.1ms) SELECT "people".* FROM "people" ORDER BY "people"."id" ASC LIMIT 1
529
+  (0.0ms) SAVEPOINT active_record_1
530
+ SQL (0.5ms) UPDATE "people" SET "birth_date" = ?, "updated_at" = ? WHERE "people"."id" = ? [["birth_date", "1971-02-24"], ["updated_at", "2015-09-11 14:47:05.287741"], ["id", 1]]
531
+  (0.1ms) RELEASE SAVEPOINT active_record_1
532
+ Person Load (0.4ms) SELECT "people".* FROM "people" ORDER BY "people"."id" ASC LIMIT 1
533
+ Person Load (0.1ms) SELECT "people".* FROM "people" ORDER BY "people"."id" ASC LIMIT 1
534
+  (1.5ms) rollback transaction
535
+  (0.1ms) begin transaction
536
+ --------------------------------------
537
+ DateFormattedTest: test_module_defined
538
+ --------------------------------------
539
+  (0.1ms) SAVEPOINT active_record_1
540
+ SQL (3.4ms) INSERT INTO "people" ("birth_date", "created_at", "updated_at") VALUES (?, ?, ?) [["birth_date", "1971-02-18"], ["created_at", "2015-09-11 14:47:05.296775"], ["updated_at", "2015-09-11 14:47:05.296775"]]
541
+  (0.1ms) RELEASE SAVEPOINT active_record_1
542
+  (1.3ms) rollback transaction
543
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
544
+  (0.1ms) begin transaction
545
+ ---------------------------------------------
546
+ DateFormattedTest: test_date_formatted_getter
547
+ ---------------------------------------------
548
+  (0.1ms) SAVEPOINT active_record_1
549
+ SQL (0.6ms) INSERT INTO "people" ("birth_date", "created_at", "updated_at") VALUES (?, ?, ?) [["birth_date", "1971-02-18"], ["created_at", "2015-09-11 14:47:46.879176"], ["updated_at", "2015-09-11 14:47:46.879176"]]
550
+  (0.1ms) RELEASE SAVEPOINT active_record_1
551
+ Person Load (0.2ms) SELECT "people".* FROM "people" ORDER BY "people"."id" ASC LIMIT 1
552
+ Person Load (0.1ms) SELECT "people".* FROM "people" ORDER BY "people"."id" ASC LIMIT 1
553
+  (1.3ms) rollback transaction
554
+  (0.1ms) begin transaction
555
+ ----------------------------------------------------
556
+ DateFormattedTest: test_date_formatted_setter_german
557
+ ----------------------------------------------------
558
+  (0.0ms) SAVEPOINT active_record_1
559
+ SQL (0.3ms) INSERT INTO "people" ("birth_date", "created_at", "updated_at") VALUES (?, ?, ?) [["birth_date", "1971-02-18"], ["created_at", "2015-09-11 14:47:46.888209"], ["updated_at", "2015-09-11 14:47:46.888209"]]
560
+  (0.1ms) RELEASE SAVEPOINT active_record_1
561
+ Person Load (0.1ms) SELECT "people".* FROM "people" ORDER BY "people"."id" ASC LIMIT 1
562
+  (0.0ms) SAVEPOINT active_record_1
563
+ SQL (0.4ms) UPDATE "people" SET "birth_date" = ?, "updated_at" = ? WHERE "people"."id" = ? [["birth_date", "1971-02-24"], ["updated_at", "2015-09-11 14:47:46.890489"], ["id", 1]]
564
+  (0.0ms) RELEASE SAVEPOINT active_record_1
565
+ Person Load (0.3ms) SELECT "people".* FROM "people" ORDER BY "people"."id" ASC LIMIT 1
566
+ Person Load (0.1ms) SELECT "people".* FROM "people" ORDER BY "people"."id" ASC LIMIT 1
567
+  (1.4ms) rollback transaction
568
+  (0.1ms) begin transaction
569
+ --------------------------------------
570
+ DateFormattedTest: test_module_defined
571
+ --------------------------------------
572
+  (0.0ms) SAVEPOINT active_record_1
573
+ SQL (0.4ms) INSERT INTO "people" ("birth_date", "created_at", "updated_at") VALUES (?, ?, ?) [["birth_date", "1971-02-18"], ["created_at", "2015-09-11 14:47:46.898542"], ["updated_at", "2015-09-11 14:47:46.898542"]]
574
+  (0.0ms) RELEASE SAVEPOINT active_record_1
575
+  (1.4ms) rollback transaction
576
+  (0.1ms) begin transaction
577
+ ----------------------------------------------------
578
+ DateFormattedTest: test_date_formatted_getter_german
579
+ ----------------------------------------------------
580
+  (0.1ms) SAVEPOINT active_record_1
581
+ SQL (0.5ms) INSERT INTO "people" ("birth_date", "created_at", "updated_at") VALUES (?, ?, ?) [["birth_date", "1971-02-18"], ["created_at", "2015-09-11 14:47:46.902611"], ["updated_at", "2015-09-11 14:47:46.902611"]]
582
+  (0.0ms) RELEASE SAVEPOINT active_record_1
583
+ Person Load (0.1ms) SELECT "people".* FROM "people" ORDER BY "people"."id" ASC LIMIT 1
584
+ Person Load (0.1ms) SELECT "people".* FROM "people" ORDER BY "people"."id" ASC LIMIT 1
585
+  (1.2ms) rollback transaction
586
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
587
+  (0.1ms) begin transaction
588
+ ----------------------------------------------------
589
+ DateFormattedTest: test_date_formatted_setter_german
590
+ ----------------------------------------------------
591
+  (0.1ms) SAVEPOINT active_record_1
592
+ SQL (0.4ms) INSERT INTO "people" ("birth_date", "created_at", "updated_at") VALUES (?, ?, ?) [["birth_date", "1971-02-18"], ["created_at", "2015-09-11 14:48:42.302362"], ["updated_at", "2015-09-11 14:48:42.302362"]]
593
+  (0.1ms) RELEASE SAVEPOINT active_record_1
594
+ Person Load (0.2ms) SELECT "people".* FROM "people" ORDER BY "people"."id" ASC LIMIT 1
595
+  (0.1ms) SAVEPOINT active_record_1
596
+ SQL (0.6ms) UPDATE "people" SET "birth_date" = ?, "updated_at" = ? WHERE "people"."id" = ? [["birth_date", "1971-02-24"], ["updated_at", "2015-09-11 14:48:42.308508"], ["id", 1]]
597
+  (0.3ms) RELEASE SAVEPOINT active_record_1
598
+ Person Load (0.1ms) SELECT "people".* FROM "people" ORDER BY "people"."id" ASC LIMIT 1
599
+ Person Load (0.1ms) SELECT "people".* FROM "people" ORDER BY "people"."id" ASC LIMIT 1
600
+  (1.5ms) rollback transaction
601
+  (0.1ms) begin transaction
602
+ ---------------------------------------------
603
+ DateFormattedTest: test_date_formatted_getter
604
+ ---------------------------------------------
605
+  (0.0ms) SAVEPOINT active_record_1
606
+ SQL (0.3ms) INSERT INTO "people" ("birth_date", "created_at", "updated_at") VALUES (?, ?, ?) [["birth_date", "1971-02-18"], ["created_at", "2015-09-11 14:48:42.318781"], ["updated_at", "2015-09-11 14:48:42.318781"]]
607
+  (0.0ms) RELEASE SAVEPOINT active_record_1
608
+ Person Load (0.1ms) SELECT "people".* FROM "people" ORDER BY "people"."id" ASC LIMIT 1
609
+ Person Load (0.1ms) SELECT "people".* FROM "people" ORDER BY "people"."id" ASC LIMIT 1
610
+  (1.5ms) rollback transaction
611
+  (0.1ms) begin transaction
612
+ ----------------------------------------------------
613
+ DateFormattedTest: test_date_formatted_getter_german
614
+ ----------------------------------------------------
615
+  (0.1ms) SAVEPOINT active_record_1
616
+ SQL (0.4ms) INSERT INTO "people" ("birth_date", "created_at", "updated_at") VALUES (?, ?, ?) [["birth_date", "1971-02-18"], ["created_at", "2015-09-11 14:48:42.323964"], ["updated_at", "2015-09-11 14:48:42.323964"]]
617
+  (0.0ms) RELEASE SAVEPOINT active_record_1
618
+ Person Load (0.1ms) SELECT "people".* FROM "people" ORDER BY "people"."id" ASC LIMIT 1
619
+ Person Load (0.1ms) SELECT "people".* FROM "people" ORDER BY "people"."id" ASC LIMIT 1
620
+  (1.2ms) rollback transaction
621
+  (0.0ms) begin transaction
622
+ --------------------------------------
623
+ DateFormattedTest: test_module_defined
624
+ --------------------------------------
625
+  (0.0ms) SAVEPOINT active_record_1
626
+ SQL (0.3ms) INSERT INTO "people" ("birth_date", "created_at", "updated_at") VALUES (?, ?, ?) [["birth_date", "1971-02-18"], ["created_at", "2015-09-11 14:48:42.328273"], ["updated_at", "2015-09-11 14:48:42.328273"]]
627
+  (0.0ms) RELEASE SAVEPOINT active_record_1
628
+  (1.0ms) rollback transaction
629
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
630
+  (0.1ms) begin transaction
631
+ ---------------------------------------------
632
+ DateFormattedTest: test_date_formatted_getter
633
+ ---------------------------------------------
634
+  (0.1ms) SAVEPOINT active_record_1
635
+ SQL (0.4ms) INSERT INTO "people" ("birth_date", "created_at", "updated_at") VALUES (?, ?, ?) [["birth_date", "1971-02-18"], ["created_at", "2015-09-11 14:48:54.841583"], ["updated_at", "2015-09-11 14:48:54.841583"]]
636
+  (0.1ms) RELEASE SAVEPOINT active_record_1
637
+ Person Load (0.1ms) SELECT "people".* FROM "people" ORDER BY "people"."id" ASC LIMIT 1
638
+ Person Load (0.1ms) SELECT "people".* FROM "people" ORDER BY "people"."id" ASC LIMIT 1
639
+  (1.3ms) rollback transaction
640
+  (0.1ms) begin transaction
641
+ --------------------------------------
642
+ DateFormattedTest: test_module_defined
643
+ --------------------------------------
644
+  (0.1ms) SAVEPOINT active_record_1
645
+ SQL (0.4ms) INSERT INTO "people" ("birth_date", "created_at", "updated_at") VALUES (?, ?, ?) [["birth_date", "1971-02-18"], ["created_at", "2015-09-11 14:48:54.849819"], ["updated_at", "2015-09-11 14:48:54.849819"]]
646
+  (0.0ms) RELEASE SAVEPOINT active_record_1
647
+  (1.3ms) rollback transaction
648
+  (0.4ms) begin transaction
649
+ ----------------------------------------------------
650
+ DateFormattedTest: test_date_formatted_setter_german
651
+ ----------------------------------------------------
652
+  (0.0ms) SAVEPOINT active_record_1
653
+ SQL (0.8ms) INSERT INTO "people" ("birth_date", "created_at", "updated_at") VALUES (?, ?, ?) [["birth_date", "1971-02-18"], ["created_at", "2015-09-11 14:48:54.853620"], ["updated_at", "2015-09-11 14:48:54.853620"]]
654
+  (0.1ms) RELEASE SAVEPOINT active_record_1
655
+ Person Load (0.1ms) SELECT "people".* FROM "people" ORDER BY "people"."id" ASC LIMIT 1
656
+  (0.1ms) SAVEPOINT active_record_1
657
+ SQL (1.0ms) UPDATE "people" SET "birth_date" = ?, "updated_at" = ? WHERE "people"."id" = ? [["birth_date", "1971-02-24"], ["updated_at", "2015-09-11 14:48:54.857005"], ["id", 1]]
658
+  (0.1ms) RELEASE SAVEPOINT active_record_1
659
+ Person Load (0.1ms) SELECT "people".* FROM "people" ORDER BY "people"."id" ASC LIMIT 1
660
+ Person Load (0.1ms) SELECT "people".* FROM "people" ORDER BY "people"."id" ASC LIMIT 1
661
+  (1.6ms) rollback transaction
662
+  (0.1ms) begin transaction
663
+ ----------------------------------------------------
664
+ DateFormattedTest: test_date_formatted_getter_german
665
+ ----------------------------------------------------
666
+  (0.0ms) SAVEPOINT active_record_1
667
+ SQL (0.4ms) INSERT INTO "people" ("birth_date", "created_at", "updated_at") VALUES (?, ?, ?) [["birth_date", "1971-02-18"], ["created_at", "2015-09-11 14:48:54.868427"], ["updated_at", "2015-09-11 14:48:54.868427"]]
668
+  (0.1ms) RELEASE SAVEPOINT active_record_1
669
+ Person Load (0.1ms) SELECT "people".* FROM "people" ORDER BY "people"."id" ASC LIMIT 1
670
+ Person Load (0.1ms) SELECT "people".* FROM "people" ORDER BY "people"."id" ASC LIMIT 1
671
+  (1.4ms) rollback transaction
672
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
673
+  (0.1ms) begin transaction
674
+ ---------------------------------------------
675
+ DateFormattedTest: test_date_formatted_getter
676
+ ---------------------------------------------
677
+  (0.1ms) SAVEPOINT active_record_1
678
+ SQL (0.4ms) INSERT INTO "people" ("birth_date", "created_at", "updated_at") VALUES (?, ?, ?) [["birth_date", "1971-02-18"], ["created_at", "2015-09-11 14:49:14.064156"], ["updated_at", "2015-09-11 14:49:14.064156"]]
679
+  (0.0ms) RELEASE SAVEPOINT active_record_1
680
+ Person Load (0.2ms) SELECT "people".* FROM "people" ORDER BY "people"."id" ASC LIMIT 1
681
+ Person Load (0.1ms) SELECT "people".* FROM "people" ORDER BY "people"."id" ASC LIMIT 1
682
+  (1.9ms) rollback transaction
683
+  (0.1ms) begin transaction
684
+ --------------------------------------
685
+ DateFormattedTest: test_module_defined
686
+ --------------------------------------
687
+  (0.0ms) SAVEPOINT active_record_1
688
+ SQL (0.3ms) INSERT INTO "people" ("birth_date", "created_at", "updated_at") VALUES (?, ?, ?) [["birth_date", "1971-02-18"], ["created_at", "2015-09-11 14:49:14.073721"], ["updated_at", "2015-09-11 14:49:14.073721"]]
689
+  (0.0ms) RELEASE SAVEPOINT active_record_1
690
+  (1.2ms) rollback transaction
691
+  (0.1ms) begin transaction
692
+ ----------------------------------------------------
693
+ DateFormattedTest: test_date_formatted_setter_german
694
+ ----------------------------------------------------
695
+  (0.1ms) SAVEPOINT active_record_1
696
+ SQL (0.3ms) INSERT INTO "people" ("birth_date", "created_at", "updated_at") VALUES (?, ?, ?) [["birth_date", "1971-02-18"], ["created_at", "2015-09-11 14:49:14.077494"], ["updated_at", "2015-09-11 14:49:14.077494"]]
697
+  (0.0ms) RELEASE SAVEPOINT active_record_1
698
+ Person Load (0.1ms) SELECT "people".* FROM "people" ORDER BY "people"."id" ASC LIMIT 1
699
+  (0.0ms) SAVEPOINT active_record_1
700
+ SQL (0.5ms) UPDATE "people" SET "birth_date" = ?, "updated_at" = ? WHERE "people"."id" = ? [["birth_date", "1971-02-24"], ["updated_at", "2015-09-11 14:49:14.079869"], ["id", 1]]
701
+  (0.1ms) RELEASE SAVEPOINT active_record_1
702
+ Person Load (0.1ms) SELECT "people".* FROM "people" ORDER BY "people"."id" ASC LIMIT 1
703
+ Person Load (0.1ms) SELECT "people".* FROM "people" ORDER BY "people"."id" ASC LIMIT 1
704
+  (1.7ms) rollback transaction
705
+  (0.1ms) begin transaction
706
+ ----------------------------------------------------
707
+ DateFormattedTest: test_date_formatted_getter_german
708
+ ----------------------------------------------------
709
+  (0.1ms) SAVEPOINT active_record_1
710
+ SQL (0.4ms) INSERT INTO "people" ("birth_date", "created_at", "updated_at") VALUES (?, ?, ?) [["birth_date", "1971-02-18"], ["created_at", "2015-09-11 14:49:14.089117"], ["updated_at", "2015-09-11 14:49:14.089117"]]
711
+  (0.1ms) RELEASE SAVEPOINT active_record_1
712
+ Person Load (0.1ms) SELECT "people".* FROM "people" ORDER BY "people"."id" ASC LIMIT 1
713
+ Person Load (0.1ms) SELECT "people".* FROM "people" ORDER BY "people"."id" ASC LIMIT 1
714
+  (1.4ms) rollback transaction
715
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
716
+  (0.1ms) begin transaction
717
+ --------------------------------------
718
+ DateFormattedTest: test_module_defined
719
+ --------------------------------------
720
+  (0.1ms) SAVEPOINT active_record_1
721
+ SQL (1.1ms) INSERT INTO "people" ("birth_date", "created_at", "updated_at") VALUES (?, ?, ?) [["birth_date", "1971-02-18"], ["created_at", "2015-09-11 14:49:30.953707"], ["updated_at", "2015-09-11 14:49:30.953707"]]
722
+  (0.1ms) RELEASE SAVEPOINT active_record_1
723
+  (1.3ms) rollback transaction
724
+  (0.1ms) begin transaction
725
+ ----------------------------------------------------
726
+ DateFormattedTest: test_date_formatted_getter_german
727
+ ----------------------------------------------------
728
+  (0.0ms) SAVEPOINT active_record_1
729
+ SQL (0.3ms) INSERT INTO "people" ("birth_date", "created_at", "updated_at") VALUES (?, ?, ?) [["birth_date", "1971-02-18"], ["created_at", "2015-09-11 14:49:30.960127"], ["updated_at", "2015-09-11 14:49:30.960127"]]
730
+  (0.0ms) RELEASE SAVEPOINT active_record_1
731
+ Person Load (0.1ms) SELECT "people".* FROM "people" ORDER BY "people"."id" ASC LIMIT 1
732
+ Person Load (0.1ms) SELECT "people".* FROM "people" ORDER BY "people"."id" ASC LIMIT 1
733
+  (1.3ms) rollback transaction
734
+  (0.1ms) begin transaction
735
+ ----------------------------------------------------
736
+ DateFormattedTest: test_date_formatted_setter_german
737
+ ----------------------------------------------------
738
+  (0.0ms) SAVEPOINT active_record_1
739
+ SQL (0.7ms) INSERT INTO "people" ("birth_date", "created_at", "updated_at") VALUES (?, ?, ?) [["birth_date", "1971-02-18"], ["created_at", "2015-09-11 14:49:30.965924"], ["updated_at", "2015-09-11 14:49:30.965924"]]
740
+  (0.0ms) RELEASE SAVEPOINT active_record_1
741
+ Person Load (0.1ms) SELECT "people".* FROM "people" ORDER BY "people"."id" ASC LIMIT 1
742
+  (0.0ms) SAVEPOINT active_record_1
743
+ SQL (0.5ms) UPDATE "people" SET "birth_date" = ?, "updated_at" = ? WHERE "people"."id" = ? [["birth_date", "1971-02-24"], ["updated_at", "2015-09-11 14:49:30.968083"], ["id", 1]]
744
+  (0.0ms) RELEASE SAVEPOINT active_record_1
745
+ Person Load (0.4ms) SELECT "people".* FROM "people" ORDER BY "people"."id" ASC LIMIT 1
746
+ Person Load (0.1ms) SELECT "people".* FROM "people" ORDER BY "people"."id" ASC LIMIT 1
747
+  (1.6ms) rollback transaction
748
+  (0.1ms) begin transaction
749
+ ---------------------------------------------
750
+ DateFormattedTest: test_date_formatted_getter
751
+ ---------------------------------------------
752
+  (0.1ms) SAVEPOINT active_record_1
753
+ SQL (0.5ms) INSERT INTO "people" ("birth_date", "created_at", "updated_at") VALUES (?, ?, ?) [["birth_date", "1971-02-18"], ["created_at", "2015-09-11 14:49:30.977008"], ["updated_at", "2015-09-11 14:49:30.977008"]]
754
+  (0.1ms) RELEASE SAVEPOINT active_record_1
755
+ Person Load (0.1ms) SELECT "people".* FROM "people" ORDER BY "people"."id" ASC LIMIT 1
756
+ Person Load (0.1ms) SELECT "people".* FROM "people" ORDER BY "people"."id" ASC LIMIT 1
757
+  (1.2ms) rollback transaction
758
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
759
+  (0.1ms) begin transaction
760
+ --------------------------------------
761
+ DateFormattedTest: test_module_defined
762
+ --------------------------------------
763
+  (0.1ms) SAVEPOINT active_record_1
764
+ SQL (0.4ms) INSERT INTO "people" ("birth_date", "created_at", "updated_at") VALUES (?, ?, ?) [["birth_date", "1971-02-18"], ["created_at", "2015-09-11 14:49:47.142800"], ["updated_at", "2015-09-11 14:49:47.142800"]]
765
+  (0.1ms) RELEASE SAVEPOINT active_record_1
766
+  (1.3ms) rollback transaction
767
+  (0.1ms) begin transaction
768
+ ----------------------------------------------------
769
+ DateFormattedTest: test_date_formatted_getter_german
770
+ ----------------------------------------------------
771
+  (0.2ms) SAVEPOINT active_record_1
772
+ SQL (0.3ms) INSERT INTO "people" ("birth_date", "created_at", "updated_at") VALUES (?, ?, ?) [["birth_date", "1971-02-18"], ["created_at", "2015-09-11 14:49:47.148488"], ["updated_at", "2015-09-11 14:49:47.148488"]]
773
+  (0.0ms) RELEASE SAVEPOINT active_record_1
774
+ Person Load (0.1ms) SELECT "people".* FROM "people" ORDER BY "people"."id" ASC LIMIT 1
775
+ Person Load (0.1ms) SELECT "people".* FROM "people" ORDER BY "people"."id" ASC LIMIT 1
776
+  (1.3ms) rollback transaction
777
+  (0.1ms) begin transaction
778
+ ----------------------------------------------------
779
+ DateFormattedTest: test_date_formatted_setter_german
780
+ ----------------------------------------------------
781
+  (0.0ms) SAVEPOINT active_record_1
782
+ SQL (0.4ms) INSERT INTO "people" ("birth_date", "created_at", "updated_at") VALUES (?, ?, ?) [["birth_date", "1971-02-18"], ["created_at", "2015-09-11 14:49:47.153966"], ["updated_at", "2015-09-11 14:49:47.153966"]]
783
+  (0.1ms) RELEASE SAVEPOINT active_record_1
784
+ Person Load (0.1ms) SELECT "people".* FROM "people" ORDER BY "people"."id" ASC LIMIT 1
785
+  (0.0ms) SAVEPOINT active_record_1
786
+ SQL (0.4ms) UPDATE "people" SET "birth_date" = ?, "updated_at" = ? WHERE "people"."id" = ? [["birth_date", "1971-02-24"], ["updated_at", "2015-09-11 14:49:47.156296"], ["id", 1]]
787
+  (0.1ms) RELEASE SAVEPOINT active_record_1
788
+ Person Load (0.1ms) SELECT "people".* FROM "people" ORDER BY "people"."id" ASC LIMIT 1
789
+ Person Load (0.1ms) SELECT "people".* FROM "people" ORDER BY "people"."id" ASC LIMIT 1
790
+  (1.9ms) rollback transaction
791
+  (0.1ms) begin transaction
792
+ ---------------------------------------------
793
+ DateFormattedTest: test_date_formatted_getter
794
+ ---------------------------------------------
795
+  (0.1ms) SAVEPOINT active_record_1
796
+ SQL (0.6ms) INSERT INTO "people" ("birth_date", "created_at", "updated_at") VALUES (?, ?, ?) [["birth_date", "1971-02-18"], ["created_at", "2015-09-11 14:49:47.165721"], ["updated_at", "2015-09-11 14:49:47.165721"]]
797
+  (0.1ms) RELEASE SAVEPOINT active_record_1
798
+ Person Load (0.1ms) SELECT "people".* FROM "people" ORDER BY "people"."id" ASC LIMIT 1
799
+ Person Load (0.1ms) SELECT "people".* FROM "people" ORDER BY "people"."id" ASC LIMIT 1
800
+  (1.2ms) rollback transaction
801
+ ActiveRecord::SchemaMigration Load (1.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
802
+  (0.1ms) begin transaction
803
+ ----------------------------------------------------------------
804
+ ActiveRecordDateFormattedTest: test_date_formatted_getter_german
805
+ ----------------------------------------------------------------
806
+  (0.1ms) SAVEPOINT active_record_1
807
+ SQL (1.9ms) INSERT INTO "people" ("birth_date", "created_at", "updated_at") VALUES (?, ?, ?) [["birth_date", "1971-02-18"], ["created_at", "2015-09-11 15:23:00.079508"], ["updated_at", "2015-09-11 15:23:00.079508"]]
808
+  (0.1ms) RELEASE SAVEPOINT active_record_1
809
+ Person Load (0.1ms) SELECT "people".* FROM "people" ORDER BY "people"."id" ASC LIMIT 1
810
+ Person Load (0.1ms) SELECT "people".* FROM "people" ORDER BY "people"."id" ASC LIMIT 1
811
+  (1.3ms) rollback transaction
812
+  (0.1ms) begin transaction
813
+ ---------------------------------------------------------
814
+ ActiveRecordDateFormattedTest: test_date_formatted_getter
815
+ ---------------------------------------------------------
816
+  (0.0ms) SAVEPOINT active_record_1
817
+ SQL (0.3ms) INSERT INTO "people" ("birth_date", "created_at", "updated_at") VALUES (?, ?, ?) [["birth_date", "1971-02-18"], ["created_at", "2015-09-11 15:23:00.089724"], ["updated_at", "2015-09-11 15:23:00.089724"]]
818
+  (0.1ms) RELEASE SAVEPOINT active_record_1
819
+ Person Load (0.1ms) SELECT "people".* FROM "people" ORDER BY "people"."id" ASC LIMIT 1
820
+ Person Load (0.1ms) SELECT "people".* FROM "people" ORDER BY "people"."id" ASC LIMIT 1
821
+  (1.3ms) rollback transaction
822
+  (0.1ms) begin transaction
823
+ --------------------------------------------------
824
+ ActiveRecordDateFormattedTest: test_module_defined
825
+ --------------------------------------------------
826
+  (0.0ms) SAVEPOINT active_record_1
827
+ SQL (0.6ms) INSERT INTO "people" ("birth_date", "created_at", "updated_at") VALUES (?, ?, ?) [["birth_date", "1971-02-18"], ["created_at", "2015-09-11 15:23:00.094466"], ["updated_at", "2015-09-11 15:23:00.094466"]]
828
+  (0.2ms) RELEASE SAVEPOINT active_record_1
829
+  (1.4ms) rollback transaction
830
+  (0.1ms) begin transaction
831
+ ----------------------------------------------------------------
832
+ ActiveRecordDateFormattedTest: test_date_formatted_setter_german
833
+ ----------------------------------------------------------------
834
+  (0.0ms) SAVEPOINT active_record_1
835
+ SQL (0.4ms) INSERT INTO "people" ("birth_date", "created_at", "updated_at") VALUES (?, ?, ?) [["birth_date", "1971-02-18"], ["created_at", "2015-09-11 15:23:00.100173"], ["updated_at", "2015-09-11 15:23:00.100173"]]
836
+  (0.1ms) RELEASE SAVEPOINT active_record_1
837
+ Person Load (0.1ms) SELECT "people".* FROM "people" ORDER BY "people"."id" ASC LIMIT 1
838
+  (0.0ms) SAVEPOINT active_record_1
839
+ SQL (0.5ms) UPDATE "people" SET "birth_date" = ?, "updated_at" = ? WHERE "people"."id" = ? [["birth_date", "1971-02-24"], ["updated_at", "2015-09-11 15:23:00.102512"], ["id", 1]]
840
+  (0.1ms) RELEASE SAVEPOINT active_record_1
841
+ Person Load (0.1ms) SELECT "people".* FROM "people" ORDER BY "people"."id" ASC LIMIT 1
842
+ Person Load (0.0ms) SELECT "people".* FROM "people" ORDER BY "people"."id" ASC LIMIT 1
843
+  (1.9ms) rollback transaction
844
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
845
+  (0.1ms) begin transaction
846
+ ---------------------------------------------------------
847
+ ActiveRecordDateFormattedTest: test_date_formatted_getter
848
+ ---------------------------------------------------------
849
+  (0.1ms) SAVEPOINT active_record_1
850
+ SQL (0.4ms) INSERT INTO "people" ("birth_date", "created_at", "updated_at") VALUES (?, ?, ?) [["birth_date", "1971-02-18"], ["created_at", "2015-09-11 15:23:24.682190"], ["updated_at", "2015-09-11 15:23:24.682190"]]
851
+  (0.0ms) RELEASE SAVEPOINT active_record_1
852
+ Person Load (0.1ms) SELECT "people".* FROM "people" ORDER BY "people"."id" ASC LIMIT 1
853
+ Person Load (0.1ms) SELECT "people".* FROM "people" ORDER BY "people"."id" ASC LIMIT 1
854
+  (1.3ms) rollback transaction
855
+  (0.1ms) begin transaction
856
+ --------------------------------------------------
857
+ ActiveRecordDateFormattedTest: test_module_defined
858
+ --------------------------------------------------
859
+  (0.0ms) SAVEPOINT active_record_1
860
+ SQL (0.4ms) INSERT INTO "people" ("birth_date", "created_at", "updated_at") VALUES (?, ?, ?) [["birth_date", "1971-02-18"], ["created_at", "2015-09-11 15:23:24.690109"], ["updated_at", "2015-09-11 15:23:24.690109"]]
861
+  (0.0ms) RELEASE SAVEPOINT active_record_1
862
+  (1.5ms) rollback transaction
863
+  (0.1ms) begin transaction
864
+ ----------------------------------------------------------------
865
+ ActiveRecordDateFormattedTest: test_date_formatted_getter_german
866
+ ----------------------------------------------------------------
867
+  (0.0ms) SAVEPOINT active_record_1
868
+ SQL (0.3ms) INSERT INTO "people" ("birth_date", "created_at", "updated_at") VALUES (?, ?, ?) [["birth_date", "1971-02-18"], ["created_at", "2015-09-11 15:23:24.693843"], ["updated_at", "2015-09-11 15:23:24.693843"]]
869
+  (0.0ms) RELEASE SAVEPOINT active_record_1
870
+ Person Load (0.1ms) SELECT "people".* FROM "people" ORDER BY "people"."id" ASC LIMIT 1
871
+ Person Load (0.1ms) SELECT "people".* FROM "people" ORDER BY "people"."id" ASC LIMIT 1
872
+  (1.5ms) rollback transaction
873
+  (0.1ms) begin transaction
874
+ ----------------------------------------------------------------
875
+ ActiveRecordDateFormattedTest: test_date_formatted_setter_german
876
+ ----------------------------------------------------------------
877
+  (0.0ms) SAVEPOINT active_record_1
878
+ SQL (0.3ms) INSERT INTO "people" ("birth_date", "created_at", "updated_at") VALUES (?, ?, ?) [["birth_date", "1971-02-18"], ["created_at", "2015-09-11 15:23:24.698703"], ["updated_at", "2015-09-11 15:23:24.698703"]]
879
+  (0.0ms) RELEASE SAVEPOINT active_record_1
880
+ Person Load (0.1ms) SELECT "people".* FROM "people" ORDER BY "people"."id" ASC LIMIT 1
881
+  (0.0ms) SAVEPOINT active_record_1
882
+ SQL (0.7ms) UPDATE "people" SET "birth_date" = ?, "updated_at" = ? WHERE "people"."id" = ? [["birth_date", "1971-02-24"], ["updated_at", "2015-09-11 15:23:24.700716"], ["id", 1]]
883
+  (0.2ms) RELEASE SAVEPOINT active_record_1
884
+ Person Load (0.1ms) SELECT "people".* FROM "people" ORDER BY "people"."id" ASC LIMIT 1
885
+ Person Load (0.1ms) SELECT "people".* FROM "people" ORDER BY "people"."id" ASC LIMIT 1
886
+  (1.6ms) rollback transaction
887
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
888
+  (0.1ms) begin transaction
889
+ ---------------------------------------------------------
890
+ ActiveRecordDateFormattedTest: test_date_formatted_getter
891
+ ---------------------------------------------------------
892
+  (0.0ms) SAVEPOINT active_record_1
893
+ SQL (0.5ms) INSERT INTO "people" ("birth_date", "created_at", "updated_at") VALUES (?, ?, ?) [["birth_date", "1971-02-18"], ["created_at", "2015-09-11 15:29:20.828114"], ["updated_at", "2015-09-11 15:29:20.828114"]]
894
+  (0.1ms) RELEASE SAVEPOINT active_record_1
895
+ Person Load (0.1ms) SELECT "people".* FROM "people" ORDER BY "people"."id" ASC LIMIT 1
896
+ Person Load (0.1ms) SELECT "people".* FROM "people" ORDER BY "people"."id" ASC LIMIT 1
897
+  (1.3ms) rollback transaction
898
+  (0.1ms) begin transaction
899
+ --------------------------------------------------
900
+ ActiveRecordDateFormattedTest: test_module_defined
901
+ --------------------------------------------------
902
+  (0.0ms) SAVEPOINT active_record_1
903
+ SQL (0.4ms) INSERT INTO "people" ("birth_date", "created_at", "updated_at") VALUES (?, ?, ?) [["birth_date", "1971-02-18"], ["created_at", "2015-09-11 15:29:20.836436"], ["updated_at", "2015-09-11 15:29:20.836436"]]
904
+  (0.0ms) RELEASE SAVEPOINT active_record_1
905
+  (1.4ms) rollback transaction
906
+  (0.1ms) begin transaction
907
+ ----------------------------------------------------------------
908
+ ActiveRecordDateFormattedTest: test_date_formatted_setter_german
909
+ ----------------------------------------------------------------
910
+  (0.0ms) SAVEPOINT active_record_1
911
+ SQL (0.7ms) INSERT INTO "people" ("birth_date", "created_at", "updated_at") VALUES (?, ?, ?) [["birth_date", "1971-02-18"], ["created_at", "2015-09-11 15:29:20.840114"], ["updated_at", "2015-09-11 15:29:20.840114"]]
912
+  (0.1ms) RELEASE SAVEPOINT active_record_1
913
+ Person Load (0.1ms) SELECT "people".* FROM "people" ORDER BY "people"."id" ASC LIMIT 1
914
+  (0.0ms) SAVEPOINT active_record_1
915
+ SQL (0.3ms) UPDATE "people" SET "birth_date" = ?, "updated_at" = ? WHERE "people"."id" = ? [["birth_date", "1971-02-24"], ["updated_at", "2015-09-11 15:29:20.842607"], ["id", 1]]
916
+  (0.0ms) RELEASE SAVEPOINT active_record_1
917
+ Person Load (0.1ms) SELECT "people".* FROM "people" ORDER BY "people"."id" ASC LIMIT 1
918
+ Person Load (0.1ms) SELECT "people".* FROM "people" ORDER BY "people"."id" ASC LIMIT 1
919
+  (1.9ms) rollback transaction
920
+  (0.1ms) begin transaction
921
+ ----------------------------------------------------------------
922
+ ActiveRecordDateFormattedTest: test_date_formatted_getter_german
923
+ ----------------------------------------------------------------
924
+  (0.0ms) SAVEPOINT active_record_1
925
+ SQL (0.4ms) INSERT INTO "people" ("birth_date", "created_at", "updated_at") VALUES (?, ?, ?) [["birth_date", "1971-02-18"], ["created_at", "2015-09-11 15:29:20.850886"], ["updated_at", "2015-09-11 15:29:20.850886"]]
926
+  (0.0ms) RELEASE SAVEPOINT active_record_1
927
+ Person Load (0.1ms) SELECT "people".* FROM "people" ORDER BY "people"."id" ASC LIMIT 1
928
+ Person Load (0.1ms) SELECT "people".* FROM "people" ORDER BY "people"."id" ASC LIMIT 1
929
+  (1.4ms) rollback transaction