human_attribute_values 1.1.1 → 1.2.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: e82c7256f6c4b632e16bae01cd454324a95573cdd7a95fc14bb3ad415e592094
4
- data.tar.gz: 667e49801a7d7c3c096e3b6b51ccf47897d503c319c9297926c7e96fb39ee8df
3
+ metadata.gz: '09627aca820c5eab17ea0f05319695a7077029621882740501a0752f851d6f02'
4
+ data.tar.gz: b0ee5e6f6c64e16888dee62ddfda82d7dc1ffae4c75bc057fb2f0f06225eba0b
5
5
  SHA512:
6
- metadata.gz: 8285916ea63486f87af3a94dba83eac908a98c29fcbfe3400810ba5dc1960ef4865f7ecb38299106865e13b422c905f2e908df21d39e1b4a51db4e19442d92a0
7
- data.tar.gz: 83bccfa4da4094ce37bcad422390d53d9cab425f79c2f03a0aeaa252b7f139af9162f0c7cb27069acacd8a2a6af064ded063a22f91cc41015a7612b778ace56f
6
+ metadata.gz: 9a5fbfc09811e97e7f728c059366a7618b3808a4b503402b8f5f597a33b78fa3927b93bf3265c77c91145eb73468916a8e47363a44d5c746c796fb474e7f6670
7
+ data.tar.gz: d513dfa200bf5ea404a09ac5c445471eea81d05ac2a046bd29414f70a2b6b7e5cda2d1f49b974f99341f253ae6ce8645db85b03dcc5da0e65467e16ca70f45d8
@@ -5,14 +5,17 @@ Please keep to the changelog format described on [keepachangelog.com](http://kee
5
5
 
6
6
  This project adheres to [Semantic Versioning](http://semver.org/).
7
7
 
8
- ## [Unreleased]
8
+ ## [1.2.0] - 2018-10-21
9
+ ### Fixed
10
+ - Replace dots for all types of values (not only Numeric)
11
+ ### Removed
12
+ - Drop support for EOL rubies (2.2.10 and below)
9
13
 
14
+ ## [1.1.1] - 2018-09-01
10
15
  ### Added
11
16
  - Added a changelog.
12
17
  - Also include HumanAttributeValues into ActiveModel::Model.
13
-
14
18
  ### Changed
15
19
  - Instead of aborting and returning '' for associations of ActiveRecord::Base the lookup now proceeds with `assoc_attribute.to_s` as key (not meant to be done anyways).
16
-
17
20
  ### Removed
18
21
  - Drop support for rails 4.1.8, including HumanAttributeValues into ActiveModel::Model does not add class method.
data/README.md CHANGED
@@ -11,15 +11,21 @@ gem install human_attribute_values
11
11
 
12
12
  ## Supported versions
13
13
  * Rails: >= 4.2.10
14
- * Ruby: MRI >= 2.0
14
+ * Ruby: MRI >= 2.3.8
15
15
 
16
16
  ## Usage
17
17
  The gem defines ``human_attribute_value`` as instance and class method on ``ActiveRecord::Base`` and ``ActiveModel::Model``.
18
18
  To translate a value it uses the I18n API. The translations are looked up from the current locale file under the key ``'activerecord.values.model_name.attribute_name.value'`` respectively ``'activemodel.values.model_name.attribute_name.value'`` by default.
19
19
 
20
- Locale:
20
+ ### Locale:
21
21
  ```yml
22
22
  en:
23
+ activemodel:
24
+ values:
25
+ file_model:
26
+ content_type:
27
+ application/pdf: PDF
28
+ application/vnd_openxmlformats-officedocument_spreadsheetml_sheet: Excel/Calc
23
29
  activerecord:
24
30
  values:
25
31
  schroedinger:
@@ -28,8 +34,10 @@ en:
28
34
  alive: You opened the box and kitty purrs.
29
35
  ```
30
36
 
31
- Translations:
37
+ ### Translations:
32
38
  ```ruby
39
+ # For ActiveRecord
40
+
33
41
  class Schroedinger < ActiveRecord::Base
34
42
  enum cat_status: {dead_and_alive: 0, alive: 1, dead: 2}
35
43
  end
@@ -46,6 +54,22 @@ Schroedinger.human_attribute_value(:cat_status, :alive)
46
54
  Schroedinger.human_attribute_value(:cat_status, :dead)
47
55
  => "dead"
48
56
 
57
+ # For ActiveModel (the same except the lookup namespace)
58
+ class FileModel
59
+ include ActiveModel::Model
60
+
61
+ attr_accessor :content_type
62
+ end
63
+
64
+ file = FileModel.new(content_type: 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet')
65
+ file.human_attribute_value(:content_type)
66
+ => "Excel/Calc"
67
+
68
+ FileModel.human_attribute_value(:content_type, 'application/pdf')
69
+ => "PDF"
70
+
71
+ FileModel.human_attribute_value(:content_type, 'text/plain')
72
+ => "text/plain"
49
73
  ```
50
74
 
51
75
  ### Boolean values
@@ -72,5 +96,9 @@ en:
72
96
  '42': 'the answer to life, the universe and everything'
73
97
  ```
74
98
 
99
+ ### Strings
100
+ Starting with version 1.2.0, dots in strings are also replaced by an underscore for the lookup (before this was only done for numbers).
101
+
102
+
75
103
  ### Child classes
76
104
  For models with single table inheritance (STI), the lookup will start with the translations for the class and go up through the class hierarchy and use the translation for the closest parent if there is any.
@@ -18,7 +18,7 @@ module HumanAttributeValues
18
18
  value_scope = "#{i18n_scope}.values"
19
19
 
20
20
  # dots would mean a new nesting level in YAML files
21
- key = value.is_a?(Numeric) ? value.to_s.tr('.', '_') : value
21
+ key = value.to_s.tr('.', '_')
22
22
 
23
23
  if namespace
24
24
  defaults = lookup_ancestors.map do |klass|
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module HumanAttributeValues
4
- VERSION = "1.1.1"
4
+ VERSION = "1.2.0"
5
5
  end
@@ -19,6 +19,15 @@ class ActiveModelTest < ActiveSupport::TestCase
19
19
  assert_equal('odd prime', instance.human_attribute_value(:integer_attr, count: 2), 'should successfully translate with count option 2')
20
20
  end
21
21
 
22
+ test 'mime type definition with a dot' do
23
+ instance = ActiveModelModel.new
24
+ instance.string_attr = 'application/x-my.mime1'
25
+ assert_equal('Custom Mime Type 1', instance.human_attribute_value(:string_attr), 'should successfully translate the mime type with dot')
26
+
27
+ instance.string_attr = 'application/x-my.untranslated_mime'
28
+ assert_equal('application/x-my.untranslated_mime', instance.human_attribute_value(:string_attr), 'should return the unmodified value for an untranslated mime type with dot')
29
+ end
30
+
22
31
  test 'hierarchy resolution for STI models' do
23
32
  grandchild = ActiveModelGrandChild.new
24
33
  grandchild.inherited_attr = :one
@@ -17,6 +17,14 @@ class ActiveRecordTest < ActiveSupport::TestCase
17
17
  assert_equal('coined by Prof. Dr. Abdul Nachtigaller', answer.human_attribute_value(:ultimate_truth, count: 2), 'should successfully translate with count option 2')
18
18
  end
19
19
 
20
+ test 'mime type definition with a dot' do
21
+ answer = TheAnswer.new(ultimate_truth: 'application/x-my.mime2')
22
+ assert_equal('Custom Mime Type 2', answer.human_attribute_value(:ultimate_truth), 'should successfully translate the mime type with dot')
23
+
24
+ answer.ultimate_truth = 'application/x-my.untranslated_mime'
25
+ assert_equal('application/x-my.untranslated_mime', answer.human_attribute_value(:ultimate_truth), 'should return the unmodified value for an untranslated mime type with dot')
26
+ end
27
+
20
28
  test 'hierarchy resolution for STI models' do
21
29
  grandchild = GrandChild.new(field: '1')
22
30
  assert_equal('grandchild value 1', grandchild.human_attribute_value(:field), 'should use value for the actual class if present')
@@ -0,0 +1,7 @@
1
+ # frozen_string_literal: true
2
+
3
+ class FileModel
4
+ include ActiveModel::Model
5
+
6
+ attr_accessor :content_type
7
+ end
@@ -15,6 +15,7 @@ en:
15
15
  'goose':
16
16
  one: one goose
17
17
  other: some geese
18
+ 'application/x-my_mime1': Custom Mime Type 1
18
19
  active_model_parent:
19
20
  inherited_attr:
20
21
  one: 'active model parent value 1'
@@ -30,6 +31,10 @@ en:
30
31
  active_model_grand_child:
31
32
  inherited_attr:
32
33
  one: 'active model grandchild value 1'
34
+ file_model:
35
+ content_type:
36
+ application/pdf: PDF
37
+ application/vnd_openxmlformats-officedocument_spreadsheetml_sheet: Excel/Calc
33
38
  activerecord:
34
39
  models:
35
40
  the_answer: The ultimate Answer
@@ -43,6 +48,7 @@ en:
43
48
  one: was calculated by Deep Thought
44
49
  other: there is only one ultimate answer
45
50
  'wissen ist Nacht': coined by Prof. Dr. Abdul Nachtigaller
51
+ 'application/x-my_mime2': Custom Mime Type 2
46
52
  parent:
47
53
  field:
48
54
  '1': 'parent value 1'
Binary file
@@ -4917,3 +4917,3086 @@ ActiveRecordTest: test_resolution_for_numeric_values
4917
4917
  ActiveRecordTest: test_resolution_of_boolean_values
4918
4918
  ---------------------------------------------------
4919
4919
   (0.0ms) rollback transaction
4920
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
4921
+  (427.2ms) CREATE TABLE "boolean_models" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "boolean_field" boolean, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
4922
+  (273.1ms) CREATE TABLE "enum_models" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "status" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
4923
+  (23.2ms) CREATE TABLE "lexicons" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
4924
+  (136.9ms) CREATE TABLE "numeric_models" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "integer_field" integer, "decimal_field" decimal, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
4925
+  (30.5ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "type" varchar, "field" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
4926
+  (334.2ms) CREATE TABLE "the_answers" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "ultimate_truth" varchar, "lexicon_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
4927
+  (0.1ms) select sqlite_version(*)
4928
+  (337.6ms) CREATE INDEX "index_the_answers_on_lexicon_id" ON "the_answers" ("lexicon_id")
4929
+  (203.2ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
4930
+  (26.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
4931
+  (0.0ms) SELECT version FROM "schema_migrations"
4932
+  (138.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20150131170613')
4933
+  (16.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150127220502')
4934
+  (16.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20150131161322')
4935
+  (22.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20150131164609')
4936
+  (26.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20150131162551')
4937
+  (23.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20150131153819')
4938
+ ActiveRecord::SchemaMigration Load (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
4939
+  (0.0ms) begin transaction
4940
+ ---------------------------------------------
4941
+ ActiveModelTest: test_value_with_count_config
4942
+ ---------------------------------------------
4943
+  (0.0ms) rollback transaction
4944
+  (0.0ms) begin transaction
4945
+ ---------------------------------------------------
4946
+ ActiveModelTest: test_resolution_for_numeric_values
4947
+ ---------------------------------------------------
4948
+  (0.0ms) rollback transaction
4949
+  (0.0ms) begin transaction
4950
+ --------------------------------------------------
4951
+ ActiveModelTest: test_resolution_of_boolean_values
4952
+ --------------------------------------------------
4953
+  (0.0ms) rollback transaction
4954
+  (0.0ms) begin transaction
4955
+ ---------------------------------------------------------
4956
+ ActiveModelTest: test_hierarchy_resolution_for_STI_models
4957
+ ---------------------------------------------------------
4958
+  (0.0ms) rollback transaction
4959
+  (0.0ms) begin transaction
4960
+ ------------------------------------------------
4961
+ ActiveModelTest: test_value_without_count_config
4962
+ ------------------------------------------------
4963
+  (0.0ms) rollback transaction
4964
+  (0.0ms) begin transaction
4965
+ -----------------------------------------------------
4966
+ ActiveRecordTest: test_attribute_without_count_config
4967
+ -----------------------------------------------------
4968
+  (0.2ms) rollback transaction
4969
+  (0.0ms) begin transaction
4970
+ --------------------------------------------------
4971
+ ActiveRecordTest: test_resolution_for_associations
4972
+ --------------------------------------------------
4973
+  (0.0ms) rollback transaction
4974
+  (0.0ms) begin transaction
4975
+ --------------------------------------------------
4976
+ ActiveRecordTest: test_attribute_with_count_config
4977
+ --------------------------------------------------
4978
+  (0.0ms) rollback transaction
4979
+  (0.0ms) begin transaction
4980
+ ----------------------------------------------------
4981
+ ActiveRecordTest: test_resolution_for_numeric_values
4982
+ ----------------------------------------------------
4983
+  (0.0ms) rollback transaction
4984
+  (0.0ms) begin transaction
4985
+ ----------------------------------------------------------
4986
+ ActiveRecordTest: test_hierarchy_resolution_for_STI_models
4987
+ ----------------------------------------------------------
4988
+  (0.0ms) rollback transaction
4989
+  (0.0ms) begin transaction
4990
+ -------------------------------------------
4991
+ ActiveRecordTest: test_resolution_for_enums
4992
+ -------------------------------------------
4993
+  (0.0ms) rollback transaction
4994
+  (0.0ms) begin transaction
4995
+ ---------------------------------------------------
4996
+ ActiveRecordTest: test_resolution_of_boolean_values
4997
+ ---------------------------------------------------
4998
+  (0.0ms) rollback transaction
4999
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
5000
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
5001
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
5002
+  (0.1ms) begin transaction
5003
+ ---------------------------------------------------
5004
+ ActiveModelTest: test_resolution_for_numeric_values
5005
+ ---------------------------------------------------
5006
+  (0.0ms) rollback transaction
5007
+  (0.0ms) begin transaction
5008
+ ---------------------------------------------------------
5009
+ ActiveModelTest: test_hierarchy_resolution_for_STI_models
5010
+ ---------------------------------------------------------
5011
+  (0.0ms) rollback transaction
5012
+  (0.0ms) begin transaction
5013
+ ------------------------------------------------
5014
+ ActiveModelTest: test_value_without_count_config
5015
+ ------------------------------------------------
5016
+  (0.0ms) rollback transaction
5017
+  (0.0ms) begin transaction
5018
+ --------------------------------------------------
5019
+ ActiveModelTest: test_resolution_of_boolean_values
5020
+ --------------------------------------------------
5021
+  (0.0ms) rollback transaction
5022
+  (0.0ms) begin transaction
5023
+ ---------------------------------------------
5024
+ ActiveModelTest: test_value_with_count_config
5025
+ ---------------------------------------------
5026
+  (0.0ms) rollback transaction
5027
+  (0.0ms) begin transaction
5028
+ ----------------------------------------------------
5029
+ ActiveRecordTest: test_resolution_for_numeric_values
5030
+ ----------------------------------------------------
5031
+  (0.0ms) rollback transaction
5032
+  (0.0ms) begin transaction
5033
+ --------------------------------------------------
5034
+ ActiveRecordTest: test_attribute_with_count_config
5035
+ --------------------------------------------------
5036
+  (0.0ms) rollback transaction
5037
+  (0.0ms) begin transaction
5038
+ --------------------------------------------------
5039
+ ActiveRecordTest: test_resolution_for_associations
5040
+ --------------------------------------------------
5041
+  (0.0ms) rollback transaction
5042
+  (0.0ms) begin transaction
5043
+ -----------------------------------------------------
5044
+ ActiveRecordTest: test_attribute_without_count_config
5045
+ -----------------------------------------------------
5046
+  (0.0ms) rollback transaction
5047
+  (0.0ms) begin transaction
5048
+ ----------------------------------------------------------
5049
+ ActiveRecordTest: test_hierarchy_resolution_for_STI_models
5050
+ ----------------------------------------------------------
5051
+  (0.1ms) rollback transaction
5052
+  (0.0ms) begin transaction
5053
+ -------------------------------------------
5054
+ ActiveRecordTest: test_resolution_for_enums
5055
+ -------------------------------------------
5056
+  (0.0ms) rollback transaction
5057
+  (0.0ms) begin transaction
5058
+ ---------------------------------------------------
5059
+ ActiveRecordTest: test_resolution_of_boolean_values
5060
+ ---------------------------------------------------
5061
+  (0.0ms) rollback transaction
5062
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
5063
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
5064
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
5065
+  (0.0ms) begin transaction
5066
+ ---------------------------------------------------
5067
+ ActiveModelTest: test_resolution_for_numeric_values
5068
+ ---------------------------------------------------
5069
+  (0.0ms) rollback transaction
5070
+  (0.0ms) begin transaction
5071
+ --------------------------------------------------
5072
+ ActiveModelTest: test_resolution_of_boolean_values
5073
+ --------------------------------------------------
5074
+  (0.0ms) rollback transaction
5075
+  (0.0ms) begin transaction
5076
+ ---------------------------------------------
5077
+ ActiveModelTest: test_value_with_count_config
5078
+ ---------------------------------------------
5079
+  (0.0ms) rollback transaction
5080
+  (0.0ms) begin transaction
5081
+ ---------------------------------------------------------
5082
+ ActiveModelTest: test_hierarchy_resolution_for_STI_models
5083
+ ---------------------------------------------------------
5084
+  (0.0ms) rollback transaction
5085
+  (0.0ms) begin transaction
5086
+ ------------------------------------------------
5087
+ ActiveModelTest: test_value_without_count_config
5088
+ ------------------------------------------------
5089
+  (0.0ms) rollback transaction
5090
+  (0.0ms) begin transaction
5091
+ ---------------------------------------------------
5092
+ ActiveRecordTest: test_resolution_of_boolean_values
5093
+ ---------------------------------------------------
5094
+  (0.0ms) rollback transaction
5095
+  (0.0ms) begin transaction
5096
+ --------------------------------------------------
5097
+ ActiveRecordTest: test_attribute_with_count_config
5098
+ --------------------------------------------------
5099
+  (0.0ms) rollback transaction
5100
+  (0.0ms) begin transaction
5101
+ -----------------------------------------------------
5102
+ ActiveRecordTest: test_attribute_without_count_config
5103
+ -----------------------------------------------------
5104
+  (0.0ms) rollback transaction
5105
+  (0.0ms) begin transaction
5106
+ --------------------------------------------------
5107
+ ActiveRecordTest: test_resolution_for_associations
5108
+ --------------------------------------------------
5109
+  (0.0ms) rollback transaction
5110
+  (0.0ms) begin transaction
5111
+ -------------------------------------------
5112
+ ActiveRecordTest: test_resolution_for_enums
5113
+ -------------------------------------------
5114
+  (0.0ms) rollback transaction
5115
+  (0.0ms) begin transaction
5116
+ ----------------------------------------------------
5117
+ ActiveRecordTest: test_resolution_for_numeric_values
5118
+ ----------------------------------------------------
5119
+  (0.0ms) rollback transaction
5120
+  (0.0ms) begin transaction
5121
+ ----------------------------------------------------------
5122
+ ActiveRecordTest: test_hierarchy_resolution_for_STI_models
5123
+ ----------------------------------------------------------
5124
+  (0.1ms) rollback transaction
5125
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
5126
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
5127
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
5128
+  (0.1ms) begin transaction
5129
+ ----------------------------------------------------------
5130
+ ActiveRecordTest: test_hierarchy_resolution_for_STI_models
5131
+ ----------------------------------------------------------
5132
+  (0.1ms) rollback transaction
5133
+  (0.0ms) begin transaction
5134
+ ----------------------------------------------------
5135
+ ActiveRecordTest: test_resolution_for_numeric_values
5136
+ ----------------------------------------------------
5137
+  (0.0ms) rollback transaction
5138
+  (0.0ms) begin transaction
5139
+ -------------------------------------------
5140
+ ActiveRecordTest: test_resolution_for_enums
5141
+ -------------------------------------------
5142
+  (0.0ms) rollback transaction
5143
+  (0.0ms) begin transaction
5144
+ ---------------------------------------------------
5145
+ ActiveRecordTest: test_resolution_of_boolean_values
5146
+ ---------------------------------------------------
5147
+  (0.0ms) rollback transaction
5148
+  (0.0ms) begin transaction
5149
+ --------------------------------------------------
5150
+ ActiveRecordTest: test_attribute_with_count_config
5151
+ --------------------------------------------------
5152
+  (0.0ms) rollback transaction
5153
+  (0.0ms) begin transaction
5154
+ -----------------------------------------------------
5155
+ ActiveRecordTest: test_attribute_without_count_config
5156
+ -----------------------------------------------------
5157
+  (0.0ms) rollback transaction
5158
+  (0.0ms) begin transaction
5159
+ --------------------------------------------------
5160
+ ActiveRecordTest: test_resolution_for_associations
5161
+ --------------------------------------------------
5162
+  (0.1ms) rollback transaction
5163
+  (0.0ms) begin transaction
5164
+ ---------------------------------------------------
5165
+ ActiveModelTest: test_resolution_for_numeric_values
5166
+ ---------------------------------------------------
5167
+  (0.0ms) rollback transaction
5168
+  (0.0ms) begin transaction
5169
+ ---------------------------------------------
5170
+ ActiveModelTest: test_value_with_count_config
5171
+ ---------------------------------------------
5172
+  (0.0ms) rollback transaction
5173
+  (0.0ms) begin transaction
5174
+ ---------------------------------------------------------
5175
+ ActiveModelTest: test_hierarchy_resolution_for_STI_models
5176
+ ---------------------------------------------------------
5177
+  (0.0ms) rollback transaction
5178
+  (0.0ms) begin transaction
5179
+ --------------------------------------------------
5180
+ ActiveModelTest: test_resolution_of_boolean_values
5181
+ --------------------------------------------------
5182
+  (0.0ms) rollback transaction
5183
+  (0.0ms) begin transaction
5184
+ ------------------------------------------------
5185
+ ActiveModelTest: test_value_without_count_config
5186
+ ------------------------------------------------
5187
+  (0.0ms) rollback transaction
5188
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
5189
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
5190
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
5191
+  (0.1ms) begin transaction
5192
+ ------------------------------------------------------
5193
+ ActiveRecordTest: test_mime_type_definition_with_a_dot
5194
+ ------------------------------------------------------
5195
+  (0.0ms) rollback transaction
5196
+  (0.0ms) begin transaction
5197
+ ---------------------------------------------------
5198
+ ActiveRecordTest: test_resolution_of_boolean_values
5199
+ ---------------------------------------------------
5200
+  (0.1ms) rollback transaction
5201
+  (0.0ms) begin transaction
5202
+ -------------------------------------------
5203
+ ActiveRecordTest: test_resolution_for_enums
5204
+ -------------------------------------------
5205
+  (0.0ms) rollback transaction
5206
+  (0.0ms) begin transaction
5207
+ --------------------------------------------------
5208
+ ActiveRecordTest: test_attribute_with_count_config
5209
+ --------------------------------------------------
5210
+  (0.0ms) rollback transaction
5211
+  (0.0ms) begin transaction
5212
+ ----------------------------------------------------------
5213
+ ActiveRecordTest: test_hierarchy_resolution_for_STI_models
5214
+ ----------------------------------------------------------
5215
+  (0.0ms) rollback transaction
5216
+  (0.0ms) begin transaction
5217
+ --------------------------------------------------
5218
+ ActiveRecordTest: test_resolution_for_associations
5219
+ --------------------------------------------------
5220
+  (0.0ms) rollback transaction
5221
+  (0.0ms) begin transaction
5222
+ ----------------------------------------------------
5223
+ ActiveRecordTest: test_resolution_for_numeric_values
5224
+ ----------------------------------------------------
5225
+  (0.0ms) rollback transaction
5226
+  (0.0ms) begin transaction
5227
+ -----------------------------------------------------
5228
+ ActiveRecordTest: test_attribute_without_count_config
5229
+ -----------------------------------------------------
5230
+  (0.0ms) rollback transaction
5231
+  (0.0ms) begin transaction
5232
+ ---------------------------------------------------------
5233
+ ActiveModelTest: test_hierarchy_resolution_for_STI_models
5234
+ ---------------------------------------------------------
5235
+  (0.0ms) rollback transaction
5236
+  (0.0ms) begin transaction
5237
+ ---------------------------------------------------
5238
+ ActiveModelTest: test_resolution_for_numeric_values
5239
+ ---------------------------------------------------
5240
+  (0.0ms) rollback transaction
5241
+  (0.0ms) begin transaction
5242
+ -----------------------------------------------------
5243
+ ActiveModelTest: test_mime_type_definition_with_a_dot
5244
+ -----------------------------------------------------
5245
+  (0.0ms) rollback transaction
5246
+  (0.0ms) begin transaction
5247
+ --------------------------------------------------
5248
+ ActiveModelTest: test_resolution_of_boolean_values
5249
+ --------------------------------------------------
5250
+  (0.0ms) rollback transaction
5251
+  (0.0ms) begin transaction
5252
+ ---------------------------------------------
5253
+ ActiveModelTest: test_value_with_count_config
5254
+ ---------------------------------------------
5255
+  (0.0ms) rollback transaction
5256
+  (0.0ms) begin transaction
5257
+ ------------------------------------------------
5258
+ ActiveModelTest: test_value_without_count_config
5259
+ ------------------------------------------------
5260
+  (0.0ms) rollback transaction
5261
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
5262
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
5263
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
5264
+  (0.1ms) begin transaction
5265
+ --------------------------------------------------
5266
+ ActiveModelTest: test_resolution_of_boolean_values
5267
+ --------------------------------------------------
5268
+  (0.0ms) rollback transaction
5269
+  (0.0ms) begin transaction
5270
+ ------------------------------------------------
5271
+ ActiveModelTest: test_value_without_count_config
5272
+ ------------------------------------------------
5273
+  (0.0ms) rollback transaction
5274
+  (0.0ms) begin transaction
5275
+ ---------------------------------------------------------
5276
+ ActiveModelTest: test_hierarchy_resolution_for_STI_models
5277
+ ---------------------------------------------------------
5278
+  (0.0ms) rollback transaction
5279
+  (0.0ms) begin transaction
5280
+ -----------------------------------------------------
5281
+ ActiveModelTest: test_mime_type_definition_with_a_dot
5282
+ -----------------------------------------------------
5283
+  (0.0ms) rollback transaction
5284
+  (0.0ms) begin transaction
5285
+ ---------------------------------------------
5286
+ ActiveModelTest: test_value_with_count_config
5287
+ ---------------------------------------------
5288
+  (0.0ms) rollback transaction
5289
+  (0.0ms) begin transaction
5290
+ ---------------------------------------------------
5291
+ ActiveModelTest: test_resolution_for_numeric_values
5292
+ ---------------------------------------------------
5293
+  (0.0ms) rollback transaction
5294
+  (0.0ms) begin transaction
5295
+ ---------------------------------------------------
5296
+ ActiveRecordTest: test_resolution_of_boolean_values
5297
+ ---------------------------------------------------
5298
+  (0.0ms) rollback transaction
5299
+  (0.0ms) begin transaction
5300
+ ----------------------------------------------------------
5301
+ ActiveRecordTest: test_hierarchy_resolution_for_STI_models
5302
+ ----------------------------------------------------------
5303
+  (0.0ms) rollback transaction
5304
+  (0.0ms) begin transaction
5305
+ --------------------------------------------------
5306
+ ActiveRecordTest: test_attribute_with_count_config
5307
+ --------------------------------------------------
5308
+  (0.0ms) rollback transaction
5309
+  (0.0ms) begin transaction
5310
+ --------------------------------------------------
5311
+ ActiveRecordTest: test_resolution_for_associations
5312
+ --------------------------------------------------
5313
+  (0.0ms) rollback transaction
5314
+  (0.0ms) begin transaction
5315
+ -------------------------------------------
5316
+ ActiveRecordTest: test_resolution_for_enums
5317
+ -------------------------------------------
5318
+  (0.0ms) rollback transaction
5319
+  (0.0ms) begin transaction
5320
+ -----------------------------------------------------
5321
+ ActiveRecordTest: test_attribute_without_count_config
5322
+ -----------------------------------------------------
5323
+  (0.0ms) rollback transaction
5324
+  (0.0ms) begin transaction
5325
+ ------------------------------------------------------
5326
+ ActiveRecordTest: test_mime_type_definition_with_a_dot
5327
+ ------------------------------------------------------
5328
+  (0.0ms) rollback transaction
5329
+  (0.0ms) begin transaction
5330
+ ----------------------------------------------------
5331
+ ActiveRecordTest: test_resolution_for_numeric_values
5332
+ ----------------------------------------------------
5333
+  (0.1ms) rollback transaction
5334
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
5335
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
5336
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
5337
+  (0.1ms) begin transaction
5338
+ --------------------------------------------------
5339
+ ActiveRecordTest: test_attribute_with_count_config
5340
+ --------------------------------------------------
5341
+  (0.0ms) rollback transaction
5342
+  (0.0ms) begin transaction
5343
+ --------------------------------------------------
5344
+ ActiveRecordTest: test_resolution_for_associations
5345
+ --------------------------------------------------
5346
+  (0.0ms) rollback transaction
5347
+  (0.0ms) begin transaction
5348
+ ---------------------------------------------------
5349
+ ActiveRecordTest: test_resolution_of_boolean_values
5350
+ ---------------------------------------------------
5351
+  (0.0ms) rollback transaction
5352
+  (0.0ms) begin transaction
5353
+ -----------------------------------------------------
5354
+ ActiveRecordTest: test_attribute_without_count_config
5355
+ -----------------------------------------------------
5356
+  (0.0ms) rollback transaction
5357
+  (0.0ms) begin transaction
5358
+ ------------------------------------------------------
5359
+ ActiveRecordTest: test_mime_type_definition_with_a_dot
5360
+ ------------------------------------------------------
5361
+  (0.0ms) rollback transaction
5362
+  (0.0ms) begin transaction
5363
+ ----------------------------------------------------------
5364
+ ActiveRecordTest: test_hierarchy_resolution_for_STI_models
5365
+ ----------------------------------------------------------
5366
+  (0.1ms) rollback transaction
5367
+  (0.0ms) begin transaction
5368
+ -------------------------------------------
5369
+ ActiveRecordTest: test_resolution_for_enums
5370
+ -------------------------------------------
5371
+  (0.0ms) rollback transaction
5372
+  (0.0ms) begin transaction
5373
+ ----------------------------------------------------
5374
+ ActiveRecordTest: test_resolution_for_numeric_values
5375
+ ----------------------------------------------------
5376
+  (0.1ms) rollback transaction
5377
+  (0.0ms) begin transaction
5378
+ --------------------------------------------------
5379
+ ActiveModelTest: test_resolution_of_boolean_values
5380
+ --------------------------------------------------
5381
+  (0.0ms) rollback transaction
5382
+  (0.0ms) begin transaction
5383
+ -----------------------------------------------------
5384
+ ActiveModelTest: test_mime_type_definition_with_a_dot
5385
+ -----------------------------------------------------
5386
+  (0.0ms) rollback transaction
5387
+  (0.0ms) begin transaction
5388
+ ------------------------------------------------
5389
+ ActiveModelTest: test_value_without_count_config
5390
+ ------------------------------------------------
5391
+  (0.0ms) rollback transaction
5392
+  (0.0ms) begin transaction
5393
+ ---------------------------------------------------
5394
+ ActiveModelTest: test_resolution_for_numeric_values
5395
+ ---------------------------------------------------
5396
+  (0.0ms) rollback transaction
5397
+  (0.0ms) begin transaction
5398
+ ---------------------------------------------------------
5399
+ ActiveModelTest: test_hierarchy_resolution_for_STI_models
5400
+ ---------------------------------------------------------
5401
+  (0.0ms) rollback transaction
5402
+  (0.0ms) begin transaction
5403
+ ---------------------------------------------
5404
+ ActiveModelTest: test_value_with_count_config
5405
+ ---------------------------------------------
5406
+  (0.0ms) rollback transaction
5407
+  (0.1ms) SELECT sqlite_version(*)
5408
+  (284.1ms) CREATE TABLE "ar_internal_metadata" ("key" varchar NOT NULL PRIMARY KEY, "value" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
5409
+ ActiveRecord::InternalMetadata Load (0.2ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
5410
+  (0.0ms) begin transaction
5411
+ ActiveRecord::InternalMetadata Create (0.1ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["key", "environment"], ["value", "test"], ["created_at", "2018-10-19 21:54:36.949829"], ["updated_at", "2018-10-19 21:54:36.949829"]]
5412
+  (59.9ms) commit transaction
5413
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
5414
+  (50.6ms) CREATE TABLE "boolean_models" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "boolean_field" boolean, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
5415
+  (31.3ms) CREATE TABLE "enum_models" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "status" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
5416
+  (38.6ms) CREATE TABLE "lexicons" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
5417
+  (40.9ms) CREATE TABLE "numeric_models" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "integer_field" integer, "decimal_field" decimal, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
5418
+  (49.8ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "type" varchar, "field" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
5419
+  (154.9ms) CREATE TABLE "the_answers" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "ultimate_truth" varchar, "lexicon_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
5420
+  (0.1ms) select sqlite_version(*)
5421
+  (319.3ms) CREATE INDEX "index_the_answers_on_lexicon_id" ON "the_answers" ("lexicon_id")
5422
+  (21.0ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
5423
+  (20.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
5424
+  (0.1ms) SELECT version FROM "schema_migrations"
5425
+  (25.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150131170613')
5426
+  (22.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20150127220502')
5427
+  (33.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20150131161322')
5428
+  (34.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20150131164609')
5429
+  (36.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20150131162551')
5430
+  (43.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20150131153819')
5431
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
5432
+  (0.1ms) begin transaction
5433
+ -----------------------------------------------------
5434
+ ActiveRecordTest: test_attribute_without_count_config
5435
+ -----------------------------------------------------
5436
+  (0.0ms) rollback transaction
5437
+  (0.0ms) begin transaction
5438
+ ----------------------------------------------------------
5439
+ ActiveRecordTest: test_hierarchy_resolution_for_STI_models
5440
+ ----------------------------------------------------------
5441
+  (0.0ms) rollback transaction
5442
+  (0.0ms) begin transaction
5443
+ --------------------------------------------------
5444
+ ActiveRecordTest: test_resolution_for_associations
5445
+ --------------------------------------------------
5446
+  (0.0ms) rollback transaction
5447
+  (0.0ms) begin transaction
5448
+ --------------------------------------------------
5449
+ ActiveRecordTest: test_attribute_with_count_config
5450
+ --------------------------------------------------
5451
+  (0.0ms) rollback transaction
5452
+  (0.0ms) begin transaction
5453
+ ----------------------------------------------------
5454
+ ActiveRecordTest: test_resolution_for_numeric_values
5455
+ ----------------------------------------------------
5456
+  (0.0ms) rollback transaction
5457
+  (0.0ms) begin transaction
5458
+ -------------------------------------------
5459
+ ActiveRecordTest: test_resolution_for_enums
5460
+ -------------------------------------------
5461
+  (0.0ms) rollback transaction
5462
+  (0.0ms) begin transaction
5463
+ ------------------------------------------------------
5464
+ ActiveRecordTest: test_mime_type_definition_with_a_dot
5465
+ ------------------------------------------------------
5466
+  (0.0ms) rollback transaction
5467
+  (0.0ms) begin transaction
5468
+ ---------------------------------------------------
5469
+ ActiveRecordTest: test_resolution_of_boolean_values
5470
+ ---------------------------------------------------
5471
+  (0.0ms) rollback transaction
5472
+  (0.0ms) begin transaction
5473
+ ------------------------------------------------
5474
+ ActiveModelTest: test_value_without_count_config
5475
+ ------------------------------------------------
5476
+  (0.0ms) rollback transaction
5477
+  (0.0ms) begin transaction
5478
+ ---------------------------------------------
5479
+ ActiveModelTest: test_value_with_count_config
5480
+ ---------------------------------------------
5481
+  (0.0ms) rollback transaction
5482
+  (0.0ms) begin transaction
5483
+ ---------------------------------------------------------
5484
+ ActiveModelTest: test_hierarchy_resolution_for_STI_models
5485
+ ---------------------------------------------------------
5486
+  (0.0ms) rollback transaction
5487
+  (0.0ms) begin transaction
5488
+ -----------------------------------------------------
5489
+ ActiveModelTest: test_mime_type_definition_with_a_dot
5490
+ -----------------------------------------------------
5491
+  (0.0ms) rollback transaction
5492
+  (0.0ms) begin transaction
5493
+ ---------------------------------------------------
5494
+ ActiveModelTest: test_resolution_for_numeric_values
5495
+ ---------------------------------------------------
5496
+  (0.0ms) rollback transaction
5497
+  (0.0ms) begin transaction
5498
+ --------------------------------------------------
5499
+ ActiveModelTest: test_resolution_of_boolean_values
5500
+ --------------------------------------------------
5501
+  (0.0ms) rollback transaction
5502
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
5503
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
5504
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
5505
+  (0.1ms) begin transaction
5506
+ ------------------------------------------------------
5507
+ ActiveRecordTest: test_mime_type_definition_with_a_dot
5508
+ ------------------------------------------------------
5509
+  (0.1ms) rollback transaction
5510
+  (0.0ms) begin transaction
5511
+ ---------------------------------------------------
5512
+ ActiveRecordTest: test_resolution_of_boolean_values
5513
+ ---------------------------------------------------
5514
+  (0.0ms) rollback transaction
5515
+  (0.0ms) begin transaction
5516
+ ----------------------------------------------------------
5517
+ ActiveRecordTest: test_hierarchy_resolution_for_STI_models
5518
+ ----------------------------------------------------------
5519
+  (0.0ms) rollback transaction
5520
+  (0.0ms) begin transaction
5521
+ ----------------------------------------------------
5522
+ ActiveRecordTest: test_resolution_for_numeric_values
5523
+ ----------------------------------------------------
5524
+  (0.0ms) rollback transaction
5525
+  (0.0ms) begin transaction
5526
+ --------------------------------------------------
5527
+ ActiveRecordTest: test_attribute_with_count_config
5528
+ --------------------------------------------------
5529
+  (0.0ms) rollback transaction
5530
+  (0.0ms) begin transaction
5531
+ --------------------------------------------------
5532
+ ActiveRecordTest: test_resolution_for_associations
5533
+ --------------------------------------------------
5534
+  (0.0ms) rollback transaction
5535
+  (0.0ms) begin transaction
5536
+ -----------------------------------------------------
5537
+ ActiveRecordTest: test_attribute_without_count_config
5538
+ -----------------------------------------------------
5539
+  (0.0ms) rollback transaction
5540
+  (0.0ms) begin transaction
5541
+ -------------------------------------------
5542
+ ActiveRecordTest: test_resolution_for_enums
5543
+ -------------------------------------------
5544
+  (0.0ms) rollback transaction
5545
+  (0.0ms) begin transaction
5546
+ ---------------------------------------------------------
5547
+ ActiveModelTest: test_hierarchy_resolution_for_STI_models
5548
+ ---------------------------------------------------------
5549
+  (0.0ms) rollback transaction
5550
+  (0.0ms) begin transaction
5551
+ -----------------------------------------------------
5552
+ ActiveModelTest: test_mime_type_definition_with_a_dot
5553
+ -----------------------------------------------------
5554
+  (0.0ms) rollback transaction
5555
+  (0.0ms) begin transaction
5556
+ ---------------------------------------------------
5557
+ ActiveModelTest: test_resolution_for_numeric_values
5558
+ ---------------------------------------------------
5559
+  (0.0ms) rollback transaction
5560
+  (0.0ms) begin transaction
5561
+ --------------------------------------------------
5562
+ ActiveModelTest: test_resolution_of_boolean_values
5563
+ --------------------------------------------------
5564
+  (0.0ms) rollback transaction
5565
+  (0.0ms) begin transaction
5566
+ ------------------------------------------------
5567
+ ActiveModelTest: test_value_without_count_config
5568
+ ------------------------------------------------
5569
+  (0.0ms) rollback transaction
5570
+  (0.0ms) begin transaction
5571
+ ---------------------------------------------
5572
+ ActiveModelTest: test_value_with_count_config
5573
+ ---------------------------------------------
5574
+  (0.0ms) rollback transaction
5575
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
5576
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
5577
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
5578
+  (0.1ms) begin transaction
5579
+ ------------------------------------------------
5580
+ ActiveModelTest: test_value_without_count_config
5581
+ ------------------------------------------------
5582
+  (0.0ms) rollback transaction
5583
+  (0.0ms) begin transaction
5584
+ ---------------------------------------------------------
5585
+ ActiveModelTest: test_hierarchy_resolution_for_STI_models
5586
+ ---------------------------------------------------------
5587
+  (0.0ms) rollback transaction
5588
+  (0.0ms) begin transaction
5589
+ -----------------------------------------------------
5590
+ ActiveModelTest: test_mime_type_definition_with_a_dot
5591
+ -----------------------------------------------------
5592
+  (0.0ms) rollback transaction
5593
+  (0.0ms) begin transaction
5594
+ --------------------------------------------------
5595
+ ActiveModelTest: test_resolution_of_boolean_values
5596
+ --------------------------------------------------
5597
+  (0.0ms) rollback transaction
5598
+  (0.0ms) begin transaction
5599
+ ---------------------------------------------------
5600
+ ActiveModelTest: test_resolution_for_numeric_values
5601
+ ---------------------------------------------------
5602
+  (0.0ms) rollback transaction
5603
+  (0.0ms) begin transaction
5604
+ ---------------------------------------------
5605
+ ActiveModelTest: test_value_with_count_config
5606
+ ---------------------------------------------
5607
+  (0.0ms) rollback transaction
5608
+  (0.0ms) begin transaction
5609
+ ----------------------------------------------------------
5610
+ ActiveRecordTest: test_hierarchy_resolution_for_STI_models
5611
+ ----------------------------------------------------------
5612
+  (0.0ms) rollback transaction
5613
+  (0.0ms) begin transaction
5614
+ ---------------------------------------------------
5615
+ ActiveRecordTest: test_resolution_of_boolean_values
5616
+ ---------------------------------------------------
5617
+  (0.0ms) rollback transaction
5618
+  (0.0ms) begin transaction
5619
+ -----------------------------------------------------
5620
+ ActiveRecordTest: test_attribute_without_count_config
5621
+ -----------------------------------------------------
5622
+  (0.0ms) rollback transaction
5623
+  (0.0ms) begin transaction
5624
+ --------------------------------------------------
5625
+ ActiveRecordTest: test_attribute_with_count_config
5626
+ --------------------------------------------------
5627
+  (0.0ms) rollback transaction
5628
+  (0.0ms) begin transaction
5629
+ ------------------------------------------------------
5630
+ ActiveRecordTest: test_mime_type_definition_with_a_dot
5631
+ ------------------------------------------------------
5632
+  (0.0ms) rollback transaction
5633
+  (0.0ms) begin transaction
5634
+ --------------------------------------------------
5635
+ ActiveRecordTest: test_resolution_for_associations
5636
+ --------------------------------------------------
5637
+  (0.1ms) rollback transaction
5638
+  (0.0ms) begin transaction
5639
+ ----------------------------------------------------
5640
+ ActiveRecordTest: test_resolution_for_numeric_values
5641
+ ----------------------------------------------------
5642
+  (0.1ms) rollback transaction
5643
+  (0.0ms) begin transaction
5644
+ -------------------------------------------
5645
+ ActiveRecordTest: test_resolution_for_enums
5646
+ -------------------------------------------
5647
+  (0.0ms) rollback transaction
5648
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
5649
+  (51.8ms) CREATE TABLE "boolean_models" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "boolean_field" boolean, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
5650
+  (22.7ms) CREATE TABLE "enum_models" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "status" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
5651
+  (26.1ms) CREATE TABLE "lexicons" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
5652
+  (31.2ms) CREATE TABLE "numeric_models" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "integer_field" integer, "decimal_field" decimal, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
5653
+  (174.4ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "type" varchar, "field" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
5654
+  (26.0ms) CREATE TABLE "the_answers" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "ultimate_truth" varchar, "lexicon_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
5655
+  (0.1ms) select sqlite_version(*)
5656
+  (506.5ms) CREATE INDEX "index_the_answers_on_lexicon_id" ON "the_answers" ("lexicon_id")
5657
+  (22.9ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
5658
+  (23.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
5659
+  (0.1ms) SELECT version FROM "schema_migrations"
5660
+  (24.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20150131170613')
5661
+  (22.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20150127220502')
5662
+  (22.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20150131161322')
5663
+  (147.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20150131164609')
5664
+  (16.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20150131162551')
5665
+  (24.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20150131153819')
5666
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
5667
+  (0.0ms) begin transaction
5668
+ ---------------------------------------------------------
5669
+ ActiveModelTest: test_hierarchy_resolution_for_STI_models
5670
+ ---------------------------------------------------------
5671
+  (0.0ms) rollback transaction
5672
+  (0.0ms) begin transaction
5673
+ -----------------------------------------------------
5674
+ ActiveModelTest: test_mime_type_definition_with_a_dot
5675
+ -----------------------------------------------------
5676
+  (0.0ms) rollback transaction
5677
+  (0.0ms) begin transaction
5678
+ ---------------------------------------------------
5679
+ ActiveModelTest: test_resolution_for_numeric_values
5680
+ ---------------------------------------------------
5681
+  (0.0ms) rollback transaction
5682
+  (0.0ms) begin transaction
5683
+ --------------------------------------------------
5684
+ ActiveModelTest: test_resolution_of_boolean_values
5685
+ --------------------------------------------------
5686
+  (0.0ms) rollback transaction
5687
+  (0.0ms) begin transaction
5688
+ ------------------------------------------------
5689
+ ActiveModelTest: test_value_without_count_config
5690
+ ------------------------------------------------
5691
+  (0.0ms) rollback transaction
5692
+  (0.0ms) begin transaction
5693
+ ---------------------------------------------
5694
+ ActiveModelTest: test_value_with_count_config
5695
+ ---------------------------------------------
5696
+  (0.0ms) rollback transaction
5697
+  (0.0ms) begin transaction
5698
+ -----------------------------------------------------
5699
+ ActiveRecordTest: test_attribute_without_count_config
5700
+ -----------------------------------------------------
5701
+  (0.0ms) rollback transaction
5702
+  (0.0ms) begin transaction
5703
+ ----------------------------------------------------------
5704
+ ActiveRecordTest: test_hierarchy_resolution_for_STI_models
5705
+ ----------------------------------------------------------
5706
+  (0.0ms) rollback transaction
5707
+  (0.0ms) begin transaction
5708
+ --------------------------------------------------
5709
+ ActiveRecordTest: test_attribute_with_count_config
5710
+ --------------------------------------------------
5711
+  (0.0ms) rollback transaction
5712
+  (0.0ms) begin transaction
5713
+ ----------------------------------------------------
5714
+ ActiveRecordTest: test_resolution_for_numeric_values
5715
+ ----------------------------------------------------
5716
+  (0.0ms) rollback transaction
5717
+  (0.0ms) begin transaction
5718
+ ---------------------------------------------------
5719
+ ActiveRecordTest: test_resolution_of_boolean_values
5720
+ ---------------------------------------------------
5721
+  (0.0ms) rollback transaction
5722
+  (0.0ms) begin transaction
5723
+ -------------------------------------------
5724
+ ActiveRecordTest: test_resolution_for_enums
5725
+ -------------------------------------------
5726
+  (0.0ms) rollback transaction
5727
+  (0.0ms) begin transaction
5728
+ --------------------------------------------------
5729
+ ActiveRecordTest: test_resolution_for_associations
5730
+ --------------------------------------------------
5731
+  (0.0ms) rollback transaction
5732
+  (0.0ms) begin transaction
5733
+ ------------------------------------------------------
5734
+ ActiveRecordTest: test_mime_type_definition_with_a_dot
5735
+ ------------------------------------------------------
5736
+  (0.0ms) rollback transaction
5737
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
5738
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
5739
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
5740
+  (0.1ms) begin transaction
5741
+ -----------------------------------------------------
5742
+ ActiveRecordTest: test_attribute_without_count_config
5743
+ -----------------------------------------------------
5744
+  (0.1ms) rollback transaction
5745
+  (0.0ms) begin transaction
5746
+ --------------------------------------------------
5747
+ ActiveRecordTest: test_attribute_with_count_config
5748
+ --------------------------------------------------
5749
+  (0.0ms) rollback transaction
5750
+  (0.0ms) begin transaction
5751
+ ----------------------------------------------------------
5752
+ ActiveRecordTest: test_hierarchy_resolution_for_STI_models
5753
+ ----------------------------------------------------------
5754
+  (0.1ms) rollback transaction
5755
+  (0.0ms) begin transaction
5756
+ ------------------------------------------------------
5757
+ ActiveRecordTest: test_mime_type_definition_with_a_dot
5758
+ ------------------------------------------------------
5759
+  (0.0ms) rollback transaction
5760
+  (0.0ms) begin transaction
5761
+ ----------------------------------------------------
5762
+ ActiveRecordTest: test_resolution_for_numeric_values
5763
+ ----------------------------------------------------
5764
+  (0.0ms) rollback transaction
5765
+  (0.0ms) begin transaction
5766
+ --------------------------------------------------
5767
+ ActiveRecordTest: test_resolution_for_associations
5768
+ --------------------------------------------------
5769
+  (0.0ms) rollback transaction
5770
+  (0.0ms) begin transaction
5771
+ -------------------------------------------
5772
+ ActiveRecordTest: test_resolution_for_enums
5773
+ -------------------------------------------
5774
+  (0.0ms) rollback transaction
5775
+  (0.0ms) begin transaction
5776
+ ---------------------------------------------------
5777
+ ActiveRecordTest: test_resolution_of_boolean_values
5778
+ ---------------------------------------------------
5779
+  (0.0ms) rollback transaction
5780
+  (0.0ms) begin transaction
5781
+ ---------------------------------------------------------
5782
+ ActiveModelTest: test_hierarchy_resolution_for_STI_models
5783
+ ---------------------------------------------------------
5784
+  (0.0ms) rollback transaction
5785
+  (0.0ms) begin transaction
5786
+ --------------------------------------------------
5787
+ ActiveModelTest: test_resolution_of_boolean_values
5788
+ --------------------------------------------------
5789
+  (0.0ms) rollback transaction
5790
+  (0.0ms) begin transaction
5791
+ ------------------------------------------------
5792
+ ActiveModelTest: test_value_without_count_config
5793
+ ------------------------------------------------
5794
+  (0.0ms) rollback transaction
5795
+  (0.0ms) begin transaction
5796
+ -----------------------------------------------------
5797
+ ActiveModelTest: test_mime_type_definition_with_a_dot
5798
+ -----------------------------------------------------
5799
+  (0.0ms) rollback transaction
5800
+  (0.0ms) begin transaction
5801
+ ---------------------------------------------------
5802
+ ActiveModelTest: test_resolution_for_numeric_values
5803
+ ---------------------------------------------------
5804
+  (0.0ms) rollback transaction
5805
+  (0.0ms) begin transaction
5806
+ ---------------------------------------------
5807
+ ActiveModelTest: test_value_with_count_config
5808
+ ---------------------------------------------
5809
+  (0.0ms) rollback transaction
5810
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
5811
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
5812
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
5813
+  (0.0ms) begin transaction
5814
+ -----------------------------------------------------
5815
+ ActiveModelTest: test_mime_type_definition_with_a_dot
5816
+ -----------------------------------------------------
5817
+  (0.1ms) rollback transaction
5818
+  (0.0ms) begin transaction
5819
+ ------------------------------------------------
5820
+ ActiveModelTest: test_value_without_count_config
5821
+ ------------------------------------------------
5822
+  (0.0ms) rollback transaction
5823
+  (0.0ms) begin transaction
5824
+ ---------------------------------------------------------
5825
+ ActiveModelTest: test_hierarchy_resolution_for_STI_models
5826
+ ---------------------------------------------------------
5827
+  (0.0ms) rollback transaction
5828
+  (0.0ms) begin transaction
5829
+ ---------------------------------------------
5830
+ ActiveModelTest: test_value_with_count_config
5831
+ ---------------------------------------------
5832
+  (0.0ms) rollback transaction
5833
+  (0.1ms) begin transaction
5834
+ --------------------------------------------------
5835
+ ActiveModelTest: test_resolution_of_boolean_values
5836
+ --------------------------------------------------
5837
+  (0.0ms) rollback transaction
5838
+  (0.0ms) begin transaction
5839
+ ---------------------------------------------------
5840
+ ActiveModelTest: test_resolution_for_numeric_values
5841
+ ---------------------------------------------------
5842
+  (0.0ms) rollback transaction
5843
+  (0.0ms) begin transaction
5844
+ --------------------------------------------------
5845
+ ActiveRecordTest: test_resolution_for_associations
5846
+ --------------------------------------------------
5847
+  (0.0ms) rollback transaction
5848
+  (0.0ms) begin transaction
5849
+ ----------------------------------------------------------
5850
+ ActiveRecordTest: test_hierarchy_resolution_for_STI_models
5851
+ ----------------------------------------------------------
5852
+  (0.0ms) rollback transaction
5853
+  (0.0ms) begin transaction
5854
+ ------------------------------------------------------
5855
+ ActiveRecordTest: test_mime_type_definition_with_a_dot
5856
+ ------------------------------------------------------
5857
+  (0.0ms) rollback transaction
5858
+  (0.0ms) begin transaction
5859
+ --------------------------------------------------
5860
+ ActiveRecordTest: test_attribute_with_count_config
5861
+ --------------------------------------------------
5862
+  (0.0ms) rollback transaction
5863
+  (0.0ms) begin transaction
5864
+ -------------------------------------------
5865
+ ActiveRecordTest: test_resolution_for_enums
5866
+ -------------------------------------------
5867
+  (0.0ms) rollback transaction
5868
+  (0.0ms) begin transaction
5869
+ ----------------------------------------------------
5870
+ ActiveRecordTest: test_resolution_for_numeric_values
5871
+ ----------------------------------------------------
5872
+  (0.0ms) rollback transaction
5873
+  (0.0ms) begin transaction
5874
+ ---------------------------------------------------
5875
+ ActiveRecordTest: test_resolution_of_boolean_values
5876
+ ---------------------------------------------------
5877
+  (0.0ms) rollback transaction
5878
+  (0.0ms) begin transaction
5879
+ -----------------------------------------------------
5880
+ ActiveRecordTest: test_attribute_without_count_config
5881
+ -----------------------------------------------------
5882
+  (0.0ms) rollback transaction
5883
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
5884
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
5885
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
5886
+  (0.0ms) begin transaction
5887
+ ---------------------------------------------------
5888
+ ActiveModelTest: test_resolution_for_numeric_values
5889
+ ---------------------------------------------------
5890
+  (0.0ms) rollback transaction
5891
+  (0.0ms) begin transaction
5892
+ ---------------------------------------------
5893
+ ActiveModelTest: test_value_with_count_config
5894
+ ---------------------------------------------
5895
+  (0.0ms) rollback transaction
5896
+  (0.0ms) begin transaction
5897
+ ------------------------------------------------
5898
+ ActiveModelTest: test_value_without_count_config
5899
+ ------------------------------------------------
5900
+  (0.0ms) rollback transaction
5901
+  (0.0ms) begin transaction
5902
+ ---------------------------------------------------------
5903
+ ActiveModelTest: test_hierarchy_resolution_for_STI_models
5904
+ ---------------------------------------------------------
5905
+  (0.0ms) rollback transaction
5906
+  (0.0ms) begin transaction
5907
+ --------------------------------------------------
5908
+ ActiveModelTest: test_resolution_of_boolean_values
5909
+ --------------------------------------------------
5910
+  (0.0ms) rollback transaction
5911
+  (0.0ms) begin transaction
5912
+ ----------------------------------------------------------
5913
+ ActiveRecordTest: test_hierarchy_resolution_for_STI_models
5914
+ ----------------------------------------------------------
5915
+  (0.0ms) rollback transaction
5916
+  (0.0ms) begin transaction
5917
+ -----------------------------------------------------
5918
+ ActiveRecordTest: test_attribute_without_count_config
5919
+ -----------------------------------------------------
5920
+  (0.1ms) rollback transaction
5921
+  (0.0ms) begin transaction
5922
+ -------------------------------------------
5923
+ ActiveRecordTest: test_resolution_for_enums
5924
+ -------------------------------------------
5925
+  (0.0ms) rollback transaction
5926
+  (0.0ms) begin transaction
5927
+ ---------------------------------------------------
5928
+ ActiveRecordTest: test_resolution_of_boolean_values
5929
+ ---------------------------------------------------
5930
+  (0.0ms) rollback transaction
5931
+  (0.0ms) begin transaction
5932
+ ----------------------------------------------------
5933
+ ActiveRecordTest: test_resolution_for_numeric_values
5934
+ ----------------------------------------------------
5935
+  (0.0ms) rollback transaction
5936
+  (0.0ms) begin transaction
5937
+ --------------------------------------------------
5938
+ ActiveRecordTest: test_attribute_with_count_config
5939
+ --------------------------------------------------
5940
+  (0.0ms) rollback transaction
5941
+  (0.0ms) begin transaction
5942
+ --------------------------------------------------
5943
+ ActiveRecordTest: test_resolution_for_associations
5944
+ --------------------------------------------------
5945
+  (0.0ms) rollback transaction
5946
+  (0.1ms) SELECT sqlite_version(*)
5947
+  (60.0ms) CREATE TABLE "ar_internal_metadata" ("key" varchar NOT NULL PRIMARY KEY, "value" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
5948
+ ActiveRecord::InternalMetadata Load (0.1ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
5949
+  (0.0ms) begin transaction
5950
+ ActiveRecord::InternalMetadata Create (0.1ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["key", "environment"], ["value", "test"], ["created_at", "2018-10-19 22:24:03.126216"], ["updated_at", "2018-10-19 22:24:03.126216"]]
5951
+  (58.2ms) commit transaction
5952
+  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
5953
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
5954
+  (19.7ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "environment"]]
5955
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
5956
+  (0.0ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "environment"]]
5957
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
5958
+  (0.0ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "environment"]]
5959
+  (0.1ms) DROP TABLE IF EXISTS "boolean_models"
5960
+  (0.0ms) SELECT sqlite_version(*)
5961
+  (206.6ms) CREATE TABLE "boolean_models" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "boolean_field" boolean, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
5962
+  (0.1ms) DROP TABLE IF EXISTS "enum_models"
5963
+  (175.7ms) CREATE TABLE "enum_models" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "status" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
5964
+  (0.1ms) DROP TABLE IF EXISTS "lexicons"
5965
+  (241.3ms) CREATE TABLE "lexicons" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
5966
+  (0.2ms) DROP TABLE IF EXISTS "numeric_models"
5967
+  (187.3ms) CREATE TABLE "numeric_models" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "integer_field" integer, "decimal_field" decimal, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
5968
+  (0.1ms) DROP TABLE IF EXISTS "parents"
5969
+  (84.5ms) CREATE TABLE "parents" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "type" varchar, "field" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
5970
+  (0.1ms) DROP TABLE IF EXISTS "the_answers"
5971
+  (167.4ms) CREATE TABLE "the_answers" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "ultimate_truth" varchar, "lexicon_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
5972
+  (212.1ms) CREATE INDEX "index_the_answers_on_lexicon_id" ON "the_answers" ("lexicon_id")
5973
+  (248.0ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL PRIMARY KEY)
5974
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
5975
+  (184.0ms) INSERT INTO "schema_migrations" (version) VALUES (20150131170613)
5976
+  (44.2ms) INSERT INTO "schema_migrations" (version) VALUES
5977
+ (20150127220502),
5978
+ (20150131161322),
5979
+ (20150131164609),
5980
+ (20150131162551),
5981
+ (20150131153819);
5982
+
5983
+ 
5984
+  (165.0ms) CREATE TABLE "ar_internal_metadata" ("key" varchar NOT NULL PRIMARY KEY, "value" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
5985
+ ActiveRecord::InternalMetadata Load (0.2ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
5986
+  (0.0ms) begin transaction
5987
+ ActiveRecord::InternalMetadata Create (0.1ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["key", "environment"], ["value", "test"], ["created_at", "2018-10-20 16:42:52.327855"], ["updated_at", "2018-10-20 16:42:52.327855"]]
5988
+  (84.9ms) commit transaction
5989
+ ActiveRecord::InternalMetadata Load (0.1ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
5990
+  (0.0ms) begin transaction
5991
+  (0.0ms) commit transaction
5992
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
5993
+  (0.1ms) begin transaction
5994
+ -----------------------------------------------------
5995
+ ActiveRecordTest: test_attribute_without_count_config
5996
+ -----------------------------------------------------
5997
+  (0.1ms) rollback transaction
5998
+  (0.0ms) begin transaction
5999
+ --------------------------------------------------
6000
+ ActiveRecordTest: test_resolution_for_associations
6001
+ --------------------------------------------------
6002
+  (0.0ms) rollback transaction
6003
+  (0.0ms) begin transaction
6004
+ ----------------------------------------------------------
6005
+ ActiveRecordTest: test_hierarchy_resolution_for_STI_models
6006
+ ----------------------------------------------------------
6007
+  (0.0ms) rollback transaction
6008
+  (0.0ms) begin transaction
6009
+ ----------------------------------------------------
6010
+ ActiveRecordTest: test_resolution_for_numeric_values
6011
+ ----------------------------------------------------
6012
+  (0.0ms) rollback transaction
6013
+  (0.0ms) begin transaction
6014
+ ------------------------------------------------------
6015
+ ActiveRecordTest: test_mime_type_definition_with_a_dot
6016
+ ------------------------------------------------------
6017
+  (0.0ms) rollback transaction
6018
+  (0.1ms) begin transaction
6019
+ -------------------------------------------
6020
+ ActiveRecordTest: test_resolution_for_enums
6021
+ -------------------------------------------
6022
+  (0.0ms) rollback transaction
6023
+  (0.0ms) begin transaction
6024
+ ---------------------------------------------------
6025
+ ActiveRecordTest: test_resolution_of_boolean_values
6026
+ ---------------------------------------------------
6027
+  (0.1ms) rollback transaction
6028
+  (0.0ms) begin transaction
6029
+ --------------------------------------------------
6030
+ ActiveRecordTest: test_attribute_with_count_config
6031
+ --------------------------------------------------
6032
+  (0.0ms) rollback transaction
6033
+  (0.0ms) begin transaction
6034
+ ---------------------------------------------------
6035
+ ActiveModelTest: test_resolution_for_numeric_values
6036
+ ---------------------------------------------------
6037
+  (0.1ms) rollback transaction
6038
+  (0.1ms) begin transaction
6039
+ ---------------------------------------------------------
6040
+ ActiveModelTest: test_hierarchy_resolution_for_STI_models
6041
+ ---------------------------------------------------------
6042
+  (0.1ms) rollback transaction
6043
+  (0.1ms) begin transaction
6044
+ --------------------------------------------------
6045
+ ActiveModelTest: test_resolution_of_boolean_values
6046
+ --------------------------------------------------
6047
+  (0.1ms) rollback transaction
6048
+  (0.0ms) begin transaction
6049
+ -----------------------------------------------------
6050
+ ActiveModelTest: test_mime_type_definition_with_a_dot
6051
+ -----------------------------------------------------
6052
+  (0.1ms) rollback transaction
6053
+  (0.1ms) begin transaction
6054
+ ---------------------------------------------
6055
+ ActiveModelTest: test_value_with_count_config
6056
+ ---------------------------------------------
6057
+  (0.1ms) rollback transaction
6058
+  (0.1ms) begin transaction
6059
+ ------------------------------------------------
6060
+ ActiveModelTest: test_value_without_count_config
6061
+ ------------------------------------------------
6062
+  (0.1ms) rollback transaction
6063
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
6064
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
6065
+  (0.1ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "environment"]]
6066
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
6067
+  (0.0ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "environment"]]
6068
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
6069
+  (0.0ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "environment"]]
6070
+  (0.1ms) DROP TABLE IF EXISTS "boolean_models"
6071
+  (0.0ms) SELECT sqlite_version(*)
6072
+  (41.6ms) CREATE TABLE "boolean_models" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "boolean_field" boolean, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
6073
+  (0.1ms) DROP TABLE IF EXISTS "enum_models"
6074
+  (84.2ms) CREATE TABLE "enum_models" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "status" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
6075
+  (0.1ms) DROP TABLE IF EXISTS "lexicons"
6076
+  (28.4ms) CREATE TABLE "lexicons" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
6077
+  (0.1ms) DROP TABLE IF EXISTS "numeric_models"
6078
+  (38.6ms) CREATE TABLE "numeric_models" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "integer_field" integer, "decimal_field" decimal, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
6079
+  (0.1ms) DROP TABLE IF EXISTS "parents"
6080
+  (46.4ms) CREATE TABLE "parents" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "type" varchar, "field" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
6081
+  (0.1ms) DROP TABLE IF EXISTS "the_answers"
6082
+  (42.6ms) CREATE TABLE "the_answers" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "ultimate_truth" varchar, "lexicon_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
6083
+  (220.1ms) CREATE INDEX "index_the_answers_on_lexicon_id" ON "the_answers" ("lexicon_id")
6084
+  (231.4ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL PRIMARY KEY)
6085
+  (0.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
6086
+  (281.4ms) INSERT INTO "schema_migrations" (version) VALUES (20150131170613)
6087
+  (50.0ms) INSERT INTO "schema_migrations" (version) VALUES
6088
+ (20150127220502),
6089
+ (20150131161322),
6090
+ (20150131164609),
6091
+ (20150131162551),
6092
+ (20150131153819);
6093
+
6094
+ 
6095
+  (31.6ms) CREATE TABLE "ar_internal_metadata" ("key" varchar NOT NULL PRIMARY KEY, "value" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
6096
+ ActiveRecord::InternalMetadata Load (0.2ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
6097
+  (0.0ms) begin transaction
6098
+ ActiveRecord::InternalMetadata Create (0.1ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["key", "environment"], ["value", "test"], ["created_at", "2018-10-20 16:43:03.811892"], ["updated_at", "2018-10-20 16:43:03.811892"]]
6099
+  (134.7ms) commit transaction
6100
+ ActiveRecord::InternalMetadata Load (0.1ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
6101
+  (0.1ms) begin transaction
6102
+  (0.0ms) commit transaction
6103
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
6104
+  (0.1ms) begin transaction
6105
+ ---------------------------------------------------------
6106
+ ActiveModelTest: test_hierarchy_resolution_for_STI_models
6107
+ ---------------------------------------------------------
6108
+  (0.0ms) rollback transaction
6109
+  (0.0ms) begin transaction
6110
+ --------------------------------------------------
6111
+ ActiveModelTest: test_resolution_of_boolean_values
6112
+ --------------------------------------------------
6113
+  (0.0ms) rollback transaction
6114
+  (0.0ms) begin transaction
6115
+ ---------------------------------------------
6116
+ ActiveModelTest: test_value_with_count_config
6117
+ ---------------------------------------------
6118
+  (0.0ms) rollback transaction
6119
+  (0.0ms) begin transaction
6120
+ -----------------------------------------------------
6121
+ ActiveModelTest: test_mime_type_definition_with_a_dot
6122
+ -----------------------------------------------------
6123
+  (0.0ms) rollback transaction
6124
+  (0.0ms) begin transaction
6125
+ ---------------------------------------------------
6126
+ ActiveModelTest: test_resolution_for_numeric_values
6127
+ ---------------------------------------------------
6128
+  (0.0ms) rollback transaction
6129
+  (0.0ms) begin transaction
6130
+ ------------------------------------------------
6131
+ ActiveModelTest: test_value_without_count_config
6132
+ ------------------------------------------------
6133
+  (0.0ms) rollback transaction
6134
+  (0.0ms) begin transaction
6135
+ -------------------------------------------
6136
+ ActiveRecordTest: test_resolution_for_enums
6137
+ -------------------------------------------
6138
+  (0.0ms) rollback transaction
6139
+  (0.0ms) begin transaction
6140
+ --------------------------------------------------
6141
+ ActiveRecordTest: test_attribute_with_count_config
6142
+ --------------------------------------------------
6143
+  (0.0ms) rollback transaction
6144
+  (0.0ms) begin transaction
6145
+ ----------------------------------------------------------
6146
+ ActiveRecordTest: test_hierarchy_resolution_for_STI_models
6147
+ ----------------------------------------------------------
6148
+  (0.0ms) rollback transaction
6149
+  (0.0ms) begin transaction
6150
+ ---------------------------------------------------
6151
+ ActiveRecordTest: test_resolution_of_boolean_values
6152
+ ---------------------------------------------------
6153
+  (0.0ms) rollback transaction
6154
+  (0.0ms) begin transaction
6155
+ --------------------------------------------------
6156
+ ActiveRecordTest: test_resolution_for_associations
6157
+ --------------------------------------------------
6158
+  (0.1ms) rollback transaction
6159
+  (0.1ms) begin transaction
6160
+ ----------------------------------------------------
6161
+ ActiveRecordTest: test_resolution_for_numeric_values
6162
+ ----------------------------------------------------
6163
+  (0.0ms) rollback transaction
6164
+  (0.0ms) begin transaction
6165
+ -----------------------------------------------------
6166
+ ActiveRecordTest: test_attribute_without_count_config
6167
+ -----------------------------------------------------
6168
+  (0.0ms) rollback transaction
6169
+  (0.0ms) begin transaction
6170
+ ------------------------------------------------------
6171
+ ActiveRecordTest: test_mime_type_definition_with_a_dot
6172
+ ------------------------------------------------------
6173
+  (0.0ms) rollback transaction
6174
+  (11.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
6175
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
6176
+  (22.8ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "environment"]]
6177
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
6178
+  (0.0ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "environment"]]
6179
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
6180
+  (0.0ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "environment"]]
6181
+  (0.0ms) DROP TABLE IF EXISTS "boolean_models"
6182
+  (0.0ms) SELECT sqlite_version(*)
6183
+  (201.0ms) CREATE TABLE "boolean_models" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "boolean_field" boolean, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
6184
+  (0.1ms) DROP TABLE IF EXISTS "enum_models"
6185
+  (188.6ms) CREATE TABLE "enum_models" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "status" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
6186
+  (0.1ms) DROP TABLE IF EXISTS "lexicons"
6187
+  (210.6ms) CREATE TABLE "lexicons" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
6188
+  (0.1ms) DROP TABLE IF EXISTS "numeric_models"
6189
+  (211.0ms) CREATE TABLE "numeric_models" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "integer_field" integer, "decimal_field" decimal, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
6190
+  (0.1ms) DROP TABLE IF EXISTS "parents"
6191
+  (198.2ms) CREATE TABLE "parents" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "type" varchar, "field" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
6192
+  (0.1ms) DROP TABLE IF EXISTS "the_answers"
6193
+  (73.4ms) CREATE TABLE "the_answers" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "ultimate_truth" varchar, "lexicon_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
6194
+  (182.9ms) CREATE INDEX "index_the_answers_on_lexicon_id" ON "the_answers" ("lexicon_id")
6195
+  (187.4ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL PRIMARY KEY)
6196
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
6197
+  (134.2ms) INSERT INTO "schema_migrations" (version) VALUES (20150131170613)
6198
+  (163.8ms) INSERT INTO "schema_migrations" (version) VALUES
6199
+ (20150127220502),
6200
+ (20150131161322),
6201
+ (20150131164609),
6202
+ (20150131162551),
6203
+ (20150131153819);
6204
+
6205
+ 
6206
+  (139.7ms) CREATE TABLE "ar_internal_metadata" ("key" varchar NOT NULL PRIMARY KEY, "value" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
6207
+ ActiveRecord::InternalMetadata Load (0.1ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
6208
+  (0.0ms) begin transaction
6209
+ ActiveRecord::InternalMetadata Create (0.1ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["key", "environment"], ["value", "test"], ["created_at", "2018-10-21 11:56:50.169981"], ["updated_at", "2018-10-21 11:56:50.169981"]]
6210
+  (140.9ms) commit transaction
6211
+ ActiveRecord::InternalMetadata Load (0.0ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
6212
+  (0.0ms) begin transaction
6213
+  (0.0ms) commit transaction
6214
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
6215
+  (0.1ms) begin transaction
6216
+ -----------------------------------------------------
6217
+ ActiveRecordTest: test_attribute_without_count_config
6218
+ -----------------------------------------------------
6219
+  (0.1ms) rollback transaction
6220
+  (0.0ms) begin transaction
6221
+ -------------------------------------------
6222
+ ActiveRecordTest: test_resolution_for_enums
6223
+ -------------------------------------------
6224
+  (0.0ms) rollback transaction
6225
+  (0.0ms) begin transaction
6226
+ ------------------------------------------------------
6227
+ ActiveRecordTest: test_mime_type_definition_with_a_dot
6228
+ ------------------------------------------------------
6229
+  (0.0ms) rollback transaction
6230
+  (0.0ms) begin transaction
6231
+ ----------------------------------------------------------
6232
+ ActiveRecordTest: test_hierarchy_resolution_for_STI_models
6233
+ ----------------------------------------------------------
6234
+  (0.1ms) rollback transaction
6235
+  (0.0ms) begin transaction
6236
+ --------------------------------------------------
6237
+ ActiveRecordTest: test_resolution_for_associations
6238
+ --------------------------------------------------
6239
+  (0.1ms) rollback transaction
6240
+  (0.0ms) begin transaction
6241
+ ----------------------------------------------------
6242
+ ActiveRecordTest: test_resolution_for_numeric_values
6243
+ ----------------------------------------------------
6244
+  (0.1ms) rollback transaction
6245
+  (0.0ms) begin transaction
6246
+ ---------------------------------------------------
6247
+ ActiveRecordTest: test_resolution_of_boolean_values
6248
+ ---------------------------------------------------
6249
+  (0.0ms) rollback transaction
6250
+  (0.0ms) begin transaction
6251
+ --------------------------------------------------
6252
+ ActiveRecordTest: test_attribute_with_count_config
6253
+ --------------------------------------------------
6254
+  (0.0ms) rollback transaction
6255
+  (0.0ms) begin transaction
6256
+ ---------------------------------------------------
6257
+ ActiveModelTest: test_resolution_for_numeric_values
6258
+ ---------------------------------------------------
6259
+  (0.1ms) rollback transaction
6260
+  (0.1ms) begin transaction
6261
+ ------------------------------------------------
6262
+ ActiveModelTest: test_value_without_count_config
6263
+ ------------------------------------------------
6264
+  (0.0ms) rollback transaction
6265
+  (0.0ms) begin transaction
6266
+ ---------------------------------------------------------
6267
+ ActiveModelTest: test_hierarchy_resolution_for_STI_models
6268
+ ---------------------------------------------------------
6269
+  (0.1ms) rollback transaction
6270
+  (0.0ms) begin transaction
6271
+ -----------------------------------------------------
6272
+ ActiveModelTest: test_mime_type_definition_with_a_dot
6273
+ -----------------------------------------------------
6274
+  (0.1ms) rollback transaction
6275
+  (0.0ms) begin transaction
6276
+ --------------------------------------------------
6277
+ ActiveModelTest: test_resolution_of_boolean_values
6278
+ --------------------------------------------------
6279
+  (0.0ms) rollback transaction
6280
+  (0.0ms) begin transaction
6281
+ ---------------------------------------------
6282
+ ActiveModelTest: test_value_with_count_config
6283
+ ---------------------------------------------
6284
+  (0.0ms) rollback transaction
6285
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
6286
+  (65.1ms) CREATE TABLE "boolean_models" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "boolean_field" boolean, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
6287
+  (40.0ms) CREATE TABLE "enum_models" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "status" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
6288
+  (42.5ms) CREATE TABLE "lexicons" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
6289
+  (55.2ms) CREATE TABLE "numeric_models" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "integer_field" integer, "decimal_field" decimal, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
6290
+  (57.9ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "type" varchar, "field" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
6291
+  (159.6ms) CREATE TABLE "the_answers" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "ultimate_truth" varchar, "lexicon_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
6292
+  (0.1ms) select sqlite_version(*)
6293
+  (549.3ms) CREATE INDEX "index_the_answers_on_lexicon_id" ON "the_answers" ("lexicon_id")
6294
+  (115.0ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
6295
+  (20.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
6296
+  (0.1ms) SELECT version FROM "schema_migrations"
6297
+  (24.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20150131170613')
6298
+  (22.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20150127220502')
6299
+  (26.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20150131161322')
6300
+  (221.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150131164609')
6301
+  (16.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20150131162551')
6302
+  (16.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20150131153819')
6303
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
6304
+  (0.0ms) begin transaction
6305
+ ----------------------------------------------------
6306
+ ActiveRecordTest: test_resolution_for_numeric_values
6307
+ ----------------------------------------------------
6308
+  (0.0ms) rollback transaction
6309
+  (0.0ms) begin transaction
6310
+ --------------------------------------------------
6311
+ ActiveRecordTest: test_attribute_with_count_config
6312
+ --------------------------------------------------
6313
+  (0.0ms) rollback transaction
6314
+  (0.0ms) begin transaction
6315
+ ----------------------------------------------------------
6316
+ ActiveRecordTest: test_hierarchy_resolution_for_STI_models
6317
+ ----------------------------------------------------------
6318
+  (0.0ms) rollback transaction
6319
+  (0.0ms) begin transaction
6320
+ --------------------------------------------------
6321
+ ActiveRecordTest: test_resolution_for_associations
6322
+ --------------------------------------------------
6323
+  (0.0ms) rollback transaction
6324
+  (0.0ms) begin transaction
6325
+ ------------------------------------------------------
6326
+ ActiveRecordTest: test_mime_type_definition_with_a_dot
6327
+ ------------------------------------------------------
6328
+  (0.0ms) rollback transaction
6329
+  (0.0ms) begin transaction
6330
+ -------------------------------------------
6331
+ ActiveRecordTest: test_resolution_for_enums
6332
+ -------------------------------------------
6333
+  (0.0ms) rollback transaction
6334
+  (0.0ms) begin transaction
6335
+ ---------------------------------------------------
6336
+ ActiveRecordTest: test_resolution_of_boolean_values
6337
+ ---------------------------------------------------
6338
+  (0.0ms) rollback transaction
6339
+  (0.0ms) begin transaction
6340
+ -----------------------------------------------------
6341
+ ActiveRecordTest: test_attribute_without_count_config
6342
+ -----------------------------------------------------
6343
+  (0.0ms) rollback transaction
6344
+  (0.0ms) begin transaction
6345
+ ---------------------------------------------------------
6346
+ ActiveModelTest: test_hierarchy_resolution_for_STI_models
6347
+ ---------------------------------------------------------
6348
+  (0.0ms) rollback transaction
6349
+  (0.0ms) begin transaction
6350
+ -----------------------------------------------------
6351
+ ActiveModelTest: test_mime_type_definition_with_a_dot
6352
+ -----------------------------------------------------
6353
+  (0.0ms) rollback transaction
6354
+  (0.0ms) begin transaction
6355
+ --------------------------------------------------
6356
+ ActiveModelTest: test_resolution_of_boolean_values
6357
+ --------------------------------------------------
6358
+  (0.0ms) rollback transaction
6359
+  (0.0ms) begin transaction
6360
+ ---------------------------------------------
6361
+ ActiveModelTest: test_value_with_count_config
6362
+ ---------------------------------------------
6363
+  (0.0ms) rollback transaction
6364
+  (0.0ms) begin transaction
6365
+ ---------------------------------------------------
6366
+ ActiveModelTest: test_resolution_for_numeric_values
6367
+ ---------------------------------------------------
6368
+  (0.0ms) rollback transaction
6369
+  (0.0ms) begin transaction
6370
+ ------------------------------------------------
6371
+ ActiveModelTest: test_value_without_count_config
6372
+ ------------------------------------------------
6373
+  (0.0ms) rollback transaction
6374
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
6375
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
6376
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
6377
+  (0.1ms) begin transaction
6378
+ -----------------------------------------------------
6379
+ ActiveModelTest: test_mime_type_definition_with_a_dot
6380
+ -----------------------------------------------------
6381
+  (0.0ms) rollback transaction
6382
+  (0.0ms) begin transaction
6383
+ ---------------------------------------------------------
6384
+ ActiveModelTest: test_hierarchy_resolution_for_STI_models
6385
+ ---------------------------------------------------------
6386
+  (0.0ms) rollback transaction
6387
+  (0.0ms) begin transaction
6388
+ ---------------------------------------------------
6389
+ ActiveModelTest: test_resolution_for_numeric_values
6390
+ ---------------------------------------------------
6391
+  (0.0ms) rollback transaction
6392
+  (0.0ms) begin transaction
6393
+ --------------------------------------------------
6394
+ ActiveModelTest: test_resolution_of_boolean_values
6395
+ --------------------------------------------------
6396
+  (0.0ms) rollback transaction
6397
+  (0.0ms) begin transaction
6398
+ ---------------------------------------------
6399
+ ActiveModelTest: test_value_with_count_config
6400
+ ---------------------------------------------
6401
+  (0.0ms) rollback transaction
6402
+  (0.0ms) begin transaction
6403
+ ------------------------------------------------
6404
+ ActiveModelTest: test_value_without_count_config
6405
+ ------------------------------------------------
6406
+  (0.0ms) rollback transaction
6407
+  (0.0ms) begin transaction
6408
+ ----------------------------------------------------------
6409
+ ActiveRecordTest: test_hierarchy_resolution_for_STI_models
6410
+ ----------------------------------------------------------
6411
+  (0.0ms) rollback transaction
6412
+  (0.0ms) begin transaction
6413
+ -------------------------------------------
6414
+ ActiveRecordTest: test_resolution_for_enums
6415
+ -------------------------------------------
6416
+  (0.1ms) rollback transaction
6417
+  (0.0ms) begin transaction
6418
+ --------------------------------------------------
6419
+ ActiveRecordTest: test_attribute_with_count_config
6420
+ --------------------------------------------------
6421
+  (0.0ms) rollback transaction
6422
+  (0.0ms) begin transaction
6423
+ -----------------------------------------------------
6424
+ ActiveRecordTest: test_attribute_without_count_config
6425
+ -----------------------------------------------------
6426
+  (0.0ms) rollback transaction
6427
+  (0.0ms) begin transaction
6428
+ --------------------------------------------------
6429
+ ActiveRecordTest: test_resolution_for_associations
6430
+ --------------------------------------------------
6431
+  (0.0ms) rollback transaction
6432
+  (0.0ms) begin transaction
6433
+ ------------------------------------------------------
6434
+ ActiveRecordTest: test_mime_type_definition_with_a_dot
6435
+ ------------------------------------------------------
6436
+  (0.0ms) rollback transaction
6437
+  (0.0ms) begin transaction
6438
+ ----------------------------------------------------
6439
+ ActiveRecordTest: test_resolution_for_numeric_values
6440
+ ----------------------------------------------------
6441
+  (0.0ms) rollback transaction
6442
+  (0.0ms) begin transaction
6443
+ ---------------------------------------------------
6444
+ ActiveRecordTest: test_resolution_of_boolean_values
6445
+ ---------------------------------------------------
6446
+  (0.0ms) rollback transaction
6447
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
6448
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
6449
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
6450
+  (0.0ms) begin transaction
6451
+ --------------------------------------------------
6452
+ ActiveRecordTest: test_attribute_with_count_config
6453
+ --------------------------------------------------
6454
+  (0.0ms) rollback transaction
6455
+  (0.0ms) begin transaction
6456
+ ---------------------------------------------------
6457
+ ActiveRecordTest: test_resolution_of_boolean_values
6458
+ ---------------------------------------------------
6459
+  (0.0ms) rollback transaction
6460
+  (0.0ms) begin transaction
6461
+ ------------------------------------------------------
6462
+ ActiveRecordTest: test_mime_type_definition_with_a_dot
6463
+ ------------------------------------------------------
6464
+  (0.0ms) rollback transaction
6465
+  (0.0ms) begin transaction
6466
+ --------------------------------------------------
6467
+ ActiveRecordTest: test_resolution_for_associations
6468
+ --------------------------------------------------
6469
+  (0.0ms) rollback transaction
6470
+  (0.0ms) begin transaction
6471
+ ----------------------------------------------------
6472
+ ActiveRecordTest: test_resolution_for_numeric_values
6473
+ ----------------------------------------------------
6474
+  (0.0ms) rollback transaction
6475
+  (0.0ms) begin transaction
6476
+ ----------------------------------------------------------
6477
+ ActiveRecordTest: test_hierarchy_resolution_for_STI_models
6478
+ ----------------------------------------------------------
6479
+  (0.0ms) rollback transaction
6480
+  (0.0ms) begin transaction
6481
+ -----------------------------------------------------
6482
+ ActiveRecordTest: test_attribute_without_count_config
6483
+ -----------------------------------------------------
6484
+  (0.0ms) rollback transaction
6485
+  (0.0ms) begin transaction
6486
+ -------------------------------------------
6487
+ ActiveRecordTest: test_resolution_for_enums
6488
+ -------------------------------------------
6489
+  (0.0ms) rollback transaction
6490
+  (0.0ms) begin transaction
6491
+ -----------------------------------------------------
6492
+ ActiveModelTest: test_mime_type_definition_with_a_dot
6493
+ -----------------------------------------------------
6494
+  (0.0ms) rollback transaction
6495
+  (0.0ms) begin transaction
6496
+ --------------------------------------------------
6497
+ ActiveModelTest: test_resolution_of_boolean_values
6498
+ --------------------------------------------------
6499
+  (2.6ms) rollback transaction
6500
+  (0.0ms) begin transaction
6501
+ ---------------------------------------------
6502
+ ActiveModelTest: test_value_with_count_config
6503
+ ---------------------------------------------
6504
+  (0.0ms) rollback transaction
6505
+  (0.0ms) begin transaction
6506
+ ---------------------------------------------------------
6507
+ ActiveModelTest: test_hierarchy_resolution_for_STI_models
6508
+ ---------------------------------------------------------
6509
+  (0.0ms) rollback transaction
6510
+  (0.0ms) begin transaction
6511
+ ------------------------------------------------
6512
+ ActiveModelTest: test_value_without_count_config
6513
+ ------------------------------------------------
6514
+  (0.0ms) rollback transaction
6515
+  (0.0ms) begin transaction
6516
+ ---------------------------------------------------
6517
+ ActiveModelTest: test_resolution_for_numeric_values
6518
+ ---------------------------------------------------
6519
+  (0.0ms) rollback transaction
6520
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
6521
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
6522
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
6523
+  (0.0ms) begin transaction
6524
+ -------------------------------------------
6525
+ ActiveRecordTest: test_resolution_for_enums
6526
+ -------------------------------------------
6527
+  (0.0ms) rollback transaction
6528
+  (0.0ms) begin transaction
6529
+ -----------------------------------------------------
6530
+ ActiveRecordTest: test_attribute_without_count_config
6531
+ -----------------------------------------------------
6532
+  (0.0ms) rollback transaction
6533
+  (0.0ms) begin transaction
6534
+ ----------------------------------------------------------
6535
+ ActiveRecordTest: test_hierarchy_resolution_for_STI_models
6536
+ ----------------------------------------------------------
6537
+  (0.0ms) rollback transaction
6538
+  (0.0ms) begin transaction
6539
+ ------------------------------------------------------
6540
+ ActiveRecordTest: test_mime_type_definition_with_a_dot
6541
+ ------------------------------------------------------
6542
+  (0.0ms) rollback transaction
6543
+  (0.0ms) begin transaction
6544
+ --------------------------------------------------
6545
+ ActiveRecordTest: test_resolution_for_associations
6546
+ --------------------------------------------------
6547
+  (0.0ms) rollback transaction
6548
+  (0.0ms) begin transaction
6549
+ ----------------------------------------------------
6550
+ ActiveRecordTest: test_resolution_for_numeric_values
6551
+ ----------------------------------------------------
6552
+  (0.0ms) rollback transaction
6553
+  (0.0ms) begin transaction
6554
+ ---------------------------------------------------
6555
+ ActiveRecordTest: test_resolution_of_boolean_values
6556
+ ---------------------------------------------------
6557
+  (0.1ms) rollback transaction
6558
+  (0.0ms) begin transaction
6559
+ --------------------------------------------------
6560
+ ActiveRecordTest: test_attribute_with_count_config
6561
+ --------------------------------------------------
6562
+  (0.0ms) rollback transaction
6563
+  (0.0ms) begin transaction
6564
+ ---------------------------------------------------
6565
+ ActiveModelTest: test_resolution_for_numeric_values
6566
+ ---------------------------------------------------
6567
+  (0.0ms) rollback transaction
6568
+  (0.0ms) begin transaction
6569
+ ------------------------------------------------
6570
+ ActiveModelTest: test_value_without_count_config
6571
+ ------------------------------------------------
6572
+  (0.0ms) rollback transaction
6573
+  (0.0ms) begin transaction
6574
+ ---------------------------------------------------------
6575
+ ActiveModelTest: test_hierarchy_resolution_for_STI_models
6576
+ ---------------------------------------------------------
6577
+  (0.0ms) rollback transaction
6578
+  (0.0ms) begin transaction
6579
+ ---------------------------------------------
6580
+ ActiveModelTest: test_value_with_count_config
6581
+ ---------------------------------------------
6582
+  (0.0ms) rollback transaction
6583
+  (0.0ms) begin transaction
6584
+ -----------------------------------------------------
6585
+ ActiveModelTest: test_mime_type_definition_with_a_dot
6586
+ -----------------------------------------------------
6587
+  (0.0ms) rollback transaction
6588
+  (0.0ms) begin transaction
6589
+ --------------------------------------------------
6590
+ ActiveModelTest: test_resolution_of_boolean_values
6591
+ --------------------------------------------------
6592
+  (0.0ms) rollback transaction
6593
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
6594
+  (99.3ms) CREATE TABLE "boolean_models" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "boolean_field" boolean, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
6595
+  (22.9ms) CREATE TABLE "enum_models" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "status" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
6596
+  (33.2ms) CREATE TABLE "lexicons" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
6597
+  (28.4ms) CREATE TABLE "numeric_models" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "integer_field" integer, "decimal_field" decimal, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
6598
+  (52.7ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "type" varchar, "field" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
6599
+  (148.0ms) CREATE TABLE "the_answers" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "ultimate_truth" varchar, "lexicon_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
6600
+  (0.1ms) select sqlite_version(*)
6601
+  (480.7ms) CREATE INDEX "index_the_answers_on_lexicon_id" ON "the_answers" ("lexicon_id")
6602
+  (86.7ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
6603
+  (23.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
6604
+  (0.1ms) SELECT version FROM "schema_migrations"
6605
+  (21.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150131170613')
6606
+  (22.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20150127220502')
6607
+  (22.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20150131161322')
6608
+  (144.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20150131164609')
6609
+  (16.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20150131162551')
6610
+  (16.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20150131153819')
6611
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
6612
+  (0.0ms) begin transaction
6613
+ -----------------------------------------------------
6614
+ ActiveModelTest: test_mime_type_definition_with_a_dot
6615
+ -----------------------------------------------------
6616
+  (0.0ms) rollback transaction
6617
+  (0.0ms) begin transaction
6618
+ ---------------------------------------------------
6619
+ ActiveModelTest: test_resolution_for_numeric_values
6620
+ ---------------------------------------------------
6621
+  (0.0ms) rollback transaction
6622
+  (0.0ms) begin transaction
6623
+ ------------------------------------------------
6624
+ ActiveModelTest: test_value_without_count_config
6625
+ ------------------------------------------------
6626
+  (0.0ms) rollback transaction
6627
+  (0.0ms) begin transaction
6628
+ ---------------------------------------------
6629
+ ActiveModelTest: test_value_with_count_config
6630
+ ---------------------------------------------
6631
+  (0.0ms) rollback transaction
6632
+  (0.0ms) begin transaction
6633
+ ---------------------------------------------------------
6634
+ ActiveModelTest: test_hierarchy_resolution_for_STI_models
6635
+ ---------------------------------------------------------
6636
+  (0.0ms) rollback transaction
6637
+  (0.0ms) begin transaction
6638
+ --------------------------------------------------
6639
+ ActiveModelTest: test_resolution_of_boolean_values
6640
+ --------------------------------------------------
6641
+  (0.0ms) rollback transaction
6642
+  (0.0ms) begin transaction
6643
+ ------------------------------------------------------
6644
+ ActiveRecordTest: test_mime_type_definition_with_a_dot
6645
+ ------------------------------------------------------
6646
+  (0.0ms) rollback transaction
6647
+  (0.0ms) begin transaction
6648
+ -------------------------------------------
6649
+ ActiveRecordTest: test_resolution_for_enums
6650
+ -------------------------------------------
6651
+  (0.0ms) rollback transaction
6652
+  (0.0ms) begin transaction
6653
+ ----------------------------------------------------
6654
+ ActiveRecordTest: test_resolution_for_numeric_values
6655
+ ----------------------------------------------------
6656
+  (0.0ms) rollback transaction
6657
+  (0.0ms) begin transaction
6658
+ ---------------------------------------------------
6659
+ ActiveRecordTest: test_resolution_of_boolean_values
6660
+ ---------------------------------------------------
6661
+  (0.0ms) rollback transaction
6662
+  (0.0ms) begin transaction
6663
+ --------------------------------------------------
6664
+ ActiveRecordTest: test_attribute_with_count_config
6665
+ --------------------------------------------------
6666
+  (0.0ms) rollback transaction
6667
+  (0.0ms) begin transaction
6668
+ ----------------------------------------------------------
6669
+ ActiveRecordTest: test_hierarchy_resolution_for_STI_models
6670
+ ----------------------------------------------------------
6671
+  (0.0ms) rollback transaction
6672
+  (0.0ms) begin transaction
6673
+ -----------------------------------------------------
6674
+ ActiveRecordTest: test_attribute_without_count_config
6675
+ -----------------------------------------------------
6676
+  (0.0ms) rollback transaction
6677
+  (0.0ms) begin transaction
6678
+ --------------------------------------------------
6679
+ ActiveRecordTest: test_resolution_for_associations
6680
+ --------------------------------------------------
6681
+  (0.0ms) rollback transaction
6682
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
6683
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
6684
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
6685
+  (0.1ms) begin transaction
6686
+ -----------------------------------------------------
6687
+ ActiveModelTest: test_mime_type_definition_with_a_dot
6688
+ -----------------------------------------------------
6689
+  (0.0ms) rollback transaction
6690
+  (0.0ms) begin transaction
6691
+ ---------------------------------------------
6692
+ ActiveModelTest: test_value_with_count_config
6693
+ ---------------------------------------------
6694
+  (0.0ms) rollback transaction
6695
+  (0.0ms) begin transaction
6696
+ ------------------------------------------------
6697
+ ActiveModelTest: test_value_without_count_config
6698
+ ------------------------------------------------
6699
+  (0.0ms) rollback transaction
6700
+  (0.0ms) begin transaction
6701
+ ---------------------------------------------------------
6702
+ ActiveModelTest: test_hierarchy_resolution_for_STI_models
6703
+ ---------------------------------------------------------
6704
+  (0.0ms) rollback transaction
6705
+  (0.0ms) begin transaction
6706
+ ---------------------------------------------------
6707
+ ActiveModelTest: test_resolution_for_numeric_values
6708
+ ---------------------------------------------------
6709
+  (0.0ms) rollback transaction
6710
+  (0.0ms) begin transaction
6711
+ --------------------------------------------------
6712
+ ActiveModelTest: test_resolution_of_boolean_values
6713
+ --------------------------------------------------
6714
+  (0.0ms) rollback transaction
6715
+  (0.0ms) begin transaction
6716
+ -----------------------------------------------------
6717
+ ActiveRecordTest: test_attribute_without_count_config
6718
+ -----------------------------------------------------
6719
+  (0.0ms) rollback transaction
6720
+  (0.0ms) begin transaction
6721
+ ---------------------------------------------------
6722
+ ActiveRecordTest: test_resolution_of_boolean_values
6723
+ ---------------------------------------------------
6724
+  (0.0ms) rollback transaction
6725
+  (0.0ms) begin transaction
6726
+ ----------------------------------------------------------
6727
+ ActiveRecordTest: test_hierarchy_resolution_for_STI_models
6728
+ ----------------------------------------------------------
6729
+  (0.0ms) rollback transaction
6730
+  (0.0ms) begin transaction
6731
+ --------------------------------------------------
6732
+ ActiveRecordTest: test_resolution_for_associations
6733
+ --------------------------------------------------
6734
+  (0.1ms) rollback transaction
6735
+  (0.1ms) begin transaction
6736
+ --------------------------------------------------
6737
+ ActiveRecordTest: test_attribute_with_count_config
6738
+ --------------------------------------------------
6739
+  (0.0ms) rollback transaction
6740
+  (0.0ms) begin transaction
6741
+ ----------------------------------------------------
6742
+ ActiveRecordTest: test_resolution_for_numeric_values
6743
+ ----------------------------------------------------
6744
+  (0.0ms) rollback transaction
6745
+  (0.0ms) begin transaction
6746
+ ------------------------------------------------------
6747
+ ActiveRecordTest: test_mime_type_definition_with_a_dot
6748
+ ------------------------------------------------------
6749
+  (0.0ms) rollback transaction
6750
+  (0.0ms) begin transaction
6751
+ -------------------------------------------
6752
+ ActiveRecordTest: test_resolution_for_enums
6753
+ -------------------------------------------
6754
+  (0.1ms) rollback transaction
6755
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
6756
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
6757
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
6758
+  (0.0ms) begin transaction
6759
+ ------------------------------------------------
6760
+ ActiveModelTest: test_value_without_count_config
6761
+ ------------------------------------------------
6762
+  (0.0ms) rollback transaction
6763
+  (0.0ms) begin transaction
6764
+ -----------------------------------------------------
6765
+ ActiveModelTest: test_mime_type_definition_with_a_dot
6766
+ -----------------------------------------------------
6767
+  (0.0ms) rollback transaction
6768
+  (0.0ms) begin transaction
6769
+ ---------------------------------------------------
6770
+ ActiveModelTest: test_resolution_for_numeric_values
6771
+ ---------------------------------------------------
6772
+  (0.0ms) rollback transaction
6773
+  (0.0ms) begin transaction
6774
+ ---------------------------------------------------------
6775
+ ActiveModelTest: test_hierarchy_resolution_for_STI_models
6776
+ ---------------------------------------------------------
6777
+  (0.0ms) rollback transaction
6778
+  (0.0ms) begin transaction
6779
+ --------------------------------------------------
6780
+ ActiveModelTest: test_resolution_of_boolean_values
6781
+ --------------------------------------------------
6782
+  (0.0ms) rollback transaction
6783
+  (0.0ms) begin transaction
6784
+ ---------------------------------------------
6785
+ ActiveModelTest: test_value_with_count_config
6786
+ ---------------------------------------------
6787
+  (0.0ms) rollback transaction
6788
+  (0.0ms) begin transaction
6789
+ --------------------------------------------------
6790
+ ActiveRecordTest: test_attribute_with_count_config
6791
+ --------------------------------------------------
6792
+  (0.0ms) rollback transaction
6793
+  (0.0ms) begin transaction
6794
+ -------------------------------------------
6795
+ ActiveRecordTest: test_resolution_for_enums
6796
+ -------------------------------------------
6797
+  (0.0ms) rollback transaction
6798
+  (0.0ms) begin transaction
6799
+ ---------------------------------------------------
6800
+ ActiveRecordTest: test_resolution_of_boolean_values
6801
+ ---------------------------------------------------
6802
+  (0.0ms) rollback transaction
6803
+  (0.0ms) begin transaction
6804
+ --------------------------------------------------
6805
+ ActiveRecordTest: test_resolution_for_associations
6806
+ --------------------------------------------------
6807
+  (0.0ms) rollback transaction
6808
+  (0.0ms) begin transaction
6809
+ ----------------------------------------------------------
6810
+ ActiveRecordTest: test_hierarchy_resolution_for_STI_models
6811
+ ----------------------------------------------------------
6812
+  (0.1ms) rollback transaction
6813
+  (0.0ms) begin transaction
6814
+ -----------------------------------------------------
6815
+ ActiveRecordTest: test_attribute_without_count_config
6816
+ -----------------------------------------------------
6817
+  (0.0ms) rollback transaction
6818
+  (0.0ms) begin transaction
6819
+ ------------------------------------------------------
6820
+ ActiveRecordTest: test_mime_type_definition_with_a_dot
6821
+ ------------------------------------------------------
6822
+  (0.0ms) rollback transaction
6823
+  (0.0ms) begin transaction
6824
+ ----------------------------------------------------
6825
+ ActiveRecordTest: test_resolution_for_numeric_values
6826
+ ----------------------------------------------------
6827
+  (0.1ms) rollback transaction
6828
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
6829
+  (126.8ms) CREATE TABLE "boolean_models" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "boolean_field" boolean, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
6830
+  (31.2ms) CREATE TABLE "enum_models" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "status" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
6831
+  (28.8ms) CREATE TABLE "lexicons" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
6832
+  (31.5ms) CREATE TABLE "numeric_models" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "integer_field" integer, "decimal_field" decimal, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
6833
+  (148.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "type" varchar, "field" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
6834
+  (463.3ms) CREATE TABLE "the_answers" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "ultimate_truth" varchar, "lexicon_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
6835
+  (0.1ms) select sqlite_version(*)
6836
+  (128.7ms) CREATE INDEX "index_the_answers_on_lexicon_id" ON "the_answers" ("lexicon_id")
6837
+  (21.5ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
6838
+  (31.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
6839
+  (0.1ms) SELECT version FROM "schema_migrations"
6840
+  (21.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150131170613')
6841
+  (33.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20150127220502')
6842
+  (30.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20150131161322')
6843
+  (33.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20150131164609')
6844
+  (45.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150131162551')
6845
+  (159.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20150131153819')
6846
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
6847
+  (0.0ms) begin transaction
6848
+ ---------------------------------------------------
6849
+ ActiveModelTest: test_resolution_for_numeric_values
6850
+ ---------------------------------------------------
6851
+  (0.0ms) rollback transaction
6852
+  (0.0ms) begin transaction
6853
+ ---------------------------------------------------------
6854
+ ActiveModelTest: test_hierarchy_resolution_for_STI_models
6855
+ ---------------------------------------------------------
6856
+  (0.0ms) rollback transaction
6857
+  (0.0ms) begin transaction
6858
+ ---------------------------------------------
6859
+ ActiveModelTest: test_value_with_count_config
6860
+ ---------------------------------------------
6861
+  (0.0ms) rollback transaction
6862
+  (0.0ms) begin transaction
6863
+ -----------------------------------------------------
6864
+ ActiveModelTest: test_mime_type_definition_with_a_dot
6865
+ -----------------------------------------------------
6866
+  (0.0ms) rollback transaction
6867
+  (0.0ms) begin transaction
6868
+ --------------------------------------------------
6869
+ ActiveModelTest: test_resolution_of_boolean_values
6870
+ --------------------------------------------------
6871
+  (0.0ms) rollback transaction
6872
+  (0.0ms) begin transaction
6873
+ ------------------------------------------------
6874
+ ActiveModelTest: test_value_without_count_config
6875
+ ------------------------------------------------
6876
+  (0.0ms) rollback transaction
6877
+  (0.0ms) begin transaction
6878
+ -------------------------------------------
6879
+ ActiveRecordTest: test_resolution_for_enums
6880
+ -------------------------------------------
6881
+  (0.0ms) rollback transaction
6882
+  (0.0ms) begin transaction
6883
+ ---------------------------------------------------
6884
+ ActiveRecordTest: test_resolution_of_boolean_values
6885
+ ---------------------------------------------------
6886
+  (0.0ms) rollback transaction
6887
+  (0.0ms) begin transaction
6888
+ ----------------------------------------------------------
6889
+ ActiveRecordTest: test_hierarchy_resolution_for_STI_models
6890
+ ----------------------------------------------------------
6891
+  (0.0ms) rollback transaction
6892
+  (0.0ms) begin transaction
6893
+ -----------------------------------------------------
6894
+ ActiveRecordTest: test_attribute_without_count_config
6895
+ -----------------------------------------------------
6896
+  (0.0ms) rollback transaction
6897
+  (0.0ms) begin transaction
6898
+ ------------------------------------------------------
6899
+ ActiveRecordTest: test_mime_type_definition_with_a_dot
6900
+ ------------------------------------------------------
6901
+  (0.0ms) rollback transaction
6902
+  (0.0ms) begin transaction
6903
+ --------------------------------------------------
6904
+ ActiveRecordTest: test_attribute_with_count_config
6905
+ --------------------------------------------------
6906
+  (0.0ms) rollback transaction
6907
+  (0.0ms) begin transaction
6908
+ --------------------------------------------------
6909
+ ActiveRecordTest: test_resolution_for_associations
6910
+ --------------------------------------------------
6911
+  (0.0ms) rollback transaction
6912
+  (0.0ms) begin transaction
6913
+ ----------------------------------------------------
6914
+ ActiveRecordTest: test_resolution_for_numeric_values
6915
+ ----------------------------------------------------
6916
+  (0.0ms) rollback transaction
6917
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
6918
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
6919
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
6920
+  (0.1ms) begin transaction
6921
+ ---------------------------------------------------------
6922
+ ActiveModelTest: test_hierarchy_resolution_for_STI_models
6923
+ ---------------------------------------------------------
6924
+  (0.0ms) rollback transaction
6925
+  (0.0ms) begin transaction
6926
+ ---------------------------------------------
6927
+ ActiveModelTest: test_value_with_count_config
6928
+ ---------------------------------------------
6929
+  (0.0ms) rollback transaction
6930
+  (0.0ms) begin transaction
6931
+ ---------------------------------------------------
6932
+ ActiveModelTest: test_resolution_for_numeric_values
6933
+ ---------------------------------------------------
6934
+  (0.0ms) rollback transaction
6935
+  (0.0ms) begin transaction
6936
+ -----------------------------------------------------
6937
+ ActiveModelTest: test_mime_type_definition_with_a_dot
6938
+ -----------------------------------------------------
6939
+  (0.0ms) rollback transaction
6940
+  (0.0ms) begin transaction
6941
+ --------------------------------------------------
6942
+ ActiveModelTest: test_resolution_of_boolean_values
6943
+ --------------------------------------------------
6944
+  (0.0ms) rollback transaction
6945
+  (0.0ms) begin transaction
6946
+ ------------------------------------------------
6947
+ ActiveModelTest: test_value_without_count_config
6948
+ ------------------------------------------------
6949
+  (0.0ms) rollback transaction
6950
+  (0.0ms) begin transaction
6951
+ ----------------------------------------------------
6952
+ ActiveRecordTest: test_resolution_for_numeric_values
6953
+ ----------------------------------------------------
6954
+  (0.0ms) rollback transaction
6955
+  (0.0ms) begin transaction
6956
+ -------------------------------------------
6957
+ ActiveRecordTest: test_resolution_for_enums
6958
+ -------------------------------------------
6959
+  (0.0ms) rollback transaction
6960
+  (0.0ms) begin transaction
6961
+ -----------------------------------------------------
6962
+ ActiveRecordTest: test_attribute_without_count_config
6963
+ -----------------------------------------------------
6964
+  (0.0ms) rollback transaction
6965
+  (0.0ms) begin transaction
6966
+ --------------------------------------------------
6967
+ ActiveRecordTest: test_resolution_for_associations
6968
+ --------------------------------------------------
6969
+  (0.0ms) rollback transaction
6970
+  (0.0ms) begin transaction
6971
+ --------------------------------------------------
6972
+ ActiveRecordTest: test_attribute_with_count_config
6973
+ --------------------------------------------------
6974
+  (0.0ms) rollback transaction
6975
+  (0.0ms) begin transaction
6976
+ ----------------------------------------------------------
6977
+ ActiveRecordTest: test_hierarchy_resolution_for_STI_models
6978
+ ----------------------------------------------------------
6979
+  (0.1ms) rollback transaction
6980
+  (0.0ms) begin transaction
6981
+ ------------------------------------------------------
6982
+ ActiveRecordTest: test_mime_type_definition_with_a_dot
6983
+ ------------------------------------------------------
6984
+  (0.0ms) rollback transaction
6985
+  (0.0ms) begin transaction
6986
+ ---------------------------------------------------
6987
+ ActiveRecordTest: test_resolution_of_boolean_values
6988
+ ---------------------------------------------------
6989
+  (0.0ms) rollback transaction
6990
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
6991
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
6992
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
6993
+  (0.1ms) begin transaction
6994
+ -----------------------------------------------------
6995
+ ActiveRecordTest: test_attribute_without_count_config
6996
+ -----------------------------------------------------
6997
+  (0.0ms) rollback transaction
6998
+  (0.0ms) begin transaction
6999
+ ----------------------------------------------------
7000
+ ActiveRecordTest: test_resolution_for_numeric_values
7001
+ ----------------------------------------------------
7002
+  (0.0ms) rollback transaction
7003
+  (0.0ms) begin transaction
7004
+ ---------------------------------------------------
7005
+ ActiveRecordTest: test_resolution_of_boolean_values
7006
+ ---------------------------------------------------
7007
+  (0.0ms) rollback transaction
7008
+  (0.0ms) begin transaction
7009
+ ----------------------------------------------------------
7010
+ ActiveRecordTest: test_hierarchy_resolution_for_STI_models
7011
+ ----------------------------------------------------------
7012
+  (0.0ms) rollback transaction
7013
+  (0.0ms) begin transaction
7014
+ --------------------------------------------------
7015
+ ActiveRecordTest: test_resolution_for_associations
7016
+ --------------------------------------------------
7017
+  (0.0ms) rollback transaction
7018
+  (0.0ms) begin transaction
7019
+ --------------------------------------------------
7020
+ ActiveRecordTest: test_attribute_with_count_config
7021
+ --------------------------------------------------
7022
+  (0.0ms) rollback transaction
7023
+  (0.0ms) begin transaction
7024
+ -------------------------------------------
7025
+ ActiveRecordTest: test_resolution_for_enums
7026
+ -------------------------------------------
7027
+  (0.0ms) rollback transaction
7028
+  (0.0ms) begin transaction
7029
+ ------------------------------------------------------
7030
+ ActiveRecordTest: test_mime_type_definition_with_a_dot
7031
+ ------------------------------------------------------
7032
+  (0.0ms) rollback transaction
7033
+  (0.0ms) begin transaction
7034
+ ------------------------------------------------
7035
+ ActiveModelTest: test_value_without_count_config
7036
+ ------------------------------------------------
7037
+  (0.0ms) rollback transaction
7038
+  (0.0ms) begin transaction
7039
+ -----------------------------------------------------
7040
+ ActiveModelTest: test_mime_type_definition_with_a_dot
7041
+ -----------------------------------------------------
7042
+  (0.0ms) rollback transaction
7043
+  (0.0ms) begin transaction
7044
+ --------------------------------------------------
7045
+ ActiveModelTest: test_resolution_of_boolean_values
7046
+ --------------------------------------------------
7047
+  (0.0ms) rollback transaction
7048
+  (0.0ms) begin transaction
7049
+ ---------------------------------------------
7050
+ ActiveModelTest: test_value_with_count_config
7051
+ ---------------------------------------------
7052
+  (0.0ms) rollback transaction
7053
+  (0.0ms) begin transaction
7054
+ ---------------------------------------------------------
7055
+ ActiveModelTest: test_hierarchy_resolution_for_STI_models
7056
+ ---------------------------------------------------------
7057
+  (0.0ms) rollback transaction
7058
+  (0.0ms) begin transaction
7059
+ ---------------------------------------------------
7060
+ ActiveModelTest: test_resolution_for_numeric_values
7061
+ ---------------------------------------------------
7062
+  (0.0ms) rollback transaction
7063
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
7064
+  (108.9ms) CREATE TABLE "boolean_models" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "boolean_field" boolean, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
7065
+  (20.6ms) CREATE TABLE "enum_models" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "status" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
7066
+  (177.2ms) CREATE TABLE "lexicons" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
7067
+  (155.2ms) CREATE TABLE "numeric_models" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "integer_field" integer, "decimal_field" decimal, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
7068
+  (453.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "type" varchar, "field" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
7069
+  (127.8ms) CREATE TABLE "the_answers" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "ultimate_truth" varchar, "lexicon_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
7070
+  (0.1ms) select sqlite_version(*)
7071
+  (71.0ms) CREATE INDEX "index_the_answers_on_lexicon_id" ON "the_answers" ("lexicon_id")
7072
+  (30.9ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
7073
+  (28.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
7074
+  (0.1ms) SELECT version FROM "schema_migrations"
7075
+  (34.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20150131170613')
7076
+  (180.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20150127220502')
7077
+  (27.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150131161322')
7078
+  (271.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20150131164609')
7079
+  (211.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20150131162551')
7080
+  (21.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20150131153819')
7081
+ ActiveRecord::SchemaMigration Load (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
7082
+  (0.1ms) begin transaction
7083
+ --------------------------------------------------
7084
+ ActiveRecordTest: test_resolution_for_associations
7085
+ --------------------------------------------------
7086
+  (0.1ms) rollback transaction
7087
+  (0.0ms) begin transaction
7088
+ -------------------------------------------
7089
+ ActiveRecordTest: test_resolution_for_enums
7090
+ -------------------------------------------
7091
+  (0.0ms) rollback transaction
7092
+  (0.0ms) begin transaction
7093
+ ---------------------------------------------------
7094
+ ActiveRecordTest: test_resolution_of_boolean_values
7095
+ ---------------------------------------------------
7096
+  (0.0ms) rollback transaction
7097
+  (0.0ms) begin transaction
7098
+ --------------------------------------------------
7099
+ ActiveRecordTest: test_attribute_with_count_config
7100
+ --------------------------------------------------
7101
+  (0.0ms) rollback transaction
7102
+  (0.0ms) begin transaction
7103
+ ----------------------------------------------------
7104
+ ActiveRecordTest: test_resolution_for_numeric_values
7105
+ ----------------------------------------------------
7106
+  (0.0ms) rollback transaction
7107
+  (0.0ms) begin transaction
7108
+ -----------------------------------------------------
7109
+ ActiveRecordTest: test_attribute_without_count_config
7110
+ -----------------------------------------------------
7111
+  (0.0ms) rollback transaction
7112
+  (0.0ms) begin transaction
7113
+ ----------------------------------------------------------
7114
+ ActiveRecordTest: test_hierarchy_resolution_for_STI_models
7115
+ ----------------------------------------------------------
7116
+  (0.1ms) rollback transaction
7117
+  (0.0ms) begin transaction
7118
+ ------------------------------------------------------
7119
+ ActiveRecordTest: test_mime_type_definition_with_a_dot
7120
+ ------------------------------------------------------
7121
+  (0.0ms) rollback transaction
7122
+  (0.0ms) begin transaction
7123
+ ---------------------------------------------------------
7124
+ ActiveModelTest: test_hierarchy_resolution_for_STI_models
7125
+ ---------------------------------------------------------
7126
+  (0.0ms) rollback transaction
7127
+  (0.0ms) begin transaction
7128
+ ---------------------------------------------------
7129
+ ActiveModelTest: test_resolution_for_numeric_values
7130
+ ---------------------------------------------------
7131
+  (0.0ms) rollback transaction
7132
+  (0.0ms) begin transaction
7133
+ ------------------------------------------------
7134
+ ActiveModelTest: test_value_without_count_config
7135
+ ------------------------------------------------
7136
+  (0.0ms) rollback transaction
7137
+  (0.0ms) begin transaction
7138
+ --------------------------------------------------
7139
+ ActiveModelTest: test_resolution_of_boolean_values
7140
+ --------------------------------------------------
7141
+  (0.0ms) rollback transaction
7142
+  (0.0ms) begin transaction
7143
+ ---------------------------------------------
7144
+ ActiveModelTest: test_value_with_count_config
7145
+ ---------------------------------------------
7146
+  (0.0ms) rollback transaction
7147
+  (0.0ms) begin transaction
7148
+ -----------------------------------------------------
7149
+ ActiveModelTest: test_mime_type_definition_with_a_dot
7150
+ -----------------------------------------------------
7151
+  (0.0ms) rollback transaction
7152
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
7153
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
7154
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
7155
+  (0.1ms) begin transaction
7156
+ ---------------------------------------------------
7157
+ ActiveModelTest: test_resolution_for_numeric_values
7158
+ ---------------------------------------------------
7159
+  (0.0ms) rollback transaction
7160
+  (0.0ms) begin transaction
7161
+ ---------------------------------------------------------
7162
+ ActiveModelTest: test_hierarchy_resolution_for_STI_models
7163
+ ---------------------------------------------------------
7164
+  (0.0ms) rollback transaction
7165
+  (0.0ms) begin transaction
7166
+ ------------------------------------------------
7167
+ ActiveModelTest: test_value_without_count_config
7168
+ ------------------------------------------------
7169
+  (0.0ms) rollback transaction
7170
+  (0.0ms) begin transaction
7171
+ -----------------------------------------------------
7172
+ ActiveModelTest: test_mime_type_definition_with_a_dot
7173
+ -----------------------------------------------------
7174
+  (0.0ms) rollback transaction
7175
+  (0.0ms) begin transaction
7176
+ ---------------------------------------------
7177
+ ActiveModelTest: test_value_with_count_config
7178
+ ---------------------------------------------
7179
+  (0.0ms) rollback transaction
7180
+  (0.0ms) begin transaction
7181
+ --------------------------------------------------
7182
+ ActiveModelTest: test_resolution_of_boolean_values
7183
+ --------------------------------------------------
7184
+  (0.0ms) rollback transaction
7185
+  (0.0ms) begin transaction
7186
+ ---------------------------------------------------
7187
+ ActiveRecordTest: test_resolution_of_boolean_values
7188
+ ---------------------------------------------------
7189
+  (0.0ms) rollback transaction
7190
+  (0.0ms) begin transaction
7191
+ ----------------------------------------------------
7192
+ ActiveRecordTest: test_resolution_for_numeric_values
7193
+ ----------------------------------------------------
7194
+  (0.0ms) rollback transaction
7195
+  (0.1ms) begin transaction
7196
+ -----------------------------------------------------
7197
+ ActiveRecordTest: test_attribute_without_count_config
7198
+ -----------------------------------------------------
7199
+  (0.0ms) rollback transaction
7200
+  (0.0ms) begin transaction
7201
+ ----------------------------------------------------------
7202
+ ActiveRecordTest: test_hierarchy_resolution_for_STI_models
7203
+ ----------------------------------------------------------
7204
+  (0.0ms) rollback transaction
7205
+  (0.0ms) begin transaction
7206
+ ------------------------------------------------------
7207
+ ActiveRecordTest: test_mime_type_definition_with_a_dot
7208
+ ------------------------------------------------------
7209
+  (0.0ms) rollback transaction
7210
+  (0.0ms) begin transaction
7211
+ --------------------------------------------------
7212
+ ActiveRecordTest: test_resolution_for_associations
7213
+ --------------------------------------------------
7214
+  (0.1ms) rollback transaction
7215
+  (0.0ms) begin transaction
7216
+ --------------------------------------------------
7217
+ ActiveRecordTest: test_attribute_with_count_config
7218
+ --------------------------------------------------
7219
+  (0.0ms) rollback transaction
7220
+  (0.0ms) begin transaction
7221
+ -------------------------------------------
7222
+ ActiveRecordTest: test_resolution_for_enums
7223
+ -------------------------------------------
7224
+  (0.0ms) rollback transaction
7225
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
7226
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
7227
+  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
7228
+  (0.1ms) begin transaction
7229
+ ---------------------------------------------
7230
+ ActiveModelTest: test_value_with_count_config
7231
+ ---------------------------------------------
7232
+  (0.0ms) rollback transaction
7233
+  (0.0ms) begin transaction
7234
+ -----------------------------------------------------
7235
+ ActiveModelTest: test_mime_type_definition_with_a_dot
7236
+ -----------------------------------------------------
7237
+  (0.0ms) rollback transaction
7238
+  (0.0ms) begin transaction
7239
+ --------------------------------------------------
7240
+ ActiveModelTest: test_resolution_of_boolean_values
7241
+ --------------------------------------------------
7242
+  (0.0ms) rollback transaction
7243
+  (0.0ms) begin transaction
7244
+ ---------------------------------------------------------
7245
+ ActiveModelTest: test_hierarchy_resolution_for_STI_models
7246
+ ---------------------------------------------------------
7247
+  (0.0ms) rollback transaction
7248
+  (0.0ms) begin transaction
7249
+ ---------------------------------------------------
7250
+ ActiveModelTest: test_resolution_for_numeric_values
7251
+ ---------------------------------------------------
7252
+  (0.0ms) rollback transaction
7253
+  (0.0ms) begin transaction
7254
+ ------------------------------------------------
7255
+ ActiveModelTest: test_value_without_count_config
7256
+ ------------------------------------------------
7257
+  (0.0ms) rollback transaction
7258
+  (0.0ms) begin transaction
7259
+ ------------------------------------------------------
7260
+ ActiveRecordTest: test_mime_type_definition_with_a_dot
7261
+ ------------------------------------------------------
7262
+  (0.0ms) rollback transaction
7263
+  (0.0ms) begin transaction
7264
+ --------------------------------------------------
7265
+ ActiveRecordTest: test_resolution_for_associations
7266
+ --------------------------------------------------
7267
+  (0.1ms) rollback transaction
7268
+  (0.0ms) begin transaction
7269
+ ----------------------------------------------------
7270
+ ActiveRecordTest: test_resolution_for_numeric_values
7271
+ ----------------------------------------------------
7272
+  (0.1ms) rollback transaction
7273
+  (0.0ms) begin transaction
7274
+ ---------------------------------------------------
7275
+ ActiveRecordTest: test_resolution_of_boolean_values
7276
+ ---------------------------------------------------
7277
+  (0.0ms) rollback transaction
7278
+  (0.0ms) begin transaction
7279
+ ----------------------------------------------------------
7280
+ ActiveRecordTest: test_hierarchy_resolution_for_STI_models
7281
+ ----------------------------------------------------------
7282
+  (0.1ms) rollback transaction
7283
+  (0.0ms) begin transaction
7284
+ -------------------------------------------
7285
+ ActiveRecordTest: test_resolution_for_enums
7286
+ -------------------------------------------
7287
+  (0.0ms) rollback transaction
7288
+  (0.0ms) begin transaction
7289
+ --------------------------------------------------
7290
+ ActiveRecordTest: test_attribute_with_count_config
7291
+ --------------------------------------------------
7292
+  (0.0ms) rollback transaction
7293
+  (0.0ms) begin transaction
7294
+ -----------------------------------------------------
7295
+ ActiveRecordTest: test_attribute_without_count_config
7296
+ -----------------------------------------------------
7297
+  (0.0ms) rollback transaction
7298
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
7299
+  (51.5ms) CREATE TABLE "boolean_models" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "boolean_field" boolean, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
7300
+  (22.9ms) CREATE TABLE "enum_models" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "status" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
7301
+  (30.3ms) CREATE TABLE "lexicons" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
7302
+  (28.6ms) CREATE TABLE "numeric_models" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "integer_field" integer, "decimal_field" decimal, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
7303
+  (144.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "type" varchar, "field" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
7304
+  (27.3ms) CREATE TABLE "the_answers" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "ultimate_truth" varchar, "lexicon_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
7305
+  (0.1ms) select sqlite_version(*)
7306
+  (449.6ms) CREATE INDEX "index_the_answers_on_lexicon_id" ON "the_answers" ("lexicon_id")
7307
+  (64.5ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
7308
+  (56.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
7309
+  (0.1ms) SELECT version FROM "schema_migrations"
7310
+  (184.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20150131170613')
7311
+  (19.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20150127220502')
7312
+  (22.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20150131161322')
7313
+  (188.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150131164609')
7314
+  (16.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150131162551')
7315
+  (16.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20150131153819')
7316
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
7317
+  (0.1ms) begin transaction
7318
+ ---------------------------------------------------------
7319
+ ActiveModelTest: test_hierarchy_resolution_for_STI_models
7320
+ ---------------------------------------------------------
7321
+  (0.1ms) rollback transaction
7322
+  (0.0ms) begin transaction
7323
+ --------------------------------------------------
7324
+ ActiveModelTest: test_resolution_of_boolean_values
7325
+ --------------------------------------------------
7326
+  (0.0ms) rollback transaction
7327
+  (0.0ms) begin transaction
7328
+ ------------------------------------------------
7329
+ ActiveModelTest: test_value_without_count_config
7330
+ ------------------------------------------------
7331
+  (0.0ms) rollback transaction
7332
+  (0.0ms) begin transaction
7333
+ -----------------------------------------------------
7334
+ ActiveModelTest: test_mime_type_definition_with_a_dot
7335
+ -----------------------------------------------------
7336
+  (0.0ms) rollback transaction
7337
+  (0.0ms) begin transaction
7338
+ ---------------------------------------------------
7339
+ ActiveModelTest: test_resolution_for_numeric_values
7340
+ ---------------------------------------------------
7341
+  (0.0ms) rollback transaction
7342
+  (0.0ms) begin transaction
7343
+ ---------------------------------------------
7344
+ ActiveModelTest: test_value_with_count_config
7345
+ ---------------------------------------------
7346
+  (0.0ms) rollback transaction
7347
+  (0.0ms) begin transaction
7348
+ ---------------------------------------------------
7349
+ ActiveRecordTest: test_resolution_of_boolean_values
7350
+ ---------------------------------------------------
7351
+  (0.0ms) rollback transaction
7352
+  (0.0ms) begin transaction
7353
+ --------------------------------------------------
7354
+ ActiveRecordTest: test_attribute_with_count_config
7355
+ --------------------------------------------------
7356
+  (0.0ms) rollback transaction
7357
+  (0.0ms) begin transaction
7358
+ -----------------------------------------------------
7359
+ ActiveRecordTest: test_attribute_without_count_config
7360
+ -----------------------------------------------------
7361
+  (0.0ms) rollback transaction
7362
+  (0.0ms) begin transaction
7363
+ ----------------------------------------------------------
7364
+ ActiveRecordTest: test_hierarchy_resolution_for_STI_models
7365
+ ----------------------------------------------------------
7366
+  (0.0ms) rollback transaction
7367
+  (0.0ms) begin transaction
7368
+ --------------------------------------------------
7369
+ ActiveRecordTest: test_resolution_for_associations
7370
+ --------------------------------------------------
7371
+  (0.0ms) rollback transaction
7372
+  (0.0ms) begin transaction
7373
+ ------------------------------------------------------
7374
+ ActiveRecordTest: test_mime_type_definition_with_a_dot
7375
+ ------------------------------------------------------
7376
+  (0.0ms) rollback transaction
7377
+  (0.0ms) begin transaction
7378
+ -------------------------------------------
7379
+ ActiveRecordTest: test_resolution_for_enums
7380
+ -------------------------------------------
7381
+  (0.1ms) rollback transaction
7382
+  (0.0ms) begin transaction
7383
+ ----------------------------------------------------
7384
+ ActiveRecordTest: test_resolution_for_numeric_values
7385
+ ----------------------------------------------------
7386
+  (0.0ms) rollback transaction
7387
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
7388
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
7389
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
7390
+  (0.1ms) begin transaction
7391
+ --------------------------------------------------
7392
+ ActiveRecordTest: test_resolution_for_associations
7393
+ --------------------------------------------------
7394
+  (0.1ms) rollback transaction
7395
+  (0.0ms) begin transaction
7396
+ --------------------------------------------------
7397
+ ActiveRecordTest: test_attribute_with_count_config
7398
+ --------------------------------------------------
7399
+  (0.0ms) rollback transaction
7400
+  (0.0ms) begin transaction
7401
+ ------------------------------------------------------
7402
+ ActiveRecordTest: test_mime_type_definition_with_a_dot
7403
+ ------------------------------------------------------
7404
+  (0.0ms) rollback transaction
7405
+  (0.0ms) begin transaction
7406
+ ---------------------------------------------------
7407
+ ActiveRecordTest: test_resolution_of_boolean_values
7408
+ ---------------------------------------------------
7409
+  (0.0ms) rollback transaction
7410
+  (0.0ms) begin transaction
7411
+ -----------------------------------------------------
7412
+ ActiveRecordTest: test_attribute_without_count_config
7413
+ -----------------------------------------------------
7414
+  (0.0ms) rollback transaction
7415
+  (0.0ms) begin transaction
7416
+ -------------------------------------------
7417
+ ActiveRecordTest: test_resolution_for_enums
7418
+ -------------------------------------------
7419
+  (0.0ms) rollback transaction
7420
+  (0.0ms) begin transaction
7421
+ ----------------------------------------------------
7422
+ ActiveRecordTest: test_resolution_for_numeric_values
7423
+ ----------------------------------------------------
7424
+  (0.0ms) rollback transaction
7425
+  (0.0ms) begin transaction
7426
+ ----------------------------------------------------------
7427
+ ActiveRecordTest: test_hierarchy_resolution_for_STI_models
7428
+ ----------------------------------------------------------
7429
+  (0.0ms) rollback transaction
7430
+  (0.0ms) begin transaction
7431
+ ------------------------------------------------
7432
+ ActiveModelTest: test_value_without_count_config
7433
+ ------------------------------------------------
7434
+  (0.0ms) rollback transaction
7435
+  (0.0ms) begin transaction
7436
+ ---------------------------------------------
7437
+ ActiveModelTest: test_value_with_count_config
7438
+ ---------------------------------------------
7439
+  (0.0ms) rollback transaction
7440
+  (0.0ms) begin transaction
7441
+ -----------------------------------------------------
7442
+ ActiveModelTest: test_mime_type_definition_with_a_dot
7443
+ -----------------------------------------------------
7444
+  (0.0ms) rollback transaction
7445
+  (0.0ms) begin transaction
7446
+ ---------------------------------------------------------
7447
+ ActiveModelTest: test_hierarchy_resolution_for_STI_models
7448
+ ---------------------------------------------------------
7449
+  (0.0ms) rollback transaction
7450
+  (0.0ms) begin transaction
7451
+ ---------------------------------------------------
7452
+ ActiveModelTest: test_resolution_for_numeric_values
7453
+ ---------------------------------------------------
7454
+  (0.0ms) rollback transaction
7455
+  (0.0ms) begin transaction
7456
+ --------------------------------------------------
7457
+ ActiveModelTest: test_resolution_of_boolean_values
7458
+ --------------------------------------------------
7459
+  (0.0ms) rollback transaction
7460
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
7461
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
7462
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
7463
+  (0.0ms) begin transaction
7464
+ ------------------------------------------------------
7465
+ ActiveRecordTest: test_mime_type_definition_with_a_dot
7466
+ ------------------------------------------------------
7467
+  (0.1ms) rollback transaction
7468
+  (0.0ms) begin transaction
7469
+ --------------------------------------------------
7470
+ ActiveRecordTest: test_resolution_for_associations
7471
+ --------------------------------------------------
7472
+  (0.0ms) rollback transaction
7473
+  (0.0ms) begin transaction
7474
+ ---------------------------------------------------
7475
+ ActiveRecordTest: test_resolution_of_boolean_values
7476
+ ---------------------------------------------------
7477
+  (0.0ms) rollback transaction
7478
+  (0.0ms) begin transaction
7479
+ ----------------------------------------------------
7480
+ ActiveRecordTest: test_resolution_for_numeric_values
7481
+ ----------------------------------------------------
7482
+  (0.0ms) rollback transaction
7483
+  (0.0ms) begin transaction
7484
+ ----------------------------------------------------------
7485
+ ActiveRecordTest: test_hierarchy_resolution_for_STI_models
7486
+ ----------------------------------------------------------
7487
+  (0.0ms) rollback transaction
7488
+  (0.0ms) begin transaction
7489
+ -------------------------------------------
7490
+ ActiveRecordTest: test_resolution_for_enums
7491
+ -------------------------------------------
7492
+  (0.0ms) rollback transaction
7493
+  (0.0ms) begin transaction
7494
+ --------------------------------------------------
7495
+ ActiveRecordTest: test_attribute_with_count_config
7496
+ --------------------------------------------------
7497
+  (0.0ms) rollback transaction
7498
+  (0.0ms) begin transaction
7499
+ -----------------------------------------------------
7500
+ ActiveRecordTest: test_attribute_without_count_config
7501
+ -----------------------------------------------------
7502
+  (0.0ms) rollback transaction
7503
+  (0.0ms) begin transaction
7504
+ ---------------------------------------------------------
7505
+ ActiveModelTest: test_hierarchy_resolution_for_STI_models
7506
+ ---------------------------------------------------------
7507
+  (0.0ms) rollback transaction
7508
+  (0.0ms) begin transaction
7509
+ ---------------------------------------------
7510
+ ActiveModelTest: test_value_with_count_config
7511
+ ---------------------------------------------
7512
+  (0.0ms) rollback transaction
7513
+  (0.0ms) begin transaction
7514
+ ------------------------------------------------
7515
+ ActiveModelTest: test_value_without_count_config
7516
+ ------------------------------------------------
7517
+  (0.0ms) rollback transaction
7518
+  (0.0ms) begin transaction
7519
+ -----------------------------------------------------
7520
+ ActiveModelTest: test_mime_type_definition_with_a_dot
7521
+ -----------------------------------------------------
7522
+  (0.0ms) rollback transaction
7523
+  (0.0ms) begin transaction
7524
+ ---------------------------------------------------
7525
+ ActiveModelTest: test_resolution_for_numeric_values
7526
+ ---------------------------------------------------
7527
+  (0.0ms) rollback transaction
7528
+  (0.0ms) begin transaction
7529
+ --------------------------------------------------
7530
+ ActiveModelTest: test_resolution_of_boolean_values
7531
+ --------------------------------------------------
7532
+  (0.0ms) rollback transaction
7533
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
7534
+  (764.1ms) CREATE TABLE "boolean_models" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "boolean_field" boolean, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
7535
+  (31.4ms) CREATE TABLE "enum_models" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "status" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
7536
+  (353.4ms) CREATE TABLE "lexicons" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
7537
+  (279.7ms) CREATE TABLE "numeric_models" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "integer_field" integer, "decimal_field" decimal, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
7538
+  (22.3ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "type" varchar, "field" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
7539
+  (23.0ms) CREATE TABLE "the_answers" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "ultimate_truth" varchar, "lexicon_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
7540
+  (0.1ms) select sqlite_version(*)
7541
+  (77.7ms) CREATE INDEX "index_the_answers_on_lexicon_id" ON "the_answers" ("lexicon_id")
7542
+  (143.3ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
7543
+  (117.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
7544
+  (0.1ms) SELECT version FROM "schema_migrations"
7545
+  (18.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150131170613')
7546
+  (336.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20150127220502')
7547
+  (178.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150131161322')
7548
+  (16.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20150131164609')
7549
+  (16.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20150131162551')
7550
+  (16.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20150131153819')
7551
+ ActiveRecord::SchemaMigration Load (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
7552
+  (0.1ms) begin transaction
7553
+ ---------------------------------------------
7554
+ ActiveModelTest: test_value_with_count_config
7555
+ ---------------------------------------------
7556
+  (0.0ms) rollback transaction
7557
+  (0.0ms) begin transaction
7558
+ ------------------------------------------------
7559
+ ActiveModelTest: test_value_without_count_config
7560
+ ------------------------------------------------
7561
+  (0.0ms) rollback transaction
7562
+  (0.0ms) begin transaction
7563
+ -----------------------------------------------------
7564
+ ActiveModelTest: test_mime_type_definition_with_a_dot
7565
+ -----------------------------------------------------
7566
+  (0.0ms) rollback transaction
7567
+  (0.0ms) begin transaction
7568
+ ---------------------------------------------------------
7569
+ ActiveModelTest: test_hierarchy_resolution_for_STI_models
7570
+ ---------------------------------------------------------
7571
+  (0.0ms) rollback transaction
7572
+  (0.0ms) begin transaction
7573
+ ---------------------------------------------------
7574
+ ActiveModelTest: test_resolution_for_numeric_values
7575
+ ---------------------------------------------------
7576
+  (0.0ms) rollback transaction
7577
+  (0.0ms) begin transaction
7578
+ --------------------------------------------------
7579
+ ActiveModelTest: test_resolution_of_boolean_values
7580
+ --------------------------------------------------
7581
+  (0.0ms) rollback transaction
7582
+  (0.0ms) begin transaction
7583
+ --------------------------------------------------
7584
+ ActiveRecordTest: test_resolution_for_associations
7585
+ --------------------------------------------------
7586
+  (0.1ms) rollback transaction
7587
+  (0.0ms) begin transaction
7588
+ ---------------------------------------------------
7589
+ ActiveRecordTest: test_resolution_of_boolean_values
7590
+ ---------------------------------------------------
7591
+  (0.1ms) rollback transaction
7592
+  (0.0ms) begin transaction
7593
+ -----------------------------------------------------
7594
+ ActiveRecordTest: test_attribute_without_count_config
7595
+ -----------------------------------------------------
7596
+  (0.0ms) rollback transaction
7597
+  (0.0ms) begin transaction
7598
+ ------------------------------------------------------
7599
+ ActiveRecordTest: test_mime_type_definition_with_a_dot
7600
+ ------------------------------------------------------
7601
+  (0.0ms) rollback transaction
7602
+  (0.0ms) begin transaction
7603
+ --------------------------------------------------
7604
+ ActiveRecordTest: test_attribute_with_count_config
7605
+ --------------------------------------------------
7606
+  (0.0ms) rollback transaction
7607
+  (0.0ms) begin transaction
7608
+ -------------------------------------------
7609
+ ActiveRecordTest: test_resolution_for_enums
7610
+ -------------------------------------------
7611
+  (0.0ms) rollback transaction
7612
+  (0.0ms) begin transaction
7613
+ ----------------------------------------------------
7614
+ ActiveRecordTest: test_resolution_for_numeric_values
7615
+ ----------------------------------------------------
7616
+  (0.0ms) rollback transaction
7617
+  (0.0ms) begin transaction
7618
+ ----------------------------------------------------------
7619
+ ActiveRecordTest: test_hierarchy_resolution_for_STI_models
7620
+ ----------------------------------------------------------
7621
+  (0.1ms) rollback transaction
7622
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
7623
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
7624
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
7625
+  (0.1ms) begin transaction
7626
+ ---------------------------------------------------------
7627
+ ActiveModelTest: test_hierarchy_resolution_for_STI_models
7628
+ ---------------------------------------------------------
7629
+  (0.1ms) rollback transaction
7630
+  (0.0ms) begin transaction
7631
+ -----------------------------------------------------
7632
+ ActiveModelTest: test_mime_type_definition_with_a_dot
7633
+ -----------------------------------------------------
7634
+  (0.0ms) rollback transaction
7635
+  (0.0ms) begin transaction
7636
+ ---------------------------------------------------
7637
+ ActiveModelTest: test_resolution_for_numeric_values
7638
+ ---------------------------------------------------
7639
+  (0.0ms) rollback transaction
7640
+  (0.0ms) begin transaction
7641
+ ---------------------------------------------
7642
+ ActiveModelTest: test_value_with_count_config
7643
+ ---------------------------------------------
7644
+  (0.0ms) rollback transaction
7645
+  (0.0ms) begin transaction
7646
+ ------------------------------------------------
7647
+ ActiveModelTest: test_value_without_count_config
7648
+ ------------------------------------------------
7649
+  (0.0ms) rollback transaction
7650
+  (0.0ms) begin transaction
7651
+ --------------------------------------------------
7652
+ ActiveModelTest: test_resolution_of_boolean_values
7653
+ --------------------------------------------------
7654
+  (0.0ms) rollback transaction
7655
+  (0.0ms) begin transaction
7656
+ ---------------------------------------------------
7657
+ ActiveRecordTest: test_resolution_of_boolean_values
7658
+ ---------------------------------------------------
7659
+  (0.0ms) rollback transaction
7660
+  (0.0ms) begin transaction
7661
+ -----------------------------------------------------
7662
+ ActiveRecordTest: test_attribute_without_count_config
7663
+ -----------------------------------------------------
7664
+  (0.0ms) rollback transaction
7665
+  (0.0ms) begin transaction
7666
+ --------------------------------------------------
7667
+ ActiveRecordTest: test_resolution_for_associations
7668
+ --------------------------------------------------
7669
+  (0.0ms) rollback transaction
7670
+  (0.0ms) begin transaction
7671
+ --------------------------------------------------
7672
+ ActiveRecordTest: test_attribute_with_count_config
7673
+ --------------------------------------------------
7674
+  (0.0ms) rollback transaction
7675
+  (0.0ms) begin transaction
7676
+ ------------------------------------------------------
7677
+ ActiveRecordTest: test_mime_type_definition_with_a_dot
7678
+ ------------------------------------------------------
7679
+  (0.0ms) rollback transaction
7680
+  (0.0ms) begin transaction
7681
+ -------------------------------------------
7682
+ ActiveRecordTest: test_resolution_for_enums
7683
+ -------------------------------------------
7684
+  (0.0ms) rollback transaction
7685
+  (0.0ms) begin transaction
7686
+ ----------------------------------------------------------
7687
+ ActiveRecordTest: test_hierarchy_resolution_for_STI_models
7688
+ ----------------------------------------------------------
7689
+  (0.1ms) rollback transaction
7690
+  (0.0ms) begin transaction
7691
+ ----------------------------------------------------
7692
+ ActiveRecordTest: test_resolution_for_numeric_values
7693
+ ----------------------------------------------------
7694
+  (0.0ms) rollback transaction
7695
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
7696
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
7697
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
7698
+  (0.1ms) begin transaction
7699
+ ---------------------------------------------------------
7700
+ ActiveModelTest: test_hierarchy_resolution_for_STI_models
7701
+ ---------------------------------------------------------
7702
+  (0.0ms) rollback transaction
7703
+  (0.0ms) begin transaction
7704
+ -----------------------------------------------------
7705
+ ActiveModelTest: test_mime_type_definition_with_a_dot
7706
+ -----------------------------------------------------
7707
+  (0.0ms) rollback transaction
7708
+  (0.0ms) begin transaction
7709
+ ------------------------------------------------
7710
+ ActiveModelTest: test_value_without_count_config
7711
+ ------------------------------------------------
7712
+  (0.0ms) rollback transaction
7713
+  (0.0ms) begin transaction
7714
+ ---------------------------------------------------
7715
+ ActiveModelTest: test_resolution_for_numeric_values
7716
+ ---------------------------------------------------
7717
+  (0.0ms) rollback transaction
7718
+  (0.0ms) begin transaction
7719
+ --------------------------------------------------
7720
+ ActiveModelTest: test_resolution_of_boolean_values
7721
+ --------------------------------------------------
7722
+  (0.0ms) rollback transaction
7723
+  (0.0ms) begin transaction
7724
+ ---------------------------------------------
7725
+ ActiveModelTest: test_value_with_count_config
7726
+ ---------------------------------------------
7727
+  (0.0ms) rollback transaction
7728
+  (0.0ms) begin transaction
7729
+ ----------------------------------------------------------
7730
+ ActiveRecordTest: test_hierarchy_resolution_for_STI_models
7731
+ ----------------------------------------------------------
7732
+  (0.0ms) rollback transaction
7733
+  (0.0ms) begin transaction
7734
+ --------------------------------------------------
7735
+ ActiveRecordTest: test_resolution_for_associations
7736
+ --------------------------------------------------
7737
+  (0.1ms) rollback transaction
7738
+  (0.1ms) begin transaction
7739
+ ---------------------------------------------------
7740
+ ActiveRecordTest: test_resolution_of_boolean_values
7741
+ ---------------------------------------------------
7742
+  (0.0ms) rollback transaction
7743
+  (0.0ms) begin transaction
7744
+ -------------------------------------------
7745
+ ActiveRecordTest: test_resolution_for_enums
7746
+ -------------------------------------------
7747
+  (0.0ms) rollback transaction
7748
+  (0.0ms) begin transaction
7749
+ ------------------------------------------------------
7750
+ ActiveRecordTest: test_mime_type_definition_with_a_dot
7751
+ ------------------------------------------------------
7752
+  (0.0ms) rollback transaction
7753
+  (0.0ms) begin transaction
7754
+ --------------------------------------------------
7755
+ ActiveRecordTest: test_attribute_with_count_config
7756
+ --------------------------------------------------
7757
+  (0.0ms) rollback transaction
7758
+  (0.0ms) begin transaction
7759
+ -----------------------------------------------------
7760
+ ActiveRecordTest: test_attribute_without_count_config
7761
+ -----------------------------------------------------
7762
+  (0.0ms) rollback transaction
7763
+  (0.0ms) begin transaction
7764
+ ----------------------------------------------------
7765
+ ActiveRecordTest: test_resolution_for_numeric_values
7766
+ ----------------------------------------------------
7767
+  (0.0ms) rollback transaction
7768
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
7769
+  (799.1ms) CREATE TABLE "boolean_models" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "boolean_field" boolean, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
7770
+  (31.5ms) CREATE TABLE "enum_models" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "status" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
7771
+  (218.9ms) CREATE TABLE "lexicons" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
7772
+  (141.4ms) CREATE TABLE "numeric_models" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "integer_field" integer, "decimal_field" decimal, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
7773
+  (397.0ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "type" varchar, "field" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
7774
+  (24.7ms) CREATE TABLE "the_answers" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "ultimate_truth" varchar, "lexicon_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
7775
+  (0.1ms) select sqlite_version(*)
7776
+  (82.1ms) CREATE INDEX "index_the_answers_on_lexicon_id" ON "the_answers" ("lexicon_id")
7777
+  (162.5ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
7778
+  (23.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
7779
+  (0.1ms) SELECT version FROM "schema_migrations"
7780
+  (405.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20150131170613')
7781
+  (39.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20150127220502')
7782
+  (22.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20150131161322')
7783
+  (34.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20150131164609')
7784
+  (33.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20150131162551')
7785
+  (52.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150131153819')
7786
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
7787
+  (0.0ms) begin transaction
7788
+ ----------------------------------------------------------
7789
+ ActiveRecordTest: test_hierarchy_resolution_for_STI_models
7790
+ ----------------------------------------------------------
7791
+  (0.1ms) rollback transaction
7792
+  (0.0ms) begin transaction
7793
+ ---------------------------------------------------
7794
+ ActiveRecordTest: test_resolution_of_boolean_values
7795
+ ---------------------------------------------------
7796
+  (0.0ms) rollback transaction
7797
+  (0.0ms) begin transaction
7798
+ -------------------------------------------
7799
+ ActiveRecordTest: test_resolution_for_enums
7800
+ -------------------------------------------
7801
+  (0.0ms) rollback transaction
7802
+  (0.0ms) begin transaction
7803
+ -----------------------------------------------------
7804
+ ActiveRecordTest: test_attribute_without_count_config
7805
+ -----------------------------------------------------
7806
+  (0.0ms) rollback transaction
7807
+  (0.0ms) begin transaction
7808
+ ------------------------------------------------------
7809
+ ActiveRecordTest: test_mime_type_definition_with_a_dot
7810
+ ------------------------------------------------------
7811
+  (0.0ms) rollback transaction
7812
+  (0.0ms) begin transaction
7813
+ ----------------------------------------------------
7814
+ ActiveRecordTest: test_resolution_for_numeric_values
7815
+ ----------------------------------------------------
7816
+  (0.0ms) rollback transaction
7817
+  (0.0ms) begin transaction
7818
+ --------------------------------------------------
7819
+ ActiveRecordTest: test_attribute_with_count_config
7820
+ --------------------------------------------------
7821
+  (0.0ms) rollback transaction
7822
+  (0.0ms) begin transaction
7823
+ --------------------------------------------------
7824
+ ActiveRecordTest: test_resolution_for_associations
7825
+ --------------------------------------------------
7826
+  (0.0ms) rollback transaction
7827
+  (0.0ms) begin transaction
7828
+ ---------------------------------------------------
7829
+ ActiveModelTest: test_resolution_for_numeric_values
7830
+ ---------------------------------------------------
7831
+  (0.0ms) rollback transaction
7832
+  (0.0ms) begin transaction
7833
+ -----------------------------------------------------
7834
+ ActiveModelTest: test_mime_type_definition_with_a_dot
7835
+ -----------------------------------------------------
7836
+  (0.0ms) rollback transaction
7837
+  (0.0ms) begin transaction
7838
+ --------------------------------------------------
7839
+ ActiveModelTest: test_resolution_of_boolean_values
7840
+ --------------------------------------------------
7841
+  (0.0ms) rollback transaction
7842
+  (0.0ms) begin transaction
7843
+ ---------------------------------------------------------
7844
+ ActiveModelTest: test_hierarchy_resolution_for_STI_models
7845
+ ---------------------------------------------------------
7846
+  (0.0ms) rollback transaction
7847
+  (0.0ms) begin transaction
7848
+ ---------------------------------------------
7849
+ ActiveModelTest: test_value_with_count_config
7850
+ ---------------------------------------------
7851
+  (0.0ms) rollback transaction
7852
+  (0.0ms) begin transaction
7853
+ ------------------------------------------------
7854
+ ActiveModelTest: test_value_without_count_config
7855
+ ------------------------------------------------
7856
+  (0.0ms) rollback transaction
7857
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
7858
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
7859
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
7860
+  (0.1ms) begin transaction
7861
+ --------------------------------------------------
7862
+ ActiveRecordTest: test_attribute_with_count_config
7863
+ --------------------------------------------------
7864
+  (0.0ms) rollback transaction
7865
+  (0.0ms) begin transaction
7866
+ ----------------------------------------------------------
7867
+ ActiveRecordTest: test_hierarchy_resolution_for_STI_models
7868
+ ----------------------------------------------------------
7869
+  (0.0ms) rollback transaction
7870
+  (0.0ms) begin transaction
7871
+ ----------------------------------------------------
7872
+ ActiveRecordTest: test_resolution_for_numeric_values
7873
+ ----------------------------------------------------
7874
+  (0.0ms) rollback transaction
7875
+  (0.0ms) begin transaction
7876
+ -----------------------------------------------------
7877
+ ActiveRecordTest: test_attribute_without_count_config
7878
+ -----------------------------------------------------
7879
+  (0.0ms) rollback transaction
7880
+  (0.0ms) begin transaction
7881
+ --------------------------------------------------
7882
+ ActiveRecordTest: test_resolution_for_associations
7883
+ --------------------------------------------------
7884
+  (0.0ms) rollback transaction
7885
+  (0.0ms) begin transaction
7886
+ ---------------------------------------------------
7887
+ ActiveRecordTest: test_resolution_of_boolean_values
7888
+ ---------------------------------------------------
7889
+  (0.0ms) rollback transaction
7890
+  (0.0ms) begin transaction
7891
+ ------------------------------------------------------
7892
+ ActiveRecordTest: test_mime_type_definition_with_a_dot
7893
+ ------------------------------------------------------
7894
+  (0.0ms) rollback transaction
7895
+  (0.0ms) begin transaction
7896
+ -------------------------------------------
7897
+ ActiveRecordTest: test_resolution_for_enums
7898
+ -------------------------------------------
7899
+  (0.0ms) rollback transaction
7900
+  (0.0ms) begin transaction
7901
+ ---------------------------------------------
7902
+ ActiveModelTest: test_value_with_count_config
7903
+ ---------------------------------------------
7904
+  (0.0ms) rollback transaction
7905
+  (0.0ms) begin transaction
7906
+ ------------------------------------------------
7907
+ ActiveModelTest: test_value_without_count_config
7908
+ ------------------------------------------------
7909
+  (0.0ms) rollback transaction
7910
+  (0.0ms) begin transaction
7911
+ ---------------------------------------------------
7912
+ ActiveModelTest: test_resolution_for_numeric_values
7913
+ ---------------------------------------------------
7914
+  (0.0ms) rollback transaction
7915
+  (0.0ms) begin transaction
7916
+ ---------------------------------------------------------
7917
+ ActiveModelTest: test_hierarchy_resolution_for_STI_models
7918
+ ---------------------------------------------------------
7919
+  (0.0ms) rollback transaction
7920
+  (0.0ms) begin transaction
7921
+ -----------------------------------------------------
7922
+ ActiveModelTest: test_mime_type_definition_with_a_dot
7923
+ -----------------------------------------------------
7924
+  (0.0ms) rollback transaction
7925
+  (0.0ms) begin transaction
7926
+ --------------------------------------------------
7927
+ ActiveModelTest: test_resolution_of_boolean_values
7928
+ --------------------------------------------------
7929
+  (0.0ms) rollback transaction
7930
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
7931
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
7932
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
7933
+  (0.0ms) begin transaction
7934
+ ---------------------------------------------------
7935
+ ActiveModelTest: test_resolution_for_numeric_values
7936
+ ---------------------------------------------------
7937
+  (0.0ms) rollback transaction
7938
+  (0.0ms) begin transaction
7939
+ -----------------------------------------------------
7940
+ ActiveModelTest: test_mime_type_definition_with_a_dot
7941
+ -----------------------------------------------------
7942
+  (0.0ms) rollback transaction
7943
+  (0.0ms) begin transaction
7944
+ --------------------------------------------------
7945
+ ActiveModelTest: test_resolution_of_boolean_values
7946
+ --------------------------------------------------
7947
+  (0.0ms) rollback transaction
7948
+  (0.0ms) begin transaction
7949
+ ---------------------------------------------------------
7950
+ ActiveModelTest: test_hierarchy_resolution_for_STI_models
7951
+ ---------------------------------------------------------
7952
+  (0.0ms) rollback transaction
7953
+  (0.0ms) begin transaction
7954
+ ---------------------------------------------
7955
+ ActiveModelTest: test_value_with_count_config
7956
+ ---------------------------------------------
7957
+  (0.0ms) rollback transaction
7958
+  (0.0ms) begin transaction
7959
+ ------------------------------------------------
7960
+ ActiveModelTest: test_value_without_count_config
7961
+ ------------------------------------------------
7962
+  (0.0ms) rollback transaction
7963
+  (0.0ms) begin transaction
7964
+ ----------------------------------------------------------
7965
+ ActiveRecordTest: test_hierarchy_resolution_for_STI_models
7966
+ ----------------------------------------------------------
7967
+  (0.1ms) rollback transaction
7968
+  (0.0ms) begin transaction
7969
+ --------------------------------------------------
7970
+ ActiveRecordTest: test_attribute_with_count_config
7971
+ --------------------------------------------------
7972
+  (0.0ms) rollback transaction
7973
+  (0.0ms) begin transaction
7974
+ ---------------------------------------------------
7975
+ ActiveRecordTest: test_resolution_of_boolean_values
7976
+ ---------------------------------------------------
7977
+  (0.0ms) rollback transaction
7978
+  (0.0ms) begin transaction
7979
+ ----------------------------------------------------
7980
+ ActiveRecordTest: test_resolution_for_numeric_values
7981
+ ----------------------------------------------------
7982
+  (0.0ms) rollback transaction
7983
+  (0.0ms) begin transaction
7984
+ -------------------------------------------
7985
+ ActiveRecordTest: test_resolution_for_enums
7986
+ -------------------------------------------
7987
+  (0.0ms) rollback transaction
7988
+  (0.0ms) begin transaction
7989
+ -----------------------------------------------------
7990
+ ActiveRecordTest: test_attribute_without_count_config
7991
+ -----------------------------------------------------
7992
+  (0.0ms) rollback transaction
7993
+  (0.0ms) begin transaction
7994
+ --------------------------------------------------
7995
+ ActiveRecordTest: test_resolution_for_associations
7996
+ --------------------------------------------------
7997
+  (0.0ms) rollback transaction
7998
+  (0.0ms) begin transaction
7999
+ ------------------------------------------------------
8000
+ ActiveRecordTest: test_mime_type_definition_with_a_dot
8001
+ ------------------------------------------------------
8002
+  (0.0ms) rollback transaction