forest_rails 0.0.4

Sign up to get free protection for your applications and to get access to all the features.
Files changed (88) hide show
  1. checksums.yaml +7 -0
  2. data/MIT-LICENSE +20 -0
  3. data/README.rdoc +1 -0
  4. data/Rakefile +37 -0
  5. data/app/assets/javascripts/forest_rails/application.js +13 -0
  6. data/app/assets/stylesheets/forest_rails/application.css +15 -0
  7. data/app/assets/stylesheets/scaffold.css +56 -0
  8. data/app/controllers/forest_rails/apimaps_controller.rb +19 -0
  9. data/app/controllers/forest_rails/application_controller.rb +13 -0
  10. data/app/controllers/forest_rails/resources_controller.rb +48 -0
  11. data/app/deserializers/forest_rails/resource_deserializer.rb +34 -0
  12. data/app/helpers/forest_rails/application_helper.rb +4 -0
  13. data/app/models/forest_rails/collection.rb +26 -0
  14. data/app/serializers/forest_rails/apimap_serializer.rb +5 -0
  15. data/app/serializers/forest_rails/serializer_factory.rb +45 -0
  16. data/app/services/forest_rails/schema_adapter.rb +84 -0
  17. data/app/views/layouts/forest_rails/application.html.erb +14 -0
  18. data/config/routes.rb +9 -0
  19. data/lib/forest_rails.rb +5 -0
  20. data/lib/forest_rails/engine.rb +5 -0
  21. data/lib/forest_rails/version.rb +3 -0
  22. data/lib/generators/forest_rails/install_generator.rb +15 -0
  23. data/lib/tasks/forest_rails_tasks.rake +4 -0
  24. data/test/deserializers/forest_rails/resource_deserializer_test.rb +38 -0
  25. data/test/dummy/README.rdoc +28 -0
  26. data/test/dummy/Rakefile +6 -0
  27. data/test/dummy/app/assets/javascripts/application.js +13 -0
  28. data/test/dummy/app/assets/stylesheets/application.css +15 -0
  29. data/test/dummy/app/controllers/application_controller.rb +5 -0
  30. data/test/dummy/app/helpers/application_helper.rb +2 -0
  31. data/test/dummy/app/models/belongs_to_class_name_field.rb +3 -0
  32. data/test/dummy/app/models/belongs_to_field.rb +3 -0
  33. data/test/dummy/app/models/boolean_field.rb +2 -0
  34. data/test/dummy/app/models/date_field.rb +2 -0
  35. data/test/dummy/app/models/decimal_field.rb +2 -0
  36. data/test/dummy/app/models/float_field.rb +2 -0
  37. data/test/dummy/app/models/has_many_field.rb +3 -0
  38. data/test/dummy/app/models/has_one_field.rb +3 -0
  39. data/test/dummy/app/models/integer_field.rb +2 -0
  40. data/test/dummy/app/models/string_field.rb +2 -0
  41. data/test/dummy/app/views/layouts/application.html.erb +14 -0
  42. data/test/dummy/bin/bundle +3 -0
  43. data/test/dummy/bin/rails +4 -0
  44. data/test/dummy/bin/rake +4 -0
  45. data/test/dummy/bin/setup +29 -0
  46. data/test/dummy/config.ru +4 -0
  47. data/test/dummy/config/application.rb +26 -0
  48. data/test/dummy/config/boot.rb +5 -0
  49. data/test/dummy/config/database.yml +25 -0
  50. data/test/dummy/config/environment.rb +5 -0
  51. data/test/dummy/config/environments/development.rb +41 -0
  52. data/test/dummy/config/environments/production.rb +79 -0
  53. data/test/dummy/config/environments/test.rb +42 -0
  54. data/test/dummy/config/initializers/assets.rb +11 -0
  55. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  56. data/test/dummy/config/initializers/cookies_serializer.rb +3 -0
  57. data/test/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  58. data/test/dummy/config/initializers/inflections.rb +16 -0
  59. data/test/dummy/config/initializers/mime_types.rb +4 -0
  60. data/test/dummy/config/initializers/session_store.rb +3 -0
  61. data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
  62. data/test/dummy/config/locales/en.yml +23 -0
  63. data/test/dummy/config/routes.rb +4 -0
  64. data/test/dummy/config/secrets.yml +22 -0
  65. data/test/dummy/db/development.sqlite3 +0 -0
  66. data/test/dummy/db/migrate/20150608130516_create_date_field.rb +7 -0
  67. data/test/dummy/db/migrate/20150608131430_create_integer_field.rb +7 -0
  68. data/test/dummy/db/migrate/20150608131603_create_decimal_field.rb +7 -0
  69. data/test/dummy/db/migrate/20150608131610_create_float_field.rb +7 -0
  70. data/test/dummy/db/migrate/20150608132159_create_boolean_field.rb +7 -0
  71. data/test/dummy/db/migrate/20150608132621_create_string_field.rb +7 -0
  72. data/test/dummy/db/migrate/20150608133038_create_belongs_to_field.rb +7 -0
  73. data/test/dummy/db/migrate/20150608133044_create_has_one_field.rb +6 -0
  74. data/test/dummy/db/migrate/20150608150016_create_has_many_field.rb +6 -0
  75. data/test/dummy/db/migrate/20150609114636_create_belongs_to_class_name_field.rb +7 -0
  76. data/test/dummy/db/schema.rb +58 -0
  77. data/test/dummy/db/test.sqlite3 +0 -0
  78. data/test/dummy/log/development.log +91 -0
  79. data/test/dummy/log/test.log +4009 -0
  80. data/test/dummy/public/404.html +67 -0
  81. data/test/dummy/public/422.html +67 -0
  82. data/test/dummy/public/500.html +66 -0
  83. data/test/dummy/public/favicon.ico +0 -0
  84. data/test/forest_rails_test.rb +7 -0
  85. data/test/integration/navigation_test.rb +10 -0
  86. data/test/services/forest_rails/schema_adapter_test.rb +75 -0
  87. data/test/test_helper.rb +20 -0
  88. metadata +237 -0
@@ -0,0 +1,42 @@
1
+ Rails.application.configure do
2
+ # Settings specified here will take precedence over those in config/application.rb.
3
+
4
+ # The test environment is used exclusively to run your application's
5
+ # test suite. You never need to work with it otherwise. Remember that
6
+ # your test database is "scratch space" for the test suite and is wiped
7
+ # and recreated between test runs. Don't rely on the data there!
8
+ config.cache_classes = true
9
+
10
+ # Do not eager load code on boot. This avoids loading your whole application
11
+ # just for the purpose of running a single test. If you are using a tool that
12
+ # preloads Rails for running tests, you may have to set it to true.
13
+ config.eager_load = false
14
+
15
+ # Configure static file server for tests with Cache-Control for performance.
16
+ config.serve_static_files = true
17
+ config.static_cache_control = 'public, max-age=3600'
18
+
19
+ # Show full error reports and disable caching.
20
+ config.consider_all_requests_local = true
21
+ config.action_controller.perform_caching = false
22
+
23
+ # Raise exceptions instead of rendering exception templates.
24
+ config.action_dispatch.show_exceptions = false
25
+
26
+ # Disable request forgery protection in test environment.
27
+ config.action_controller.allow_forgery_protection = false
28
+
29
+ # Tell Action Mailer not to deliver emails to the real world.
30
+ # The :test delivery method accumulates sent emails in the
31
+ # ActionMailer::Base.deliveries array.
32
+ config.action_mailer.delivery_method = :test
33
+
34
+ # Randomize the order test cases are executed.
35
+ config.active_support.test_order = :random
36
+
37
+ # Print deprecation notices to the stderr.
38
+ config.active_support.deprecation = :stderr
39
+
40
+ # Raises error for missing translations
41
+ # config.action_view.raise_on_missing_translations = true
42
+ end
@@ -0,0 +1,11 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Version of your assets, change this if you want to expire all your assets.
4
+ Rails.application.config.assets.version = '1.0'
5
+
6
+ # Add additional assets to the asset load path
7
+ # Rails.application.config.assets.paths << Emoji.images_path
8
+
9
+ # Precompile additional assets.
10
+ # application.js, application.css, and all non-JS/CSS in app/assets folder are already added.
11
+ # Rails.application.config.assets.precompile += %w( search.js )
@@ -0,0 +1,7 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # You can add backtrace silencers for libraries that you're using but don't wish to see in your backtraces.
4
+ # Rails.backtrace_cleaner.add_silencer { |line| line =~ /my_noisy_library/ }
5
+
6
+ # You can also remove all the silencers if you're trying to debug a problem that might stem from framework code.
7
+ # Rails.backtrace_cleaner.remove_silencers!
@@ -0,0 +1,3 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ Rails.application.config.action_dispatch.cookies_serializer = :json
@@ -0,0 +1,4 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Configure sensitive parameters which will be filtered from the log file.
4
+ Rails.application.config.filter_parameters += [:password]
@@ -0,0 +1,16 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Add new inflection rules using the following format. Inflections
4
+ # are locale specific, and you may define rules for as many different
5
+ # locales as you wish. All of these examples are active by default:
6
+ # ActiveSupport::Inflector.inflections(:en) do |inflect|
7
+ # inflect.plural /^(ox)$/i, '\1en'
8
+ # inflect.singular /^(ox)en/i, '\1'
9
+ # inflect.irregular 'person', 'people'
10
+ # inflect.uncountable %w( fish sheep )
11
+ # end
12
+
13
+ # These inflection rules are supported but not enabled by default:
14
+ # ActiveSupport::Inflector.inflections(:en) do |inflect|
15
+ # inflect.acronym 'RESTful'
16
+ # end
@@ -0,0 +1,4 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Add new mime types for use in respond_to blocks:
4
+ # Mime::Type.register "text/richtext", :rtf
@@ -0,0 +1,3 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ Rails.application.config.session_store :cookie_store, key: '_dummy_session'
@@ -0,0 +1,14 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # This file contains settings for ActionController::ParamsWrapper which
4
+ # is enabled by default.
5
+
6
+ # Enable parameter wrapping for JSON. You can disable this by setting :format to an empty array.
7
+ ActiveSupport.on_load(:action_controller) do
8
+ wrap_parameters format: [:json] if respond_to?(:wrap_parameters)
9
+ end
10
+
11
+ # To enable root element in JSON for ActiveRecord objects.
12
+ # ActiveSupport.on_load(:active_record) do
13
+ # self.include_root_in_json = true
14
+ # end
@@ -0,0 +1,23 @@
1
+ # Files in the config/locales directory are used for internationalization
2
+ # and are automatically loaded by Rails. If you want to use locales other
3
+ # than English, add the necessary files in this directory.
4
+ #
5
+ # To use the locales, use `I18n.t`:
6
+ #
7
+ # I18n.t 'hello'
8
+ #
9
+ # In views, this is aliased to just `t`:
10
+ #
11
+ # <%= t('hello') %>
12
+ #
13
+ # To use a different locale, set it with `I18n.locale`:
14
+ #
15
+ # I18n.locale = :es
16
+ #
17
+ # This would use the information in config/locales/es.yml.
18
+ #
19
+ # To learn more, please read the Rails Internationalization guide
20
+ # available at http://guides.rubyonrails.org/i18n.html.
21
+
22
+ en:
23
+ hello: "Hello world"
@@ -0,0 +1,4 @@
1
+ Rails.application.routes.draw do
2
+
3
+ mount ForestRails::Engine => "/forest_rails"
4
+ end
@@ -0,0 +1,22 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Your secret key is used for verifying the integrity of signed cookies.
4
+ # If you change this key, all old signed cookies will become invalid!
5
+
6
+ # Make sure the secret is at least 30 characters and all random,
7
+ # no regular words or you'll be exposed to dictionary attacks.
8
+ # You can use `rake secret` to generate a secure secret key.
9
+
10
+ # Make sure the secrets in this file are kept private
11
+ # if you're sharing your code publicly.
12
+
13
+ development:
14
+ secret_key_base: 5e5f9973f109380c6588c49162a9f7eb4c55c52b701f9764f814d8d6cf950c1cca7af8623746f90b0150e30eabb1ef74d21993c4f851e5936e5b17c1e72a4e89
15
+
16
+ test:
17
+ secret_key_base: a19488172a9b027882008a059081c4e8d41c078880c8a48d34c9ba4a736f238dc865ab5a8f4289e20d264145d758ff1b4b0c1493c0e47a463dd511050058bb57
18
+
19
+ # Do not keep production secrets in the repository,
20
+ # instead read values from the environment.
21
+ production:
22
+ secret_key_base: <%= ENV["SECRET_KEY_BASE"] %>
@@ -0,0 +1,7 @@
1
+ class CreateDateField < ActiveRecord::Migration
2
+ def change
3
+ create_table :date_fields do |t|
4
+ t.date :field
5
+ end
6
+ end
7
+ end
@@ -0,0 +1,7 @@
1
+ class CreateIntegerField < ActiveRecord::Migration
2
+ def change
3
+ create_table :integer_fields do |t|
4
+ t.integer :field
5
+ end
6
+ end
7
+ end
@@ -0,0 +1,7 @@
1
+ class CreateDecimalField < ActiveRecord::Migration
2
+ def change
3
+ create_table :decimal_fields do |t|
4
+ t.decimal :field
5
+ end
6
+ end
7
+ end
@@ -0,0 +1,7 @@
1
+ class CreateFloatField < ActiveRecord::Migration
2
+ def change
3
+ create_table :float_fields do |t|
4
+ t.float :field
5
+ end
6
+ end
7
+ end
@@ -0,0 +1,7 @@
1
+ class CreateBooleanField < ActiveRecord::Migration
2
+ def change
3
+ create_table :boolean_fields do |t|
4
+ t.boolean :field
5
+ end
6
+ end
7
+ end
@@ -0,0 +1,7 @@
1
+ class CreateStringField < ActiveRecord::Migration
2
+ def change
3
+ create_table :string_fields do |t|
4
+ t.string :field
5
+ end
6
+ end
7
+ end
@@ -0,0 +1,7 @@
1
+ class CreateBelongsToField < ActiveRecord::Migration
2
+ def change
3
+ create_table :belongs_to_fields do |t|
4
+ t.references :has_one_field, index: true
5
+ end
6
+ end
7
+ end
@@ -0,0 +1,6 @@
1
+ class CreateHasOneField < ActiveRecord::Migration
2
+ def change
3
+ create_table :has_one_fields do |t|
4
+ end
5
+ end
6
+ end
@@ -0,0 +1,6 @@
1
+ class CreateHasManyField < ActiveRecord::Migration
2
+ def change
3
+ create_table :has_many_fields do |t|
4
+ end
5
+ end
6
+ end
@@ -0,0 +1,7 @@
1
+ class CreateBelongsToClassNameField < ActiveRecord::Migration
2
+ def change
3
+ create_table :belongs_to_class_name_fields do |t|
4
+ t.references :foo, index: true
5
+ end
6
+ end
7
+ end
@@ -0,0 +1,58 @@
1
+ # encoding: UTF-8
2
+ # This file is auto-generated from the current state of the database. Instead
3
+ # of editing this file, please use the migrations feature of Active Record to
4
+ # incrementally modify your database, and then regenerate this schema definition.
5
+ #
6
+ # Note that this schema.rb definition is the authoritative source for your
7
+ # database schema. If you need to create the application database on another
8
+ # system, you should be using db:schema:load, not running all the migrations
9
+ # from scratch. The latter is a flawed and unsustainable approach (the more migrations
10
+ # you'll amass, the slower it'll run and the greater likelihood for issues).
11
+ #
12
+ # It's strongly recommended that you check this file into your version control system.
13
+
14
+ ActiveRecord::Schema.define(version: 20150609114636) do
15
+
16
+ create_table "belongs_to_class_name_fields", force: :cascade do |t|
17
+ t.integer "foo_id"
18
+ end
19
+
20
+ add_index "belongs_to_class_name_fields", ["foo_id"], name: "index_belongs_to_class_name_fields_on_foo_id"
21
+
22
+ create_table "belongs_to_fields", force: :cascade do |t|
23
+ t.integer "has_one_field_id"
24
+ end
25
+
26
+ add_index "belongs_to_fields", ["has_one_field_id"], name: "index_belongs_to_fields_on_has_one_field_id"
27
+
28
+ create_table "boolean_fields", force: :cascade do |t|
29
+ t.boolean "field"
30
+ end
31
+
32
+ create_table "date_fields", force: :cascade do |t|
33
+ t.date "field"
34
+ end
35
+
36
+ create_table "decimal_fields", force: :cascade do |t|
37
+ t.decimal "field"
38
+ end
39
+
40
+ create_table "float_fields", force: :cascade do |t|
41
+ t.float "field"
42
+ end
43
+
44
+ create_table "has_many_fields", force: :cascade do |t|
45
+ end
46
+
47
+ create_table "has_one_fields", force: :cascade do |t|
48
+ end
49
+
50
+ create_table "integer_fields", force: :cascade do |t|
51
+ t.integer "field"
52
+ end
53
+
54
+ create_table "string_fields", force: :cascade do |t|
55
+ t.string "field"
56
+ end
57
+
58
+ end
@@ -0,0 +1,91 @@
1
+  (1.1ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
2
+  (0.1ms) select sqlite_version(*)
3
+  (1.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
4
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
5
+ Migrating to CreateDateField (20150608130516)
6
+  (0.1ms) begin transaction
7
+  (0.3ms) CREATE TABLE "date_fields" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "field" date)
8
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150608130516"]]
9
+  (0.7ms) commit transaction
10
+ Migrating to CreateIntegerField (20150608131430)
11
+  (0.0ms) begin transaction
12
+  (0.2ms) CREATE TABLE "integer_fields" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "field" integer)
13
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150608131430"]]
14
+  (0.6ms) commit transaction
15
+ Migrating to CreateDecimalField (20150608131603)
16
+  (0.0ms) begin transaction
17
+  (0.2ms) CREATE TABLE "decimal_fields" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "field" decimal)
18
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150608131603"]]
19
+  (0.7ms) commit transaction
20
+ Migrating to CreateFloatField (20150608131610)
21
+  (0.0ms) begin transaction
22
+  (0.3ms) CREATE TABLE "float_fields" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "field" float)
23
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150608131610"]]
24
+  (0.7ms) commit transaction
25
+ Migrating to CreateBooleanField (20150608132159)
26
+  (0.0ms) begin transaction
27
+  (0.3ms) CREATE TABLE "boolean_fields" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "field" boolean)
28
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150608132159"]]
29
+  (0.7ms) commit transaction
30
+ Migrating to CreateStringField (20150608132621)
31
+  (0.1ms) begin transaction
32
+  (0.4ms) CREATE TABLE "string_fields" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "field" varchar)
33
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150608132621"]]
34
+  (0.8ms) commit transaction
35
+ Migrating to CreateBelongsToField (20150608133038)
36
+  (0.1ms) begin transaction
37
+  (0.4ms) CREATE TABLE "belongs_to_fields" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "has_one_field_id" integer)
38
+  (0.1ms) CREATE INDEX "index_belongs_to_fields_on_has_one_field_id" ON "belongs_to_fields" ("has_one_field_id")
39
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150608133038"]]
40
+  (0.6ms) commit transaction
41
+ Migrating to CreateHasOneField (20150608133044)
42
+  (0.0ms) begin transaction
43
+  (0.2ms) CREATE TABLE "has_one_fields" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL) 
44
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150608133044"]]
45
+  (0.7ms) commit transaction
46
+ Migrating to CreateHasManyField (20150608150016)
47
+  (0.0ms) begin transaction
48
+  (0.2ms) CREATE TABLE "has_many_fields" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL) 
49
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150608150016"]]
50
+  (0.7ms) commit transaction
51
+ Migrating to CreateBelongsToClassNameField (20150609114636)
52
+  (0.0ms) begin transaction
53
+  (0.2ms) CREATE TABLE "belongs_to_class_name_fields" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "foo_id" integer) 
54
+  (0.1ms) CREATE INDEX "index_belongs_to_class_name_fields_on_foo_id" ON "belongs_to_class_name_fields" ("foo_id")
55
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150609114636"]]
56
+  (0.8ms) commit transaction
57
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
58
+  (0.1ms) SELECT sql
59
+ FROM sqlite_master
60
+ WHERE name='index_belongs_to_class_name_fields_on_foo_id' AND type='index'
61
+ UNION ALL
62
+ SELECT sql
63
+ FROM sqlite_temp_master
64
+ WHERE name='index_belongs_to_class_name_fields_on_foo_id' AND type='index'
65
+
66
+  (0.1ms)  SELECT sql
67
+ FROM sqlite_master
68
+ WHERE name='index_belongs_to_fields_on_has_one_field_id' AND type='index'
69
+ UNION ALL
70
+ SELECT sql
71
+ FROM sqlite_temp_master
72
+ WHERE name='index_belongs_to_fields_on_has_one_field_id' AND type='index'
73
+ 
74
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
75
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
76
+  (0.2ms)  SELECT sql
77
+ FROM sqlite_master
78
+ WHERE name='index_belongs_to_class_name_fields_on_foo_id' AND type='index'
79
+ UNION ALL
80
+ SELECT sql
81
+ FROM sqlite_temp_master
82
+ WHERE name='index_belongs_to_class_name_fields_on_foo_id' AND type='index'
83
+ 
84
+  (0.3ms) SELECT sql
85
+ FROM sqlite_master
86
+ WHERE name='index_belongs_to_fields_on_has_one_field_id' AND type='index'
87
+ UNION ALL
88
+ SELECT sql
89
+ FROM sqlite_temp_master
90
+ WHERE name='index_belongs_to_fields_on_has_one_field_id' AND type='index'
91
+
@@ -0,0 +1,4009 @@
1
+  (1.7ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
2
+  (0.1ms) select sqlite_version(*)
3
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
4
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
5
+ Migrating to CreateDate (20150608130251)
6
+  (0.1ms) begin transaction
7
+  (0.5ms) CREATE TABLE "dates" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "field" date)
8
+ SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150608130251"]]
9
+  (0.8ms) commit transaction
10
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
11
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
12
+  (0.1ms) begin transaction
13
+ ---------------------------
14
+ ForestRailsTest: test_truth
15
+ ---------------------------
16
+  (0.0ms) rollback transaction
17
+  (0.0ms) begin transaction
18
+ ---------------------------------------------------------------------
19
+ ForestRails::SchemaAdapterTest: test_Date_should_have_the_type_`Date`
20
+ ---------------------------------------------------------------------
21
+  (0.0ms) rollback transaction
22
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
23
+  (0.2ms) begin transaction
24
+ ---------------------------------------------------------------------
25
+ ForestRails::SchemaAdapterTest: test_Date_should_have_the_type_`Date`
26
+ ---------------------------------------------------------------------
27
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
28
+ Migrating to CreateDateField (20150608130516)
29
+  (0.1ms) begin transaction
30
+  (0.4ms) CREATE TABLE "date_fields" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "field" date) 
31
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150608130516"]]
32
+  (1.5ms) commit transaction
33
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
34
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
35
+  (0.1ms) begin transaction
36
+ ---------------------------
37
+ ForestRailsTest: test_truth
38
+ ---------------------------
39
+  (0.0ms) rollback transaction
40
+  (0.0ms) begin transaction
41
+ ---------------------------------------------------------------------
42
+ ForestRails::SchemaAdapterTest: test_Date_should_have_the_type_`Date`
43
+ ---------------------------------------------------------------------
44
+  (0.0ms) rollback transaction
45
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
46
+  (0.1ms) begin transaction
47
+ ---------------------------
48
+ ForestRailsTest: test_truth
49
+ ---------------------------
50
+  (0.1ms) rollback transaction
51
+  (0.0ms) begin transaction
52
+ ---------------------------------------------------------------------
53
+ ForestRails::SchemaAdapterTest: test_Date_should_have_the_type_`Date`
54
+ ---------------------------------------------------------------------
55
+  (0.6ms) rollback transaction
56
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
57
+  (0.1ms) begin transaction
58
+ ---------------------------
59
+ ForestRailsTest: test_truth
60
+ ---------------------------
61
+  (0.0ms) rollback transaction
62
+  (0.0ms) begin transaction
63
+ ---------------------------------------------------------------------
64
+ ForestRails::SchemaAdapterTest: test_Date_should_have_the_type_`Date`
65
+ ---------------------------------------------------------------------
66
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
67
+  (0.1ms) begin transaction
68
+ ---------------------------
69
+ ForestRailsTest: test_truth
70
+ ---------------------------
71
+  (0.0ms) rollback transaction
72
+  (0.0ms) begin transaction
73
+ ---------------------------------------------------------------------
74
+ ForestRails::SchemaAdapterTest: test_Date_should_have_the_type_`Date`
75
+ ---------------------------------------------------------------------
76
+  (0.1ms) rollback transaction
77
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
78
+  (0.1ms) begin transaction
79
+ ---------------------------
80
+ ForestRailsTest: test_truth
81
+ ---------------------------
82
+  (0.0ms) rollback transaction
83
+  (0.1ms) begin transaction
84
+ ---------------------------------------------------------------------
85
+ ForestRails::SchemaAdapterTest: test_Date_should_have_the_type_`Date`
86
+ ---------------------------------------------------------------------
87
+  (0.1ms) rollback transaction
88
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
89
+  (0.1ms) begin transaction
90
+ ---------------------------
91
+ ForestRailsTest: test_truth
92
+ ---------------------------
93
+  (0.0ms) rollback transaction
94
+  (0.1ms) begin transaction
95
+ -------------------------------------------------------------------------
96
+ ForestRails::SchemaAdapterTest: test_DateTime_should_have_the_type_`Date`
97
+ -------------------------------------------------------------------------
98
+  (0.0ms) rollback transaction
99
+  (0.1ms) begin transaction
100
+ ---------------------------------------------------------------------
101
+ ForestRails::SchemaAdapterTest: test_Date_should_have_the_type_`Date`
102
+ ---------------------------------------------------------------------
103
+  (0.0ms) rollback transaction
104
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
105
+ Migrating to CreateIntegerField (20150608131430)
106
+  (0.1ms) begin transaction
107
+  (0.4ms) CREATE TABLE "integer_fields" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "field" integer) 
108
+ SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150608131430"]]
109
+  (0.7ms) commit transaction
110
+ Migrating to CreateDecimalField (20150608131603)
111
+  (0.0ms) begin transaction
112
+  (0.3ms) CREATE TABLE "decimal_fields" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "field" decimal) 
113
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150608131603"]]
114
+  (0.6ms) commit transaction
115
+ Migrating to CreateFloatField (20150608131610)
116
+  (0.1ms) begin transaction
117
+  (0.3ms) CREATE TABLE "float_fields" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "field" float) 
118
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150608131610"]]
119
+  (0.7ms) commit transaction
120
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
121
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
122
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
123
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
124
+  (0.1ms) begin transaction
125
+ --------------------------------------------------------------------------
126
+ ForestRails::SchemaAdapterTest: test_Integer_should_have_the_type_`Number`
127
+ --------------------------------------------------------------------------
128
+  (0.0ms) rollback transaction
129
+  (0.1ms) begin transaction
130
+ ---------------------------------------------------------------------
131
+ ForestRails::SchemaAdapterTest: test_Date_should_have_the_type_`Date`
132
+ ---------------------------------------------------------------------
133
+  (0.1ms) rollback transaction
134
+  (0.1ms) begin transaction
135
+ -------------------------------------------------------------------------
136
+ ForestRails::SchemaAdapterTest: test_DateTime_should_have_the_type_`Date`
137
+ -------------------------------------------------------------------------
138
+  (0.0ms) rollback transaction
139
+  (0.1ms) begin transaction
140
+ ---------------------------
141
+ ForestRailsTest: test_truth
142
+ ---------------------------
143
+  (0.0ms) rollback transaction
144
+ ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
145
+  (0.1ms) begin transaction
146
+ ---------------------------
147
+ ForestRailsTest: test_truth
148
+ ---------------------------
149
+  (0.0ms) rollback transaction
150
+  (0.0ms) begin transaction
151
+ -------------------------------------------------------------------------
152
+ ForestRails::SchemaAdapterTest: test_DateTime_should_have_the_type_`Date`
153
+ -------------------------------------------------------------------------
154
+  (0.1ms) rollback transaction
155
+  (0.1ms) begin transaction
156
+ ---------------------------------------------------------------------
157
+ ForestRails::SchemaAdapterTest: test_Date_should_have_the_type_`Date`
158
+ ---------------------------------------------------------------------
159
+  (0.1ms) rollback transaction
160
+  (0.0ms) begin transaction
161
+ --------------------------------------------------------------------------
162
+ ForestRails::SchemaAdapterTest: test_Integer_should_have_the_type_`Number`
163
+ --------------------------------------------------------------------------
164
+  (0.0ms) rollback transaction
165
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
166
+  (0.1ms) begin transaction
167
+ ---------------------------------------------------------------------
168
+ ForestRails::SchemaAdapterTest: test_Date_should_have_the_type_`Date`
169
+ ---------------------------------------------------------------------
170
+  (0.0ms) rollback transaction
171
+  (0.1ms) begin transaction
172
+ -------------------------------------------------------------------------
173
+ ForestRails::SchemaAdapterTest: test_Number_should_have_the_type_`Number`
174
+ -------------------------------------------------------------------------
175
+  (0.0ms) rollback transaction
176
+  (0.1ms) begin transaction
177
+ --------------------------------------------------------------------------
178
+ ForestRails::SchemaAdapterTest: test_Integer_should_have_the_type_`Number`
179
+ --------------------------------------------------------------------------
180
+  (0.0ms) rollback transaction
181
+  (0.0ms) begin transaction
182
+ -------------------------------------------------------------------------
183
+ ForestRails::SchemaAdapterTest: test_DateTime_should_have_the_type_`Date`
184
+ -------------------------------------------------------------------------
185
+  (0.1ms) rollback transaction
186
+  (0.0ms) begin transaction
187
+ --------------------------------------------------------------------------
188
+ ForestRails::SchemaAdapterTest: test_Decimal_should_have_the_type_`Number`
189
+ --------------------------------------------------------------------------
190
+  (0.0ms) rollback transaction
191
+  (0.1ms) begin transaction
192
+ ---------------------------
193
+ ForestRailsTest: test_truth
194
+ ---------------------------
195
+  (0.0ms) rollback transaction
196
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
197
+  (0.1ms) begin transaction
198
+ --------------------------------------------------------------------------
199
+ ForestRails::SchemaAdapterTest: test_Decimal_should_have_the_type_`Number`
200
+ --------------------------------------------------------------------------
201
+  (0.1ms) rollback transaction
202
+  (0.1ms) begin transaction
203
+ ---------------------------------------------------------------------
204
+ ForestRails::SchemaAdapterTest: test_Date_should_have_the_type_`Date`
205
+ ---------------------------------------------------------------------
206
+  (0.0ms) rollback transaction
207
+  (0.1ms) begin transaction
208
+ -------------------------------------------------------------------------
209
+ ForestRails::SchemaAdapterTest: test_Number_should_have_the_type_`Number`
210
+ -------------------------------------------------------------------------
211
+  (0.0ms) rollback transaction
212
+  (0.0ms) begin transaction
213
+ --------------------------------------------------------------------------
214
+ ForestRails::SchemaAdapterTest: test_Integer_should_have_the_type_`Number`
215
+ --------------------------------------------------------------------------
216
+  (0.0ms) rollback transaction
217
+  (0.0ms) begin transaction
218
+ -------------------------------------------------------------------------
219
+ ForestRails::SchemaAdapterTest: test_DateTime_should_have_the_type_`Date`
220
+ -------------------------------------------------------------------------
221
+  (0.1ms) rollback transaction
222
+  (0.0ms) begin transaction
223
+ ---------------------------
224
+ ForestRailsTest: test_truth
225
+ ---------------------------
226
+  (0.0ms) rollback transaction
227
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
228
+  (0.1ms) begin transaction
229
+ ---------------------------
230
+ ForestRailsTest: test_truth
231
+ ---------------------------
232
+  (0.0ms) rollback transaction
233
+  (0.0ms) begin transaction
234
+ --------------------------------------------------------------------------
235
+ ForestRails::SchemaAdapterTest: test_Integer_should_have_the_type_`Number`
236
+ --------------------------------------------------------------------------
237
+  (0.1ms) rollback transaction
238
+  (0.0ms) begin transaction
239
+ ------------------------------------------------------------------------
240
+ ForestRails::SchemaAdapterTest: test_Float_should_have_the_type_`Number`
241
+ ------------------------------------------------------------------------
242
+  (0.0ms) rollback transaction
243
+  (0.0ms) begin transaction
244
+ --------------------------------------------------------------------------
245
+ ForestRails::SchemaAdapterTest: test_Decimal_should_have_the_type_`Number`
246
+ --------------------------------------------------------------------------
247
+  (0.0ms) rollback transaction
248
+  (0.0ms) begin transaction
249
+ ---------------------------------------------------------------------
250
+ ForestRails::SchemaAdapterTest: test_Date_should_have_the_type_`Date`
251
+ ---------------------------------------------------------------------
252
+  (0.0ms) rollback transaction
253
+  (0.0ms) begin transaction
254
+ -------------------------------------------------------------------------
255
+ ForestRails::SchemaAdapterTest: test_DateTime_should_have_the_type_`Date`
256
+ -------------------------------------------------------------------------
257
+  (0.0ms) rollback transaction
258
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
259
+  (0.1ms) begin transaction
260
+ --------------------------------------------------------------------------
261
+ ForestRails::SchemaAdapterTest: test_Decimal_should_have_the_type_`Number`
262
+ --------------------------------------------------------------------------
263
+  (0.1ms) rollback transaction
264
+  (0.1ms) begin transaction
265
+ ------------------------------------------------------------------------
266
+ ForestRails::SchemaAdapterTest: test_Float_should_have_the_type_`Number`
267
+ ------------------------------------------------------------------------
268
+  (0.0ms) rollback transaction
269
+  (0.0ms) begin transaction
270
+ -------------------------------------------------------------------------
271
+ ForestRails::SchemaAdapterTest: test_DateTime_should_have_the_type_`Date`
272
+ -------------------------------------------------------------------------
273
+  (0.1ms) rollback transaction
274
+  (0.2ms) begin transaction
275
+ ---------------------------------------------------------------------
276
+ ForestRails::SchemaAdapterTest: test_Date_should_have_the_type_`Date`
277
+ ---------------------------------------------------------------------
278
+  (0.1ms) rollback transaction
279
+  (0.0ms) begin transaction
280
+ --------------------------------------------------------------------------
281
+ ForestRails::SchemaAdapterTest: test_Integer_should_have_the_type_`Number`
282
+ --------------------------------------------------------------------------
283
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
284
+  (0.1ms) begin transaction
285
+ ---------------------------
286
+ ForestRailsTest: test_truth
287
+ ---------------------------
288
+  (0.1ms) rollback transaction
289
+  (0.1ms) begin transaction
290
+ ------------------------------------------------------------------------
291
+ ForestRails::SchemaAdapterTest: test_Float_should_have_the_type_`Number`
292
+ ------------------------------------------------------------------------
293
+  (0.7ms) rollback transaction
294
+  (0.3ms) begin transaction
295
+ --------------------------------------------------------------------------
296
+ ForestRails::SchemaAdapterTest: test_Decimal_should_have_the_type_`Number`
297
+ --------------------------------------------------------------------------
298
+  (0.6ms) rollback transaction
299
+  (0.4ms) begin transaction
300
+ --------------------------------------------------------------------------
301
+ ForestRails::SchemaAdapterTest: test_Integer_should_have_the_type_`Number`
302
+ --------------------------------------------------------------------------
303
+  (0.5ms) rollback transaction
304
+  (0.5ms) begin transaction
305
+ ---------------------------------------------------------------------
306
+ ForestRails::SchemaAdapterTest: test_Date_should_have_the_type_`Date`
307
+ ---------------------------------------------------------------------
308
+  (0.4ms) rollback transaction
309
+  (0.4ms) begin transaction
310
+ -------------------------------------------------------------------------
311
+ ForestRails::SchemaAdapterTest: test_DateTime_should_have_the_type_`Date`
312
+ -------------------------------------------------------------------------
313
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
314
+  (0.1ms) begin transaction
315
+ -------------------------------------------------------------------------
316
+ ForestRails::SchemaAdapterTest: test_DateTime_should_have_the_type_`Date`
317
+ -------------------------------------------------------------------------
318
+  (0.1ms) rollback transaction
319
+  (0.0ms) begin transaction
320
+ ---------------------------------------------------------------------
321
+ ForestRails::SchemaAdapterTest: test_Date_should_have_the_type_`Date`
322
+ ---------------------------------------------------------------------
323
+  (0.0ms) rollback transaction
324
+  (0.1ms) begin transaction
325
+ ------------------------------------------------------------------------
326
+ ForestRails::SchemaAdapterTest: test_Float_should_have_the_type_`Number`
327
+ ------------------------------------------------------------------------
328
+  (0.1ms) rollback transaction
329
+  (0.0ms) begin transaction
330
+ --------------------------------------------------------------------------
331
+ ForestRails::SchemaAdapterTest: test_Decimal_should_have_the_type_`Number`
332
+ --------------------------------------------------------------------------
333
+  (0.1ms) rollback transaction
334
+  (0.1ms) begin transaction
335
+ --------------------------------------------------------------------------
336
+ ForestRails::SchemaAdapterTest: test_Integer_should_have_the_type_`Number`
337
+ --------------------------------------------------------------------------
338
+  (0.0ms) rollback transaction
339
+  (0.0ms) begin transaction
340
+ ---------------------------
341
+ ForestRailsTest: test_truth
342
+ ---------------------------
343
+  (0.0ms) rollback transaction
344
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
345
+  (0.1ms) begin transaction
346
+ ---------------------------
347
+ ForestRailsTest: test_truth
348
+ ---------------------------
349
+  (0.0ms) rollback transaction
350
+  (0.0ms) begin transaction
351
+ --------------------------------------------------------------------------
352
+ ForestRails::SchemaAdapterTest: test_Integer_should_have_the_type_`Number`
353
+ --------------------------------------------------------------------------
354
+  (0.0ms) rollback transaction
355
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
356
+  (0.1ms) begin transaction
357
+ ---------------------------
358
+ ForestRailsTest: test_truth
359
+ ---------------------------
360
+  (0.0ms) rollback transaction
361
+  (0.0ms) begin transaction
362
+ --------------------------------------------------------------------------
363
+ ForestRails::SchemaAdapterTest: test_Integer_should_have_the_type_`Number`
364
+ --------------------------------------------------------------------------
365
+  (0.0ms) rollback transaction
366
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
367
+  (0.1ms) begin transaction
368
+ ---------------------------
369
+ ForestRailsTest: test_truth
370
+ ---------------------------
371
+  (0.0ms) rollback transaction
372
+  (0.0ms) begin transaction
373
+ --------------------------------------------------------------------------
374
+ ForestRails::SchemaAdapterTest: test_Integer_should_have_the_type_`Number`
375
+ --------------------------------------------------------------------------
376
+  (0.1ms) rollback transaction
377
+ ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
378
+  (0.1ms) begin transaction
379
+ ---------------------------
380
+ ForestRailsTest: test_truth
381
+ ---------------------------
382
+  (0.0ms) rollback transaction
383
+  (0.0ms) begin transaction
384
+ -------------------------------------------------------------------------
385
+ ForestRails::SchemaAdapterTest: test_DateTime_should_have_the_type_`Date`
386
+ -------------------------------------------------------------------------
387
+  (0.0ms) rollback transaction
388
+  (0.1ms) begin transaction
389
+ --------------------------------------------------------------------------
390
+ ForestRails::SchemaAdapterTest: test_Decimal_should_have_the_type_`Number`
391
+ --------------------------------------------------------------------------
392
+  (0.1ms) rollback transaction
393
+  (0.1ms) begin transaction
394
+ --------------------------------------------------------------------------
395
+ ForestRails::SchemaAdapterTest: test_Integer_should_have_the_type_`Number`
396
+ --------------------------------------------------------------------------
397
+  (0.0ms) rollback transaction
398
+  (0.1ms) begin transaction
399
+ ------------------------------------------------------------------------
400
+ ForestRails::SchemaAdapterTest: test_Float_should_have_the_type_`Number`
401
+ ------------------------------------------------------------------------
402
+  (0.1ms) rollback transaction
403
+  (0.0ms) begin transaction
404
+ ---------------------------------------------------------------------
405
+ ForestRails::SchemaAdapterTest: test_Date_should_have_the_type_`Date`
406
+ ---------------------------------------------------------------------
407
+  (0.0ms) rollback transaction
408
+ ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
409
+ Migrating to CreateBooleanField (20150608132159)
410
+  (0.1ms) begin transaction
411
+  (0.5ms) CREATE TABLE "boolean_fields" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "field" boolean) 
412
+ SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150608132159"]]
413
+  (1.5ms) commit transaction
414
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
415
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
416
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
417
+ ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
418
+  (0.1ms) begin transaction
419
+ ---------------------------------------------------------------------
420
+ ForestRails::SchemaAdapterTest: test_Date_should_have_the_type_`Date`
421
+ ---------------------------------------------------------------------
422
+  (0.0ms) rollback transaction
423
+  (0.0ms) begin transaction
424
+ ------------------------------------------------------------------------
425
+ ForestRails::SchemaAdapterTest: test_Float_should_have_the_type_`Number`
426
+ ------------------------------------------------------------------------
427
+  (0.0ms) rollback transaction
428
+  (0.0ms) begin transaction
429
+ --------------------------------------------------------------------------
430
+ ForestRails::SchemaAdapterTest: test_Decimal_should_have_the_type_`Number`
431
+ --------------------------------------------------------------------------
432
+  (0.0ms) rollback transaction
433
+  (0.1ms) begin transaction
434
+ ---------------------------------------------------------------------------
435
+ ForestRails::SchemaAdapterTest: test_Boolean_should_have_the_type_`Boolean`
436
+ ---------------------------------------------------------------------------
437
+  (0.0ms) rollback transaction
438
+  (0.1ms) begin transaction
439
+ -------------------------------------------------------------------------
440
+ ForestRails::SchemaAdapterTest: test_DateTime_should_have_the_type_`Date`
441
+ -------------------------------------------------------------------------
442
+  (0.0ms) rollback transaction
443
+  (0.1ms) begin transaction
444
+ --------------------------------------------------------------------------
445
+ ForestRails::SchemaAdapterTest: test_Integer_should_have_the_type_`Number`
446
+ --------------------------------------------------------------------------
447
+  (0.0ms) rollback transaction
448
+  (0.1ms) begin transaction
449
+ ---------------------------
450
+ ForestRailsTest: test_truth
451
+ ---------------------------
452
+  (0.0ms) rollback transaction
453
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
454
+ Migrating to CreateStringField (20150608132621)
455
+  (0.1ms) begin transaction
456
+  (0.4ms) CREATE TABLE "string_fields" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "field" varchar) 
457
+ SQL (0.6ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150608132621"]]
458
+  (1.6ms) commit transaction
459
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
460
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
461
+  (0.1ms) begin transaction
462
+ ---------------------------------------------------------------------------
463
+ ForestRails::SchemaAdapterTest: test_Boolean_should_have_the_type_`Boolean`
464
+ ---------------------------------------------------------------------------
465
+  (0.1ms) rollback transaction
466
+  (0.1ms) begin transaction
467
+ ------------------------------------------------------------------------
468
+ ForestRails::SchemaAdapterTest: test_Float_should_have_the_type_`Number`
469
+ ------------------------------------------------------------------------
470
+  (0.0ms) rollback transaction
471
+  (0.1ms) begin transaction
472
+ -------------------------------------------------------------------------
473
+ ForestRails::SchemaAdapterTest: test_String_should_have_the_type_`String`
474
+ -------------------------------------------------------------------------
475
+  (0.1ms) rollback transaction
476
+  (0.0ms) begin transaction
477
+ ---------------------------------------------------------------------
478
+ ForestRails::SchemaAdapterTest: test_Date_should_have_the_type_`Date`
479
+ ---------------------------------------------------------------------
480
+  (0.1ms) rollback transaction
481
+  (0.1ms) begin transaction
482
+ --------------------------------------------------------------------------
483
+ ForestRails::SchemaAdapterTest: test_Decimal_should_have_the_type_`Number`
484
+ --------------------------------------------------------------------------
485
+  (0.1ms) rollback transaction
486
+  (0.1ms) begin transaction
487
+ -------------------------------------------------------------------------
488
+ ForestRails::SchemaAdapterTest: test_DateTime_should_have_the_type_`Date`
489
+ -------------------------------------------------------------------------
490
+  (0.1ms) rollback transaction
491
+  (0.1ms) begin transaction
492
+ --------------------------------------------------------------------------
493
+ ForestRails::SchemaAdapterTest: test_Integer_should_have_the_type_`Number`
494
+ --------------------------------------------------------------------------
495
+  (0.0ms) rollback transaction
496
+  (0.1ms) begin transaction
497
+ ---------------------------
498
+ ForestRailsTest: test_truth
499
+ ---------------------------
500
+  (0.1ms) rollback transaction
501
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
502
+  (1.0ms) CREATE TABLE "boolean_fields" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "field" boolean) 
503
+  (1.0ms) CREATE TABLE "date_fields" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "field" date)
504
+  (1.3ms) CREATE TABLE "dates" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "field" date) 
505
+  (0.7ms) CREATE TABLE "decimal_fields" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "field" decimal)
506
+  (0.7ms) CREATE TABLE "float_fields" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "field" float) 
507
+  (0.8ms) CREATE TABLE "integer_fields" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "field" integer)
508
+  (0.9ms) CREATE TABLE "string_fields" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "field" varchar) 
509
+  (1.3ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
510
+  (0.1ms) select sqlite_version(*)
511
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
512
+  (0.1ms) SELECT version FROM "schema_migrations"
513
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150608132621')
514
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150608130516')
515
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150608131430')
516
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150608131603')
517
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20150608131610')
518
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150608132159')
519
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
520
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
521
+ Migrating to CreateBelongsToField (20150608133038)
522
+  (0.1ms) begin transaction
523
+  (0.5ms) CREATE TABLE "belongs_to_fields" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "has_one_id" integer) 
524
+  (0.0ms) select sqlite_version(*)
525
+  (0.1ms) CREATE INDEX "index_belongs_to_fields_on_has_one_id" ON "belongs_to_fields" ("has_one_id")
526
+ SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150608133038"]]
527
+  (1.5ms) commit transaction
528
+ Migrating to CreateHasOneField (20150608133044)
529
+  (0.1ms) begin transaction
530
+  (0.3ms) CREATE TABLE "has_one_fields" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL) 
531
+ SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150608133044"]]
532
+  (0.8ms) commit transaction
533
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
534
+  (0.1ms)  SELECT sql
535
+ FROM sqlite_master
536
+ WHERE name='index_belongs_to_fields_on_has_one_id' AND type='index'
537
+ UNION ALL
538
+ SELECT sql
539
+ FROM sqlite_temp_master
540
+ WHERE name='index_belongs_to_fields_on_has_one_id' AND type='index'
541
+ 
542
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
543
+  (0.1ms) begin transaction
544
+ -------------------------------------------------------------------------
545
+ ForestRails::SchemaAdapterTest: test_String_should_have_the_type_`String`
546
+ -------------------------------------------------------------------------
547
+  (0.1ms) rollback transaction
548
+  (0.1ms) begin transaction
549
+ -------------------------------------------------------------------------
550
+ ForestRails::SchemaAdapterTest: test_DateTime_should_have_the_type_`Date`
551
+ -------------------------------------------------------------------------
552
+  (0.0ms) rollback transaction
553
+  (0.1ms) begin transaction
554
+ ---------------------------------------------------------------------
555
+ ForestRails::SchemaAdapterTest: test_Date_should_have_the_type_`Date`
556
+ ---------------------------------------------------------------------
557
+  (0.1ms) rollback transaction
558
+  (0.1ms) begin transaction
559
+ --------------------------------------------------------------------------
560
+ ForestRails::SchemaAdapterTest: test_Integer_should_have_the_type_`Number`
561
+ --------------------------------------------------------------------------
562
+  (0.1ms) rollback transaction
563
+  (0.1ms) begin transaction
564
+ ------------------------------------------------------------------------
565
+ ForestRails::SchemaAdapterTest: test_Float_should_have_the_type_`Number`
566
+ ------------------------------------------------------------------------
567
+  (0.0ms) rollback transaction
568
+  (0.0ms) begin transaction
569
+ ---------------------------------------------------------------------------
570
+ ForestRails::SchemaAdapterTest: test_Boolean_should_have_the_type_`Boolean`
571
+ ---------------------------------------------------------------------------
572
+  (0.0ms) rollback transaction
573
+  (0.1ms) begin transaction
574
+ --------------------------------------------------------------------------
575
+ ForestRails::SchemaAdapterTest: test_Decimal_should_have_the_type_`Number`
576
+ --------------------------------------------------------------------------
577
+  (0.0ms) rollback transaction
578
+  (0.1ms) begin transaction
579
+ -----------------------------------------------------------
580
+ ForestRails::SchemaAdapterTest: test_belongsTo_relationship
581
+ -----------------------------------------------------------
582
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
583
+  (0.1ms) begin transaction
584
+ ---------------------------
585
+ ForestRailsTest: test_truth
586
+ ---------------------------
587
+  (0.1ms) rollback transaction
588
+  (0.1ms) begin transaction
589
+ -----------------------------------------------------------
590
+ ForestRails::SchemaAdapterTest: test_belongsTo_relationship
591
+ -----------------------------------------------------------
592
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
593
+  (0.1ms) begin transaction
594
+ -----------------------------------------------------------
595
+ ForestRails::SchemaAdapterTest: test_belongsTo_relationship
596
+ -----------------------------------------------------------
597
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
598
+  (0.1ms) begin transaction
599
+ -----------------------------------------------------------
600
+ ForestRails::SchemaAdapterTest: test_belongsTo_relationship
601
+ -----------------------------------------------------------
602
+ ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
603
+  (0.1ms) begin transaction
604
+ ---------------------------
605
+ ForestRailsTest: test_truth
606
+ ---------------------------
607
+  (0.0ms) rollback transaction
608
+  (0.1ms) begin transaction
609
+ -----------------------------------------------------------
610
+ ForestRails::SchemaAdapterTest: test_belongsTo_relationship
611
+ -----------------------------------------------------------
612
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
613
+  (0.1ms) begin transaction
614
+ -----------------------------------------------------------
615
+ ForestRails::SchemaAdapterTest: test_belongsTo_relationship
616
+ -----------------------------------------------------------
617
+  (0.1ms) rollback transaction
618
+  (0.1ms) begin transaction
619
+ ---------------------------
620
+ ForestRailsTest: test_truth
621
+ ---------------------------
622
+  (0.0ms) rollback transaction
623
+ ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
624
+  (0.1ms) begin transaction
625
+ -----------------------------------------------------------
626
+ ForestRails::SchemaAdapterTest: test_belongsTo_relationship
627
+ -----------------------------------------------------------
628
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
629
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
630
+  (0.2ms)  SELECT sql
631
+ FROM sqlite_master
632
+ WHERE name='index_belongs_to_fields_on_has_one_id' AND type='index'
633
+ UNION ALL
634
+ SELECT sql
635
+ FROM sqlite_temp_master
636
+ WHERE name='index_belongs_to_fields_on_has_one_id' AND type='index'
637
+ 
638
+  (1.7ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
639
+  (0.1ms) select sqlite_version(*)
640
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
641
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
642
+ Migrating to CreateDateField (20150608130516)
643
+  (0.1ms) begin transaction
644
+  (0.3ms) CREATE TABLE "date_fields" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "field" date)
645
+ SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150608130516"]]
646
+  (0.8ms) commit transaction
647
+ Migrating to CreateIntegerField (20150608131430)
648
+  (0.1ms) begin transaction
649
+  (0.4ms) CREATE TABLE "integer_fields" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "field" integer)
650
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150608131430"]]
651
+  (0.7ms) commit transaction
652
+ Migrating to CreateDecimalField (20150608131603)
653
+  (0.1ms) begin transaction
654
+  (0.4ms) CREATE TABLE "decimal_fields" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "field" decimal)
655
+ SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150608131603"]]
656
+  (1.0ms) commit transaction
657
+ Migrating to CreateFloatField (20150608131610)
658
+  (0.2ms) begin transaction
659
+  (0.4ms) CREATE TABLE "float_fields" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "field" float)
660
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150608131610"]]
661
+  (0.7ms) commit transaction
662
+ Migrating to CreateBooleanField (20150608132159)
663
+  (0.0ms) begin transaction
664
+  (0.3ms) CREATE TABLE "boolean_fields" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "field" boolean)
665
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150608132159"]]
666
+  (0.7ms) commit transaction
667
+ Migrating to CreateStringField (20150608132621)
668
+  (0.0ms) begin transaction
669
+  (0.3ms) CREATE TABLE "string_fields" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "field" varchar)
670
+ SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150608132621"]]
671
+  (0.7ms) commit transaction
672
+ Migrating to CreateBelongsToField (20150608133038)
673
+  (0.1ms) begin transaction
674
+  (0.5ms) CREATE TABLE "belongs_to_fields" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "has_one_field_id" integer)
675
+  (0.4ms) CREATE INDEX "index_belongs_to_fields_on_has_one_field_id" ON "belongs_to_fields" ("has_one_field_id")
676
+ SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150608133038"]]
677
+  (1.1ms) commit transaction
678
+ Migrating to CreateHasOneField (20150608133044)
679
+  (0.1ms) begin transaction
680
+  (0.6ms) CREATE TABLE "has_one_fields" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL) 
681
+ SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150608133044"]]
682
+  (2.1ms) commit transaction
683
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
684
+  (0.2ms)  SELECT sql
685
+ FROM sqlite_master
686
+ WHERE name='index_belongs_to_fields_on_has_one_field_id' AND type='index'
687
+ UNION ALL
688
+ SELECT sql
689
+ FROM sqlite_temp_master
690
+ WHERE name='index_belongs_to_fields_on_has_one_field_id' AND type='index'
691
+ 
692
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
693
+  (0.1ms) begin transaction
694
+ -----------------------------------------------------------
695
+ ForestRails::SchemaAdapterTest: test_belongsTo_relationship
696
+ -----------------------------------------------------------
697
+  (0.5ms) rollback transaction
698
+  (0.3ms) begin transaction
699
+ ---------------------------
700
+ ForestRailsTest: test_truth
701
+ ---------------------------
702
+  (0.4ms) rollback transaction
703
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
704
+  (0.1ms) begin transaction
705
+ -----------------------------------------------------------
706
+ ForestRails::SchemaAdapterTest: test_belongsTo_relationship
707
+ -----------------------------------------------------------
708
+  (0.4ms) rollback transaction
709
+  (0.3ms) begin transaction
710
+ ---------------------------
711
+ ForestRailsTest: test_truth
712
+ ---------------------------
713
+  (0.2ms) rollback transaction
714
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
715
+  (0.1ms) begin transaction
716
+ -----------------------------------------------------------
717
+ ForestRails::SchemaAdapterTest: test_belongsTo_relationship
718
+ -----------------------------------------------------------
719
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
720
+  (0.1ms) begin transaction
721
+ ---------------------------
722
+ ForestRailsTest: test_truth
723
+ ---------------------------
724
+  (0.0ms) rollback transaction
725
+  (0.0ms) begin transaction
726
+ -----------------------------------------------------------
727
+ ForestRails::SchemaAdapterTest: test_belongsTo_relationship
728
+ -----------------------------------------------------------
729
+  (0.4ms) rollback transaction
730
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
731
+  (0.1ms) begin transaction
732
+ -----------------------------------------------------------
733
+ ForestRails::SchemaAdapterTest: test_belongsTo_relationship
734
+ -----------------------------------------------------------
735
+  (0.1ms) rollback transaction
736
+  (0.0ms) begin transaction
737
+ ---------------------------
738
+ ForestRailsTest: test_truth
739
+ ---------------------------
740
+  (0.0ms) rollback transaction
741
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
742
+  (0.1ms) begin transaction
743
+ -----------------------------------------------------------
744
+ ForestRails::SchemaAdapterTest: test_belongsTo_relationship
745
+ -----------------------------------------------------------
746
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
747
+  (0.1ms) begin transaction
748
+ -----------------------------------------------------------
749
+ ForestRails::SchemaAdapterTest: test_belongsTo_relationship
750
+ -----------------------------------------------------------
751
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
752
+  (0.1ms) begin transaction
753
+ -----------------------------------------------------------
754
+ ForestRails::SchemaAdapterTest: test_belongsTo_relationship
755
+ -----------------------------------------------------------
756
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
757
+  (0.1ms) begin transaction
758
+ ---------------------------
759
+ ForestRailsTest: test_truth
760
+ ---------------------------
761
+  (0.1ms) rollback transaction
762
+  (0.1ms) begin transaction
763
+ -----------------------------------------------------------
764
+ ForestRails::SchemaAdapterTest: test_belongsTo_relationship
765
+ -----------------------------------------------------------
766
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
767
+  (0.1ms) begin transaction
768
+ -----------------------------------------------------------
769
+ ForestRails::SchemaAdapterTest: test_belongsTo_relationship
770
+ -----------------------------------------------------------
771
+  (0.0ms) rollback transaction
772
+  (0.0ms) begin transaction
773
+ ---------------------------
774
+ ForestRailsTest: test_truth
775
+ ---------------------------
776
+  (0.1ms) rollback transaction
777
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
778
+  (0.1ms) begin transaction
779
+ -----------------------------------------------------------
780
+ ForestRails::SchemaAdapterTest: test_belongsTo_relationship
781
+ -----------------------------------------------------------
782
+  (0.1ms) rollback transaction
783
+  (0.0ms) begin transaction
784
+ ---------------------------
785
+ ForestRailsTest: test_truth
786
+ ---------------------------
787
+  (0.0ms) rollback transaction
788
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
789
+  (0.1ms) begin transaction
790
+ ---------------------------
791
+ ForestRailsTest: test_truth
792
+ ---------------------------
793
+  (0.0ms) rollback transaction
794
+  (0.0ms) begin transaction
795
+ -----------------------------------------------------------
796
+ ForestRails::SchemaAdapterTest: test_belongsTo_relationship
797
+ -----------------------------------------------------------
798
+  (0.1ms) rollback transaction
799
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
800
+  (0.1ms) begin transaction
801
+ -----------------------------------------------------------
802
+ ForestRails::SchemaAdapterTest: test_belongsTo_relationship
803
+ -----------------------------------------------------------
804
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
805
+  (0.1ms) begin transaction
806
+ ---------------------------
807
+ ForestRailsTest: test_truth
808
+ ---------------------------
809
+  (0.0ms) rollback transaction
810
+  (0.1ms) begin transaction
811
+ -----------------------------------------------------------
812
+ ForestRails::SchemaAdapterTest: test_belongsTo_relationship
813
+ -----------------------------------------------------------
814
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
815
+  (0.1ms) begin transaction
816
+ ---------------------------
817
+ ForestRailsTest: test_truth
818
+ ---------------------------
819
+  (0.0ms) rollback transaction
820
+  (0.0ms) begin transaction
821
+ -----------------------------------------------------------
822
+ ForestRails::SchemaAdapterTest: test_belongsTo_relationship
823
+ -----------------------------------------------------------
824
+ ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
825
+  (0.1ms) begin transaction
826
+ -----------------------------------------------------------
827
+ ForestRails::SchemaAdapterTest: test_belongsTo_relationship
828
+ -----------------------------------------------------------
829
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
830
+  (0.1ms) begin transaction
831
+ ---------------------------
832
+ ForestRailsTest: test_truth
833
+ ---------------------------
834
+  (0.0ms) rollback transaction
835
+  (0.0ms) begin transaction
836
+ -----------------------------------------------------------
837
+ ForestRails::SchemaAdapterTest: test_belongsTo_relationship
838
+ -----------------------------------------------------------
839
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
840
+  (0.1ms) begin transaction
841
+ -----------------------------------------------------------
842
+ ForestRails::SchemaAdapterTest: test_belongsTo_relationship
843
+ -----------------------------------------------------------
844
+  (0.1ms) rollback transaction
845
+  (0.2ms) begin transaction
846
+ ---------------------------
847
+ ForestRailsTest: test_truth
848
+ ---------------------------
849
+  (0.0ms) rollback transaction
850
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
851
+  (0.1ms) begin transaction
852
+ ---------------------------
853
+ ForestRailsTest: test_truth
854
+ ---------------------------
855
+  (0.0ms) rollback transaction
856
+  (0.0ms) begin transaction
857
+ -----------------------------------------------------------
858
+ ForestRails::SchemaAdapterTest: test_belongsTo_relationship
859
+ -----------------------------------------------------------
860
+  (0.1ms) rollback transaction
861
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
862
+  (0.1ms) begin transaction
863
+ -----------------------------------------------------------
864
+ ForestRails::SchemaAdapterTest: test_belongsTo_relationship
865
+ -----------------------------------------------------------
866
+  (0.1ms) rollback transaction
867
+  (0.0ms) begin transaction
868
+ ---------------------------
869
+ ForestRailsTest: test_truth
870
+ ---------------------------
871
+  (0.0ms) rollback transaction
872
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
873
+  (0.1ms) begin transaction
874
+ ---------------------------
875
+ ForestRailsTest: test_truth
876
+ ---------------------------
877
+  (0.0ms) rollback transaction
878
+  (0.0ms) begin transaction
879
+ -----------------------------------------------------------
880
+ ForestRails::SchemaAdapterTest: test_belongsTo_relationship
881
+ -----------------------------------------------------------
882
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
883
+  (0.1ms) begin transaction
884
+ ---------------------------
885
+ ForestRailsTest: test_truth
886
+ ---------------------------
887
+  (0.0ms) rollback transaction
888
+  (0.0ms) begin transaction
889
+ -----------------------------------------------------------
890
+ ForestRails::SchemaAdapterTest: test_belongsTo_relationship
891
+ -----------------------------------------------------------
892
+  (0.0ms) rollback transaction
893
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
894
+  (0.1ms) begin transaction
895
+ --------------------------------------------------------
896
+ ForestRails::SchemaAdapterTest: test_hasOne_relationship
897
+ --------------------------------------------------------
898
+  (0.0ms) rollback transaction
899
+  (0.0ms) begin transaction
900
+ ---------------------------
901
+ ForestRailsTest: test_truth
902
+ ---------------------------
903
+  (0.0ms) rollback transaction
904
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
905
+  (0.1ms) begin transaction
906
+ --------------------------------------------------------
907
+ ForestRails::SchemaAdapterTest: test_hasOne_relationship
908
+ --------------------------------------------------------
909
+  (0.1ms) rollback transaction
910
+  (0.1ms) begin transaction
911
+ ---------------------------
912
+ ForestRailsTest: test_truth
913
+ ---------------------------
914
+  (0.0ms) rollback transaction
915
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
916
+  (0.1ms) begin transaction
917
+ --------------------------------------------------------
918
+ ForestRails::SchemaAdapterTest: test_hasOne_relationship
919
+ --------------------------------------------------------
920
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
921
+  (0.1ms) begin transaction
922
+ ---------------------------
923
+ ForestRailsTest: test_truth
924
+ ---------------------------
925
+  (0.0ms) rollback transaction
926
+  (0.0ms) begin transaction
927
+ -----------------------------------------------------------
928
+ ForestRails::SchemaAdapterTest: test_belongsTo_relationship
929
+ -----------------------------------------------------------
930
+  (0.0ms) rollback transaction
931
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
932
+  (0.1ms) begin transaction
933
+ ---------------------------
934
+ ForestRailsTest: test_truth
935
+ ---------------------------
936
+  (0.1ms) rollback transaction
937
+  (0.0ms) begin transaction
938
+ -----------------------------------------------------------
939
+ ForestRails::SchemaAdapterTest: test_belongsTo_relationship
940
+ -----------------------------------------------------------
941
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
942
+  (0.1ms) begin transaction
943
+ -----------------------------------------------------------
944
+ ForestRails::SchemaAdapterTest: test_belongsTo_relationship
945
+ -----------------------------------------------------------
946
+  (0.1ms) rollback transaction
947
+  (0.1ms) begin transaction
948
+ ---------------------------
949
+ ForestRailsTest: test_truth
950
+ ---------------------------
951
+  (0.0ms) rollback transaction
952
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
953
+  (0.1ms) begin transaction
954
+ ---------------------------
955
+ ForestRailsTest: test_truth
956
+ ---------------------------
957
+  (0.0ms) rollback transaction
958
+  (0.1ms) begin transaction
959
+ -----------------------------------------------------------
960
+ ForestRails::SchemaAdapterTest: test_belongsTo_relationship
961
+ -----------------------------------------------------------
962
+  (0.0ms) rollback transaction
963
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
964
+  (0.1ms) begin transaction
965
+ -----------------------------------------------------------
966
+ ForestRails::SchemaAdapterTest: test_belongsTo_relationship
967
+ -----------------------------------------------------------
968
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
969
+  (0.1ms) begin transaction
970
+ ---------------------------
971
+ ForestRailsTest: test_truth
972
+ ---------------------------
973
+  (0.1ms) rollback transaction
974
+  (0.0ms) begin transaction
975
+ -----------------------------------------------------------
976
+ ForestRails::SchemaAdapterTest: test_belongsTo_relationship
977
+ -----------------------------------------------------------
978
+  (0.5ms) rollback transaction
979
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
980
+  (0.1ms) begin transaction
981
+ -----------------------------------------------------------
982
+ ForestRails::SchemaAdapterTest: test_belongsTo_relationship
983
+ -----------------------------------------------------------
984
+ ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
985
+  (0.1ms) begin transaction
986
+ ---------------------------
987
+ ForestRailsTest: test_truth
988
+ ---------------------------
989
+  (0.0ms) rollback transaction
990
+  (0.1ms) begin transaction
991
+ -----------------------------------------------------------
992
+ ForestRails::SchemaAdapterTest: test_belongsTo_relationship
993
+ -----------------------------------------------------------
994
+  (0.0ms) rollback transaction
995
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
996
+  (0.1ms) begin transaction
997
+ ---------------------------
998
+ ForestRailsTest: test_truth
999
+ ---------------------------
1000
+  (0.0ms) rollback transaction
1001
+  (0.0ms) begin transaction
1002
+ -----------------------------------------------------------
1003
+ ForestRails::SchemaAdapterTest: test_belongsTo_relationship
1004
+ -----------------------------------------------------------
1005
+  (0.0ms) rollback transaction
1006
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
1007
+  (0.1ms) begin transaction
1008
+ ---------------------------
1009
+ ForestRailsTest: test_truth
1010
+ ---------------------------
1011
+  (0.0ms) rollback transaction
1012
+  (0.0ms) begin transaction
1013
+ -----------------------------------------------------------
1014
+ ForestRails::SchemaAdapterTest: test_belongsTo_relationship
1015
+ -----------------------------------------------------------
1016
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1017
+  (0.1ms) begin transaction
1018
+ -----------------------------------------------------------
1019
+ ForestRails::SchemaAdapterTest: test_belongsTo_relationship
1020
+ -----------------------------------------------------------
1021
+  (0.5ms) rollback transaction
1022
+  (0.3ms) begin transaction
1023
+ ---------------------------
1024
+ ForestRailsTest: test_truth
1025
+ ---------------------------
1026
+  (0.8ms) rollback transaction
1027
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1028
+  (0.1ms) begin transaction
1029
+ -----------------------------------------------------------
1030
+ ForestRails::SchemaAdapterTest: test_belongsTo_relationship
1031
+ -----------------------------------------------------------
1032
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
1033
+  (0.1ms) begin transaction
1034
+ ---------------------------
1035
+ ForestRailsTest: test_truth
1036
+ ---------------------------
1037
+  (0.0ms) rollback transaction
1038
+  (0.1ms) begin transaction
1039
+ -----------------------------------------------------------
1040
+ ForestRails::SchemaAdapterTest: test_belongsTo_relationship
1041
+ -----------------------------------------------------------
1042
+  (0.5ms) rollback transaction
1043
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1044
+  (0.1ms) begin transaction
1045
+ -----------------------------------------------------------
1046
+ ForestRails::SchemaAdapterTest: test_belongsTo_relationship
1047
+ -----------------------------------------------------------
1048
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1049
+  (0.1ms) begin transaction
1050
+ ---------------------------
1051
+ ForestRailsTest: test_truth
1052
+ ---------------------------
1053
+  (0.1ms) rollback transaction
1054
+  (0.1ms) begin transaction
1055
+ -----------------------------------------------------------
1056
+ ForestRails::SchemaAdapterTest: test_belongsTo_relationship
1057
+ -----------------------------------------------------------
1058
+  (0.0ms) rollback transaction
1059
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1060
+  (0.1ms) begin transaction
1061
+ ---------------------------
1062
+ ForestRailsTest: test_truth
1063
+ ---------------------------
1064
+  (0.0ms) rollback transaction
1065
+  (0.0ms) begin transaction
1066
+ --------------------------------------------------------
1067
+ ForestRails::SchemaAdapterTest: test_hasOne_relationship
1068
+ --------------------------------------------------------
1069
+  (0.7ms) rollback transaction
1070
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1071
+  (0.1ms) begin transaction
1072
+ ---------------------------
1073
+ ForestRailsTest: test_truth
1074
+ ---------------------------
1075
+  (0.0ms) rollback transaction
1076
+  (0.1ms) begin transaction
1077
+ --------------------------------------------------------
1078
+ ForestRails::SchemaAdapterTest: test_hasOne_relationship
1079
+ --------------------------------------------------------
1080
+  (0.1ms) rollback transaction
1081
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1082
+  (0.1ms) begin transaction
1083
+ ---------------------------
1084
+ ForestRailsTest: test_truth
1085
+ ---------------------------
1086
+  (0.0ms) rollback transaction
1087
+  (0.0ms) begin transaction
1088
+ --------------------------------------------------------
1089
+ ForestRails::SchemaAdapterTest: test_hasOne_relationship
1090
+ --------------------------------------------------------
1091
+  (0.1ms) rollback transaction
1092
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1093
+  (0.1ms) begin transaction
1094
+ ---------------------------
1095
+ ForestRailsTest: test_truth
1096
+ ---------------------------
1097
+  (0.0ms) rollback transaction
1098
+  (0.0ms) begin transaction
1099
+ --------------------------------------------------------
1100
+ ForestRails::SchemaAdapterTest: test_hasOne_relationship
1101
+ --------------------------------------------------------
1102
+  (0.3ms) rollback transaction
1103
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1104
+  (0.1ms) begin transaction
1105
+ --------------------------------------------------------
1106
+ ForestRails::SchemaAdapterTest: test_hasOne_relationship
1107
+ --------------------------------------------------------
1108
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1109
+  (0.1ms) begin transaction
1110
+ --------------------------------------------------------
1111
+ ForestRails::SchemaAdapterTest: test_hasOne_relationship
1112
+ --------------------------------------------------------
1113
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1114
+  (0.1ms) begin transaction
1115
+ ---------------------------
1116
+ ForestRailsTest: test_truth
1117
+ ---------------------------
1118
+  (0.0ms) rollback transaction
1119
+  (0.0ms) begin transaction
1120
+ --------------------------------------------------------
1121
+ ForestRails::SchemaAdapterTest: test_hasOne_relationship
1122
+ --------------------------------------------------------
1123
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1124
+  (0.1ms) begin transaction
1125
+ ---------------------------
1126
+ ForestRailsTest: test_truth
1127
+ ---------------------------
1128
+  (0.0ms) rollback transaction
1129
+  (0.0ms) begin transaction
1130
+ --------------------------------------------------------
1131
+ ForestRails::SchemaAdapterTest: test_hasOne_relationship
1132
+ --------------------------------------------------------
1133
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1134
+  (0.1ms) begin transaction
1135
+ --------------------------------------------------------
1136
+ ForestRails::SchemaAdapterTest: test_hasOne_relationship
1137
+ --------------------------------------------------------
1138
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1139
+  (0.1ms) begin transaction
1140
+ --------------------------------------------------------
1141
+ ForestRails::SchemaAdapterTest: test_hasOne_relationship
1142
+ --------------------------------------------------------
1143
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1144
+  (0.1ms) begin transaction
1145
+ --------------------------------------------------------
1146
+ ForestRails::SchemaAdapterTest: test_hasOne_relationship
1147
+ --------------------------------------------------------
1148
+  (0.8ms) rollback transaction
1149
+  (0.3ms) begin transaction
1150
+ ---------------------------
1151
+ ForestRailsTest: test_truth
1152
+ ---------------------------
1153
+  (0.3ms) rollback transaction
1154
+ ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
1155
+  (0.1ms) begin transaction
1156
+ ---------------------------
1157
+ ForestRailsTest: test_truth
1158
+ ---------------------------
1159
+  (0.0ms) rollback transaction
1160
+  (0.1ms) begin transaction
1161
+ --------------------------------------------------------
1162
+ ForestRails::SchemaAdapterTest: test_hasOne_relationship
1163
+ --------------------------------------------------------
1164
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
1165
+  (0.1ms) begin transaction
1166
+ --------------------------------------------------------
1167
+ ForestRails::SchemaAdapterTest: test_hasOne_relationship
1168
+ --------------------------------------------------------
1169
+  (0.1ms) rollback transaction
1170
+  (0.0ms) begin transaction
1171
+ ---------------------------
1172
+ ForestRailsTest: test_truth
1173
+ ---------------------------
1174
+  (0.0ms) rollback transaction
1175
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1176
+  (0.1ms) begin transaction
1177
+ ---------------------------
1178
+ ForestRailsTest: test_truth
1179
+ ---------------------------
1180
+  (0.0ms) rollback transaction
1181
+  (0.1ms) begin transaction
1182
+ --------------------------------------------------------
1183
+ ForestRails::SchemaAdapterTest: test_hasOne_relationship
1184
+ --------------------------------------------------------
1185
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1186
+  (0.1ms) begin transaction
1187
+ ---------------------------
1188
+ ForestRailsTest: test_truth
1189
+ ---------------------------
1190
+  (0.0ms) rollback transaction
1191
+  (0.0ms) begin transaction
1192
+ --------------------------------------------------------
1193
+ ForestRails::SchemaAdapterTest: test_hasOne_relationship
1194
+ --------------------------------------------------------
1195
+  (0.1ms) rollback transaction
1196
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1197
+  (0.1ms) begin transaction
1198
+ --------------------------------------------------------
1199
+ ForestRails::SchemaAdapterTest: test_hasOne_relationship
1200
+ --------------------------------------------------------
1201
+  (0.0ms) rollback transaction
1202
+  (0.0ms) begin transaction
1203
+ ---------------------------
1204
+ ForestRailsTest: test_truth
1205
+ ---------------------------
1206
+  (0.0ms) rollback transaction
1207
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1208
+  (0.1ms) begin transaction
1209
+ --------------------------------------------------------
1210
+ ForestRails::SchemaAdapterTest: test_hasOne_relationship
1211
+ --------------------------------------------------------
1212
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1213
+  (0.1ms) begin transaction
1214
+ --------------------------------------------------------
1215
+ ForestRails::SchemaAdapterTest: test_hasOne_relationship
1216
+ --------------------------------------------------------
1217
+  (0.1ms) rollback transaction
1218
+  (0.0ms) begin transaction
1219
+ ---------------------------
1220
+ ForestRailsTest: test_truth
1221
+ ---------------------------
1222
+  (0.0ms) rollback transaction
1223
+ ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
1224
+  (0.1ms) begin transaction
1225
+ ---------------------------
1226
+ ForestRailsTest: test_truth
1227
+ ---------------------------
1228
+  (0.0ms) rollback transaction
1229
+  (0.0ms) begin transaction
1230
+ --------------------------------------------------------
1231
+ ForestRails::SchemaAdapterTest: test_hasOne_relationship
1232
+ --------------------------------------------------------
1233
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1234
+  (0.1ms) begin transaction
1235
+ ---------------------------
1236
+ ForestRailsTest: test_truth
1237
+ ---------------------------
1238
+  (0.0ms) rollback transaction
1239
+  (0.1ms) begin transaction
1240
+ --------------------------------------------------------
1241
+ ForestRails::SchemaAdapterTest: test_hasOne_relationship
1242
+ --------------------------------------------------------
1243
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
1244
+  (0.1ms) begin transaction
1245
+ ---------------------------
1246
+ ForestRailsTest: test_truth
1247
+ ---------------------------
1248
+  (0.0ms) rollback transaction
1249
+  (0.0ms) begin transaction
1250
+ --------------------------------------------------------
1251
+ ForestRails::SchemaAdapterTest: test_hasOne_relationship
1252
+ --------------------------------------------------------
1253
+  (0.5ms) rollback transaction
1254
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1255
+  (0.1ms) begin transaction
1256
+ ---------------------------
1257
+ ForestRailsTest: test_truth
1258
+ ---------------------------
1259
+  (0.0ms) rollback transaction
1260
+  (0.0ms) begin transaction
1261
+ --------------------------------------------------------
1262
+ ForestRails::SchemaAdapterTest: test_hasOne_relationship
1263
+ --------------------------------------------------------
1264
+  (0.1ms) rollback transaction
1265
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1266
+  (0.1ms) begin transaction
1267
+ ---------------------------
1268
+ ForestRailsTest: test_truth
1269
+ ---------------------------
1270
+  (0.0ms) rollback transaction
1271
+  (0.1ms) begin transaction
1272
+ ---------------------------------------------------------------------------
1273
+ ForestRails::SchemaAdapterTest: test_Boolean_should_have_the_type_`Boolean`
1274
+ ---------------------------------------------------------------------------
1275
+  (0.1ms) rollback transaction
1276
+  (0.0ms) begin transaction
1277
+ -------------------------------------------------------------------------
1278
+ ForestRails::SchemaAdapterTest: test_DateTime_should_have_the_type_`Date`
1279
+ -------------------------------------------------------------------------
1280
+  (0.0ms) rollback transaction
1281
+  (0.0ms) begin transaction
1282
+ -------------------------------------------------------------------------
1283
+ ForestRails::SchemaAdapterTest: test_String_should_have_the_type_`String`
1284
+ -------------------------------------------------------------------------
1285
+  (0.0ms) rollback transaction
1286
+  (0.0ms) begin transaction
1287
+ ---------------------------------------------------------------------
1288
+ ForestRails::SchemaAdapterTest: test_Date_should_have_the_type_`Date`
1289
+ ---------------------------------------------------------------------
1290
+  (0.0ms) rollback transaction
1291
+  (0.0ms) begin transaction
1292
+ --------------------------------------------------------------------------
1293
+ ForestRails::SchemaAdapterTest: test_Decimal_should_have_the_type_`Number`
1294
+ --------------------------------------------------------------------------
1295
+  (0.0ms) rollback transaction
1296
+  (0.1ms) begin transaction
1297
+ --------------------------------------------------------------------------
1298
+ ForestRails::SchemaAdapterTest: test_Integer_should_have_the_type_`Number`
1299
+ --------------------------------------------------------------------------
1300
+  (0.1ms) rollback transaction
1301
+  (0.1ms) begin transaction
1302
+ ------------------------------------------------------------------------
1303
+ ForestRails::SchemaAdapterTest: test_Float_should_have_the_type_`Number`
1304
+ ------------------------------------------------------------------------
1305
+  (0.0ms) rollback transaction
1306
+  (0.1ms) begin transaction
1307
+ -----------------------------------------------------------
1308
+ ForestRails::SchemaAdapterTest: test_belongsTo_relationship
1309
+ -----------------------------------------------------------
1310
+  (0.0ms) rollback transaction
1311
+  (0.0ms) begin transaction
1312
+ --------------------------------------------------------
1313
+ ForestRails::SchemaAdapterTest: test_hasOne_relationship
1314
+ --------------------------------------------------------
1315
+  (0.1ms) rollback transaction
1316
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1317
+  (0.1ms) begin transaction
1318
+ ---------------------------
1319
+ ForestRailsTest: test_truth
1320
+ ---------------------------
1321
+  (0.0ms) rollback transaction
1322
+  (0.0ms) begin transaction
1323
+ -------------------------------------------------------------------------
1324
+ ForestRails::SchemaAdapterTest: test_String_should_have_the_type_`String`
1325
+ -------------------------------------------------------------------------
1326
+  (0.0ms) rollback transaction
1327
+  (0.0ms) begin transaction
1328
+ ---------------------------------------------------------------------
1329
+ ForestRails::SchemaAdapterTest: test_Date_should_have_the_type_`Date`
1330
+ ---------------------------------------------------------------------
1331
+  (0.1ms) rollback transaction
1332
+  (0.1ms) begin transaction
1333
+ -----------------------------------------------------------
1334
+ ForestRails::SchemaAdapterTest: test_belongsTo_relationship
1335
+ -----------------------------------------------------------
1336
+  (0.0ms) rollback transaction
1337
+  (0.0ms) begin transaction
1338
+ -------------------------------------------------------------------------
1339
+ ForestRails::SchemaAdapterTest: test_DateTime_should_have_the_type_`Date`
1340
+ -------------------------------------------------------------------------
1341
+  (0.0ms) rollback transaction
1342
+  (0.0ms) begin transaction
1343
+ ------------------------------------------------------------------------
1344
+ ForestRails::SchemaAdapterTest: test_Float_should_have_the_type_`Number`
1345
+ ------------------------------------------------------------------------
1346
+  (0.0ms) rollback transaction
1347
+  (0.1ms) begin transaction
1348
+ --------------------------------------------------------------------------
1349
+ ForestRails::SchemaAdapterTest: test_Decimal_should_have_the_type_`Number`
1350
+ --------------------------------------------------------------------------
1351
+  (0.0ms) rollback transaction
1352
+  (0.1ms) begin transaction
1353
+ --------------------------------------------------------
1354
+ ForestRails::SchemaAdapterTest: test_hasOne_relationship
1355
+ --------------------------------------------------------
1356
+  (0.0ms) rollback transaction
1357
+  (0.1ms) begin transaction
1358
+ ---------------------------------------------------------------------------
1359
+ ForestRails::SchemaAdapterTest: test_Boolean_should_have_the_type_`Boolean`
1360
+ ---------------------------------------------------------------------------
1361
+  (0.0ms) rollback transaction
1362
+  (0.1ms) begin transaction
1363
+ --------------------------------------------------------------------------
1364
+ ForestRails::SchemaAdapterTest: test_Integer_should_have_the_type_`Number`
1365
+ --------------------------------------------------------------------------
1366
+  (0.1ms) rollback transaction
1367
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1368
+  (0.1ms) begin transaction
1369
+ ---------------------------
1370
+ ForestRailsTest: test_truth
1371
+ ---------------------------
1372
+  (0.0ms) rollback transaction
1373
+  (0.0ms) begin transaction
1374
+ --------------------------------------------------------
1375
+ ForestRails::SchemaAdapterTest: test_hasOne_relationship
1376
+ --------------------------------------------------------
1377
+  (0.1ms) rollback transaction
1378
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1379
+  (0.1ms) begin transaction
1380
+ ---------------------------
1381
+ ForestRailsTest: test_truth
1382
+ ---------------------------
1383
+  (0.0ms) rollback transaction
1384
+  (0.0ms) begin transaction
1385
+ -----------------------------------------------------------
1386
+ ForestRails::SchemaAdapterTest: test_belongsTo_relationship
1387
+ -----------------------------------------------------------
1388
+  (0.1ms) rollback transaction
1389
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
1390
+  (0.1ms) begin transaction
1391
+ -----------------------------------------------------------
1392
+ ForestRails::SchemaAdapterTest: test_belongsTo_relationship
1393
+ -----------------------------------------------------------
1394
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1395
+  (0.1ms) begin transaction
1396
+ ---------------------------
1397
+ ForestRailsTest: test_truth
1398
+ ---------------------------
1399
+  (0.0ms) rollback transaction
1400
+  (0.0ms) begin transaction
1401
+ -----------------------------------------------------------
1402
+ ForestRails::SchemaAdapterTest: test_belongsTo_relationship
1403
+ -----------------------------------------------------------
1404
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1405
+  (0.1ms) begin transaction
1406
+ ---------------------------
1407
+ ForestRailsTest: test_truth
1408
+ ---------------------------
1409
+  (0.0ms) rollback transaction
1410
+  (0.0ms) begin transaction
1411
+ -----------------------------------------------------------
1412
+ ForestRails::SchemaAdapterTest: test_belongsTo_relationship
1413
+ -----------------------------------------------------------
1414
+  (0.1ms) rollback transaction
1415
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1416
+  (0.1ms) begin transaction
1417
+ ---------------------------
1418
+ ForestRailsTest: test_truth
1419
+ ---------------------------
1420
+  (0.0ms) rollback transaction
1421
+  (0.0ms) begin transaction
1422
+ -----------------------------------------------------------
1423
+ ForestRails::SchemaAdapterTest: test_belongsTo_relationship
1424
+ -----------------------------------------------------------
1425
+  (0.5ms) rollback transaction
1426
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1427
+  (0.1ms) begin transaction
1428
+ ---------------------------
1429
+ ForestRailsTest: test_truth
1430
+ ---------------------------
1431
+  (0.0ms) rollback transaction
1432
+  (0.0ms) begin transaction
1433
+ -----------------------------------------------------------
1434
+ ForestRails::SchemaAdapterTest: test_belongsTo_relationship
1435
+ -----------------------------------------------------------
1436
+  (0.6ms) rollback transaction
1437
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
1438
+  (0.1ms) begin transaction
1439
+ ---------------------------
1440
+ ForestRailsTest: test_truth
1441
+ ---------------------------
1442
+  (0.0ms) rollback transaction
1443
+  (0.1ms) begin transaction
1444
+ -----------------------------------------------------------
1445
+ ForestRails::SchemaAdapterTest: test_belongsTo_relationship
1446
+ -----------------------------------------------------------
1447
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1448
+  (0.1ms) begin transaction
1449
+ ---------------------------
1450
+ ForestRailsTest: test_truth
1451
+ ---------------------------
1452
+  (0.0ms) rollback transaction
1453
+  (0.0ms) begin transaction
1454
+ -----------------------------------------------------------
1455
+ ForestRails::SchemaAdapterTest: test_belongsTo_relationship
1456
+ -----------------------------------------------------------
1457
+  (0.0ms) rollback transaction
1458
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1459
+  (0.1ms) begin transaction
1460
+ --------------------------------------------------------
1461
+ ForestRails::SchemaAdapterTest: test_hasOne_relationship
1462
+ --------------------------------------------------------
1463
+  (0.1ms) rollback transaction
1464
+  (0.0ms) begin transaction
1465
+ --------------------------------------------------------------------------
1466
+ ForestRails::SchemaAdapterTest: test_Integer_should_have_the_type_`Number`
1467
+ --------------------------------------------------------------------------
1468
+  (0.0ms) rollback transaction
1469
+  (0.1ms) begin transaction
1470
+ ---------------------------------------------------------------------
1471
+ ForestRails::SchemaAdapterTest: test_Date_should_have_the_type_`Date`
1472
+ ---------------------------------------------------------------------
1473
+  (0.1ms) rollback transaction
1474
+  (0.1ms) begin transaction
1475
+ ------------------------------------------------------------------------
1476
+ ForestRails::SchemaAdapterTest: test_Float_should_have_the_type_`Number`
1477
+ ------------------------------------------------------------------------
1478
+  (0.0ms) rollback transaction
1479
+  (0.0ms) begin transaction
1480
+ --------------------------------------------------------------------------
1481
+ ForestRails::SchemaAdapterTest: test_Decimal_should_have_the_type_`Number`
1482
+ --------------------------------------------------------------------------
1483
+  (0.1ms) rollback transaction
1484
+  (0.0ms) begin transaction
1485
+ -------------------------------------------------------------------------
1486
+ ForestRails::SchemaAdapterTest: test_DateTime_should_have_the_type_`Date`
1487
+ -------------------------------------------------------------------------
1488
+  (0.0ms) rollback transaction
1489
+  (0.0ms) begin transaction
1490
+ -----------------------------------------------------------
1491
+ ForestRails::SchemaAdapterTest: test_belongsTo_relationship
1492
+ -----------------------------------------------------------
1493
+  (0.0ms) rollback transaction
1494
+  (0.1ms) begin transaction
1495
+ -------------------------------------------------------------------------
1496
+ ForestRails::SchemaAdapterTest: test_String_should_have_the_type_`String`
1497
+ -------------------------------------------------------------------------
1498
+  (0.1ms) rollback transaction
1499
+  (0.1ms) begin transaction
1500
+ ---------------------------------------------------------------------------
1501
+ ForestRails::SchemaAdapterTest: test_Boolean_should_have_the_type_`Boolean`
1502
+ ---------------------------------------------------------------------------
1503
+  (0.1ms) rollback transaction
1504
+  (0.1ms) begin transaction
1505
+ ---------------------------
1506
+ ForestRailsTest: test_truth
1507
+ ---------------------------
1508
+  (0.1ms) rollback transaction
1509
+ ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
1510
+  (0.1ms) begin transaction
1511
+ ---------------------------
1512
+ ForestRailsTest: test_truth
1513
+ ---------------------------
1514
+  (0.0ms) rollback transaction
1515
+  (0.0ms) begin transaction
1516
+ --------------------------------------------------------------------------
1517
+ ForestRails::SchemaAdapterTest: test_Integer_should_have_the_type_`Number`
1518
+ --------------------------------------------------------------------------
1519
+  (0.1ms) rollback transaction
1520
+  (0.1ms) begin transaction
1521
+ -------------------------------------------------------------------------
1522
+ ForestRails::SchemaAdapterTest: test_String_should_have_the_type_`String`
1523
+ -------------------------------------------------------------------------
1524
+  (0.1ms) rollback transaction
1525
+  (0.1ms) begin transaction
1526
+ ---------------------------------------------------------------------
1527
+ ForestRails::SchemaAdapterTest: test_Date_should_have_the_type_`Date`
1528
+ ---------------------------------------------------------------------
1529
+  (0.1ms) rollback transaction
1530
+  (0.0ms) begin transaction
1531
+ -----------------------------------------------------------
1532
+ ForestRails::SchemaAdapterTest: test_belongsTo_relationship
1533
+ -----------------------------------------------------------
1534
+  (0.1ms) rollback transaction
1535
+  (0.0ms) begin transaction
1536
+ ------------------------------------------------------------------------
1537
+ ForestRails::SchemaAdapterTest: test_Float_should_have_the_type_`Number`
1538
+ ------------------------------------------------------------------------
1539
+  (0.0ms) rollback transaction
1540
+  (0.0ms) begin transaction
1541
+ ---------------------------------------------------------------------------
1542
+ ForestRails::SchemaAdapterTest: test_Boolean_should_have_the_type_`Boolean`
1543
+ ---------------------------------------------------------------------------
1544
+  (0.0ms) rollback transaction
1545
+  (0.0ms) begin transaction
1546
+ --------------------------------------------------------------------------
1547
+ ForestRails::SchemaAdapterTest: test_Decimal_should_have_the_type_`Number`
1548
+ --------------------------------------------------------------------------
1549
+  (0.0ms) rollback transaction
1550
+  (0.0ms) begin transaction
1551
+ -------------------------------------------------------------------------
1552
+ ForestRails::SchemaAdapterTest: test_DateTime_should_have_the_type_`Date`
1553
+ -------------------------------------------------------------------------
1554
+  (0.0ms) rollback transaction
1555
+  (0.0ms) begin transaction
1556
+ --------------------------------------------------------
1557
+ ForestRails::SchemaAdapterTest: test_hasOne_relationship
1558
+ --------------------------------------------------------
1559
+  (0.1ms) rollback transaction
1560
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1561
+  (1.7ms) CREATE TABLE "belongs_to_fields" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "has_one_field_id" integer) 
1562
+  (0.1ms) select sqlite_version(*)
1563
+  (1.0ms) CREATE INDEX "index_belongs_to_fields_on_has_one_field_id" ON "belongs_to_fields" ("has_one_field_id")
1564
+  (0.9ms) CREATE TABLE "boolean_fields" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "field" boolean)
1565
+  (0.9ms) CREATE TABLE "date_fields" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "field" date) 
1566
+  (0.9ms) CREATE TABLE "decimal_fields" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "field" decimal)
1567
+  (0.7ms) CREATE TABLE "float_fields" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "field" float) 
1568
+  (1.3ms) CREATE TABLE "has_one_fields" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)
1569
+  (0.9ms) CREATE TABLE "integer_fields" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "field" integer) 
1570
+  (0.8ms) CREATE TABLE "string_fields" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "field" varchar)
1571
+  (1.0ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
1572
+  (1.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1573
+  (0.1ms) SELECT version FROM "schema_migrations"
1574
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150608133044')
1575
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150608130516')
1576
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150608131430')
1577
+  (1.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20150608131603')
1578
+  (1.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20150608131610')
1579
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150608132159')
1580
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20150608132621')
1581
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150608133038')
1582
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1583
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1584
+ Migrating to CreateHasManyField (20150608150016)
1585
+  (0.1ms) begin transaction
1586
+  (0.6ms) CREATE TABLE "has_many_fields" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL) 
1587
+ SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150608150016"]]
1588
+  (0.8ms) commit transaction
1589
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1590
+  (0.1ms)  SELECT sql
1591
+ FROM sqlite_master
1592
+ WHERE name='index_belongs_to_fields_on_has_one_field_id' AND type='index'
1593
+ UNION ALL
1594
+ SELECT sql
1595
+ FROM sqlite_temp_master
1596
+ WHERE name='index_belongs_to_fields_on_has_one_field_id' AND type='index'
1597
+ 
1598
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1599
+  (0.1ms) begin transaction
1600
+ ---------------------------
1601
+ ForestRailsTest: test_truth
1602
+ ---------------------------
1603
+  (0.0ms) rollback transaction
1604
+  (0.0ms) begin transaction
1605
+ --------------------------------------------------------------------------
1606
+ ForestRails::SchemaAdapterTest: test_Integer_should_have_the_type_`Number`
1607
+ --------------------------------------------------------------------------
1608
+  (0.0ms) rollback transaction
1609
+  (0.0ms) begin transaction
1610
+ -------------------------------------------------------------------------
1611
+ ForestRails::SchemaAdapterTest: test_DateTime_should_have_the_type_`Date`
1612
+ -------------------------------------------------------------------------
1613
+  (0.0ms) rollback transaction
1614
+  (0.0ms) begin transaction
1615
+ -----------------------------------------------------------
1616
+ ForestRails::SchemaAdapterTest: test_belongsTo_relationship
1617
+ -----------------------------------------------------------
1618
+  (0.0ms) rollback transaction
1619
+  (0.0ms) begin transaction
1620
+ ------------------------------------------------------------------------
1621
+ ForestRails::SchemaAdapterTest: test_Float_should_have_the_type_`Number`
1622
+ ------------------------------------------------------------------------
1623
+  (0.0ms) rollback transaction
1624
+  (0.1ms) begin transaction
1625
+ --------------------------------------------------------
1626
+ ForestRails::SchemaAdapterTest: test_hasOne_relationship
1627
+ --------------------------------------------------------
1628
+  (0.0ms) rollback transaction
1629
+  (0.0ms) begin transaction
1630
+ ---------------------------------------------------------
1631
+ ForestRails::SchemaAdapterTest: test_hasMany_relationship
1632
+ ---------------------------------------------------------
1633
+  (0.6ms) rollback transaction
1634
+  (0.3ms) begin transaction
1635
+ -------------------------------------------------------------------------
1636
+ ForestRails::SchemaAdapterTest: test_String_should_have_the_type_`String`
1637
+ -------------------------------------------------------------------------
1638
+  (0.4ms) rollback transaction
1639
+  (0.3ms) begin transaction
1640
+ --------------------------------------------------------------------------
1641
+ ForestRails::SchemaAdapterTest: test_Decimal_should_have_the_type_`Number`
1642
+ --------------------------------------------------------------------------
1643
+  (0.4ms) rollback transaction
1644
+  (0.2ms) begin transaction
1645
+ ---------------------------------------------------------------------------
1646
+ ForestRails::SchemaAdapterTest: test_Boolean_should_have_the_type_`Boolean`
1647
+ ---------------------------------------------------------------------------
1648
+  (0.2ms) rollback transaction
1649
+  (0.3ms) begin transaction
1650
+ ---------------------------------------------------------------------
1651
+ ForestRails::SchemaAdapterTest: test_Date_should_have_the_type_`Date`
1652
+ ---------------------------------------------------------------------
1653
+  (0.3ms) rollback transaction
1654
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
1655
+  (0.1ms) begin transaction
1656
+ ---------------------------
1657
+ ForestRailsTest: test_truth
1658
+ ---------------------------
1659
+  (0.1ms) rollback transaction
1660
+  (0.2ms) begin transaction
1661
+ ---------------------------------------------------------------------------
1662
+ ForestRails::SchemaAdapterTest: test_Boolean_should_have_the_type_`Boolean`
1663
+ ---------------------------------------------------------------------------
1664
+  (0.1ms) rollback transaction
1665
+  (0.1ms) begin transaction
1666
+ --------------------------------------------------------------------------
1667
+ ForestRails::SchemaAdapterTest: test_Decimal_should_have_the_type_`Number`
1668
+ --------------------------------------------------------------------------
1669
+  (0.1ms) rollback transaction
1670
+  (0.1ms) begin transaction
1671
+ ------------------------------------------------------------------------
1672
+ ForestRails::SchemaAdapterTest: test_Float_should_have_the_type_`Number`
1673
+ ------------------------------------------------------------------------
1674
+  (0.1ms) rollback transaction
1675
+  (0.1ms) begin transaction
1676
+ -------------------------------------------------------------------------
1677
+ ForestRails::SchemaAdapterTest: test_DateTime_should_have_the_type_`Date`
1678
+ -------------------------------------------------------------------------
1679
+  (0.1ms) rollback transaction
1680
+  (0.2ms) begin transaction
1681
+ --------------------------------------------------------
1682
+ ForestRails::SchemaAdapterTest: test_hasOne_relationship
1683
+ --------------------------------------------------------
1684
+  (0.1ms) rollback transaction
1685
+  (0.1ms) begin transaction
1686
+ -----------------------------------------------------------
1687
+ ForestRails::SchemaAdapterTest: test_belongsTo_relationship
1688
+ -----------------------------------------------------------
1689
+  (0.1ms) rollback transaction
1690
+  (0.1ms) begin transaction
1691
+ ---------------------------------------------------------------------
1692
+ ForestRails::SchemaAdapterTest: test_Date_should_have_the_type_`Date`
1693
+ ---------------------------------------------------------------------
1694
+  (0.1ms) rollback transaction
1695
+  (0.1ms) begin transaction
1696
+ --------------------------------------------------------------------------
1697
+ ForestRails::SchemaAdapterTest: test_Integer_should_have_the_type_`Number`
1698
+ --------------------------------------------------------------------------
1699
+  (0.1ms) rollback transaction
1700
+  (0.1ms) begin transaction
1701
+ ---------------------------------------------------------
1702
+ ForestRails::SchemaAdapterTest: test_hasMany_relationship
1703
+ ---------------------------------------------------------
1704
+  (0.0ms) rollback transaction
1705
+  (0.1ms) begin transaction
1706
+ -------------------------------------------------------------------------
1707
+ ForestRails::SchemaAdapterTest: test_String_should_have_the_type_`String`
1708
+ -------------------------------------------------------------------------
1709
+  (0.0ms) rollback transaction
1710
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1711
+  (0.1ms) begin transaction
1712
+ ---------------------------
1713
+ ForestRailsTest: test_truth
1714
+ ---------------------------
1715
+  (0.0ms) rollback transaction
1716
+  (0.0ms) begin transaction
1717
+ ------------------------------------------------------------------------
1718
+ ForestRails::SchemaAdapterTest: test_Float_should_have_the_type_`Number`
1719
+ ------------------------------------------------------------------------
1720
+  (0.0ms) rollback transaction
1721
+  (0.1ms) begin transaction
1722
+ -------------------------------------------------------------------------
1723
+ ForestRails::SchemaAdapterTest: test_DateTime_should_have_the_type_`Date`
1724
+ -------------------------------------------------------------------------
1725
+  (0.0ms) rollback transaction
1726
+  (0.0ms) begin transaction
1727
+ -------------------------------------------------------------------------
1728
+ ForestRails::SchemaAdapterTest: test_String_should_have_the_type_`String`
1729
+ -------------------------------------------------------------------------
1730
+  (0.1ms) rollback transaction
1731
+  (0.0ms) begin transaction
1732
+ ---------------------------------------------------------
1733
+ ForestRails::SchemaAdapterTest: test_hasMany_relationship
1734
+ ---------------------------------------------------------
1735
+  (0.1ms) rollback transaction
1736
+  (0.1ms) begin transaction
1737
+ ---------------------------------------------------------------------------
1738
+ ForestRails::SchemaAdapterTest: test_Boolean_should_have_the_type_`Boolean`
1739
+ ---------------------------------------------------------------------------
1740
+  (0.0ms) rollback transaction
1741
+  (0.1ms) begin transaction
1742
+ --------------------------------------------------------
1743
+ ForestRails::SchemaAdapterTest: test_hasOne_relationship
1744
+ --------------------------------------------------------
1745
+  (0.0ms) rollback transaction
1746
+  (0.0ms) begin transaction
1747
+ -----------------------------------------------------------
1748
+ ForestRails::SchemaAdapterTest: test_belongsTo_relationship
1749
+ -----------------------------------------------------------
1750
+  (0.1ms) rollback transaction
1751
+  (0.1ms) begin transaction
1752
+ --------------------------------------------------------------------------
1753
+ ForestRails::SchemaAdapterTest: test_Decimal_should_have_the_type_`Number`
1754
+ --------------------------------------------------------------------------
1755
+  (0.0ms) rollback transaction
1756
+  (0.1ms) begin transaction
1757
+ ---------------------------------------------------------------------
1758
+ ForestRails::SchemaAdapterTest: test_Date_should_have_the_type_`Date`
1759
+ ---------------------------------------------------------------------
1760
+  (0.0ms) rollback transaction
1761
+  (0.0ms) begin transaction
1762
+ --------------------------------------------------------------------------
1763
+ ForestRails::SchemaAdapterTest: test_Integer_should_have_the_type_`Number`
1764
+ --------------------------------------------------------------------------
1765
+  (0.0ms) rollback transaction
1766
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
1767
+  (0.1ms) begin transaction
1768
+ ---------------------------
1769
+ ForestRailsTest: test_truth
1770
+ ---------------------------
1771
+  (0.0ms) rollback transaction
1772
+  (0.1ms) begin transaction
1773
+ ---------------------------------------------------------
1774
+ ForestRails::SchemaAdapterTest: test_hasMany_relationship
1775
+ ---------------------------------------------------------
1776
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
1777
+  (0.1ms) begin transaction
1778
+ ---------------------------
1779
+ ForestRailsTest: test_truth
1780
+ ---------------------------
1781
+  (0.0ms) rollback transaction
1782
+  (0.0ms) begin transaction
1783
+ --------------------------------------------------------------------------
1784
+ ForestRails::SchemaAdapterTest: test_Decimal_should_have_the_type_`Number`
1785
+ --------------------------------------------------------------------------
1786
+  (0.0ms) rollback transaction
1787
+  (0.0ms) begin transaction
1788
+ -------------------------------------------------------------------------
1789
+ ForestRails::SchemaAdapterTest: test_DateTime_should_have_the_type_`Date`
1790
+ -------------------------------------------------------------------------
1791
+  (0.0ms) rollback transaction
1792
+  (0.1ms) begin transaction
1793
+ -------------------------------------------------------------------------
1794
+ ForestRails::SchemaAdapterTest: test_String_should_have_the_type_`String`
1795
+ -------------------------------------------------------------------------
1796
+  (0.1ms) rollback transaction
1797
+  (0.0ms) begin transaction
1798
+ ------------------------------------------------------------------------
1799
+ ForestRails::SchemaAdapterTest: test_Float_should_have_the_type_`Number`
1800
+ ------------------------------------------------------------------------
1801
+  (0.0ms) rollback transaction
1802
+  (0.1ms) begin transaction
1803
+ ---------------------------------------------------------------------
1804
+ ForestRails::SchemaAdapterTest: test_Date_should_have_the_type_`Date`
1805
+ ---------------------------------------------------------------------
1806
+  (0.1ms) rollback transaction
1807
+  (0.1ms) begin transaction
1808
+ ---------------------------------------------------------
1809
+ ForestRails::SchemaAdapterTest: test_hasMany_relationship
1810
+ ---------------------------------------------------------
1811
+  (0.1ms) rollback transaction
1812
+  (0.1ms) begin transaction
1813
+ ---------------------------------------------------------------------------
1814
+ ForestRails::SchemaAdapterTest: test_Boolean_should_have_the_type_`Boolean`
1815
+ ---------------------------------------------------------------------------
1816
+  (0.1ms) rollback transaction
1817
+  (0.1ms) begin transaction
1818
+ -----------------------------------------------------------
1819
+ ForestRails::SchemaAdapterTest: test_belongsTo_relationship
1820
+ -----------------------------------------------------------
1821
+  (0.0ms) rollback transaction
1822
+  (0.0ms) begin transaction
1823
+ --------------------------------------------------------------------------
1824
+ ForestRails::SchemaAdapterTest: test_Integer_should_have_the_type_`Number`
1825
+ --------------------------------------------------------------------------
1826
+  (0.3ms) rollback transaction
1827
+  (0.0ms) begin transaction
1828
+ --------------------------------------------------------
1829
+ ForestRails::SchemaAdapterTest: test_hasOne_relationship
1830
+ --------------------------------------------------------
1831
+  (0.1ms) rollback transaction
1832
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1833
+  (0.1ms) begin transaction
1834
+ ---------------------------
1835
+ ForestRailsTest: test_truth
1836
+ ---------------------------
1837
+  (0.0ms) rollback transaction
1838
+  (0.0ms) begin transaction
1839
+ -------------------------------------------------------------------------
1840
+ ForestRails::SchemaAdapterTest: test_String_should_have_the_type_`String`
1841
+ -------------------------------------------------------------------------
1842
+  (0.1ms) rollback transaction
1843
+  (0.1ms) begin transaction
1844
+ -----------------------------------------------------------
1845
+ ForestRails::SchemaAdapterTest: test_belongsTo_relationship
1846
+ -----------------------------------------------------------
1847
+  (0.1ms) rollback transaction
1848
+  (0.1ms) begin transaction
1849
+ --------------------------------------------------------
1850
+ ForestRails::SchemaAdapterTest: test_hasOne_relationship
1851
+ --------------------------------------------------------
1852
+  (0.0ms) rollback transaction
1853
+  (0.0ms) begin transaction
1854
+ --------------------------------------------------------------------------
1855
+ ForestRails::SchemaAdapterTest: test_Integer_should_have_the_type_`Number`
1856
+ --------------------------------------------------------------------------
1857
+  (0.0ms) rollback transaction
1858
+  (0.1ms) begin transaction
1859
+ -------------------------------------------------------------------------
1860
+ ForestRails::SchemaAdapterTest: test_DateTime_should_have_the_type_`Date`
1861
+ -------------------------------------------------------------------------
1862
+  (0.0ms) rollback transaction
1863
+  (0.0ms) begin transaction
1864
+ --------------------------------------------------------------------------
1865
+ ForestRails::SchemaAdapterTest: test_Decimal_should_have_the_type_`Number`
1866
+ --------------------------------------------------------------------------
1867
+  (0.0ms) rollback transaction
1868
+  (0.1ms) begin transaction
1869
+ ---------------------------------------------------------------------
1870
+ ForestRails::SchemaAdapterTest: test_Date_should_have_the_type_`Date`
1871
+ ---------------------------------------------------------------------
1872
+  (0.0ms) rollback transaction
1873
+  (0.0ms) begin transaction
1874
+ ------------------------------------------------------------------------
1875
+ ForestRails::SchemaAdapterTest: test_Float_should_have_the_type_`Number`
1876
+ ------------------------------------------------------------------------
1877
+  (0.0ms) rollback transaction
1878
+  (0.0ms) begin transaction
1879
+ ---------------------------------------------------------------------------
1880
+ ForestRails::SchemaAdapterTest: test_Boolean_should_have_the_type_`Boolean`
1881
+ ---------------------------------------------------------------------------
1882
+  (0.0ms) rollback transaction
1883
+  (0.0ms) begin transaction
1884
+ ---------------------------------------------------------
1885
+ ForestRails::SchemaAdapterTest: test_hasMany_relationship
1886
+ ---------------------------------------------------------
1887
+  (0.0ms) rollback transaction
1888
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1889
+  (0.1ms) begin transaction
1890
+ ---------------------------
1891
+ ForestRailsTest: test_truth
1892
+ ---------------------------
1893
+  (0.0ms) rollback transaction
1894
+  (0.0ms) begin transaction
1895
+ ---------------------------------------------------------------------------
1896
+ ForestRails::SchemaAdapterTest: test_Boolean_should_have_the_type_`Boolean`
1897
+ ---------------------------------------------------------------------------
1898
+  (0.0ms) rollback transaction
1899
+  (0.2ms) begin transaction
1900
+ ---------------------------------------------------------
1901
+ ForestRails::SchemaAdapterTest: test_hasMany_relationship
1902
+ ---------------------------------------------------------
1903
+  (0.1ms) rollback transaction
1904
+  (0.3ms) begin transaction
1905
+ ------------------------------------------------------------------------
1906
+ ForestRails::SchemaAdapterTest: test_Float_should_have_the_type_`Number`
1907
+ ------------------------------------------------------------------------
1908
+  (0.1ms) rollback transaction
1909
+  (0.0ms) begin transaction
1910
+ --------------------------------------------------------------------------
1911
+ ForestRails::SchemaAdapterTest: test_Integer_should_have_the_type_`Number`
1912
+ --------------------------------------------------------------------------
1913
+  (0.1ms) rollback transaction
1914
+  (0.1ms) begin transaction
1915
+ -------------------------------------------------------------------------
1916
+ ForestRails::SchemaAdapterTest: test_String_should_have_the_type_`String`
1917
+ -------------------------------------------------------------------------
1918
+  (0.0ms) rollback transaction
1919
+  (0.2ms) begin transaction
1920
+ --------------------------------------------------------------------------
1921
+ ForestRails::SchemaAdapterTest: test_Decimal_should_have_the_type_`Number`
1922
+ --------------------------------------------------------------------------
1923
+  (0.1ms) rollback transaction
1924
+  (0.1ms) begin transaction
1925
+ -------------------------------------------------------------------------
1926
+ ForestRails::SchemaAdapterTest: test_DateTime_should_have_the_type_`Date`
1927
+ -------------------------------------------------------------------------
1928
+  (0.1ms) rollback transaction
1929
+  (0.1ms) begin transaction
1930
+ --------------------------------------------------------
1931
+ ForestRails::SchemaAdapterTest: test_hasOne_relationship
1932
+ --------------------------------------------------------
1933
+  (0.0ms) rollback transaction
1934
+  (0.0ms) begin transaction
1935
+ ---------------------------------------------------------------------
1936
+ ForestRails::SchemaAdapterTest: test_Date_should_have_the_type_`Date`
1937
+ ---------------------------------------------------------------------
1938
+  (0.0ms) rollback transaction
1939
+  (0.0ms) begin transaction
1940
+ -----------------------------------------------------------
1941
+ ForestRails::SchemaAdapterTest: test_belongsTo_relationship
1942
+ -----------------------------------------------------------
1943
+  (0.1ms) rollback transaction
1944
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1945
+  (0.1ms) begin transaction
1946
+ --------------------------------------------------------------------------
1947
+ ForestRails::SchemaAdapterTest: test_Integer_should_have_the_type_`Number`
1948
+ --------------------------------------------------------------------------
1949
+  (0.1ms) rollback transaction
1950
+  (0.1ms) begin transaction
1951
+ ---------------------------------------------------------
1952
+ ForestRails::SchemaAdapterTest: test_hasMany_relationship
1953
+ ---------------------------------------------------------
1954
+  (0.1ms) rollback transaction
1955
+  (0.1ms) begin transaction
1956
+ ---------------------------------------------------------------------
1957
+ ForestRails::SchemaAdapterTest: test_Date_should_have_the_type_`Date`
1958
+ ---------------------------------------------------------------------
1959
+  (0.0ms) rollback transaction
1960
+  (0.0ms) begin transaction
1961
+ ---------------------------------------------------------------------------
1962
+ ForestRails::SchemaAdapterTest: test_Boolean_should_have_the_type_`Boolean`
1963
+ ---------------------------------------------------------------------------
1964
+  (0.0ms) rollback transaction
1965
+  (0.0ms) begin transaction
1966
+ -----------------------------------------------------------
1967
+ ForestRails::SchemaAdapterTest: test_belongsTo_relationship
1968
+ -----------------------------------------------------------
1969
+  (0.0ms) rollback transaction
1970
+  (0.0ms) begin transaction
1971
+ -------------------------------------------------------------------------
1972
+ ForestRails::SchemaAdapterTest: test_DateTime_should_have_the_type_`Date`
1973
+ -------------------------------------------------------------------------
1974
+  (0.0ms) rollback transaction
1975
+  (0.0ms) begin transaction
1976
+ -------------------------------------------------------------------------
1977
+ ForestRails::SchemaAdapterTest: test_String_should_have_the_type_`String`
1978
+ -------------------------------------------------------------------------
1979
+  (0.1ms) rollback transaction
1980
+  (0.1ms) begin transaction
1981
+ --------------------------------------------------------
1982
+ ForestRails::SchemaAdapterTest: test_hasOne_relationship
1983
+ --------------------------------------------------------
1984
+  (0.0ms) rollback transaction
1985
+  (0.1ms) begin transaction
1986
+ --------------------------------------------------------------------------
1987
+ ForestRails::SchemaAdapterTest: test_Decimal_should_have_the_type_`Number`
1988
+ --------------------------------------------------------------------------
1989
+  (0.1ms) rollback transaction
1990
+  (0.1ms) begin transaction
1991
+ ------------------------------------------------------------------------
1992
+ ForestRails::SchemaAdapterTest: test_Float_should_have_the_type_`Number`
1993
+ ------------------------------------------------------------------------
1994
+  (0.1ms) rollback transaction
1995
+  (0.0ms) begin transaction
1996
+ ---------------------------
1997
+ ForestRailsTest: test_truth
1998
+ ---------------------------
1999
+  (0.0ms) rollback transaction
2000
+ ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
2001
+  (0.1ms) begin transaction
2002
+ ---------------------------------------------------------------------------
2003
+ ForestRails::SchemaAdapterTest: test_Boolean_should_have_the_type_`Boolean`
2004
+ ---------------------------------------------------------------------------
2005
+  (0.1ms) rollback transaction
2006
+  (0.1ms) begin transaction
2007
+ --------------------------------------------------------------------------
2008
+ ForestRails::SchemaAdapterTest: test_Integer_should_have_the_type_`Number`
2009
+ --------------------------------------------------------------------------
2010
+  (0.1ms) rollback transaction
2011
+  (0.1ms) begin transaction
2012
+ ---------------------------------------------------------------------
2013
+ ForestRails::SchemaAdapterTest: test_Date_should_have_the_type_`Date`
2014
+ ---------------------------------------------------------------------
2015
+  (0.0ms) rollback transaction
2016
+  (0.1ms) begin transaction
2017
+ --------------------------------------------------------
2018
+ ForestRails::SchemaAdapterTest: test_hasOne_relationship
2019
+ --------------------------------------------------------
2020
+  (0.1ms) rollback transaction
2021
+  (0.1ms) begin transaction
2022
+ -------------------------------------------------------------------------
2023
+ ForestRails::SchemaAdapterTest: test_String_should_have_the_type_`String`
2024
+ -------------------------------------------------------------------------
2025
+  (0.1ms) rollback transaction
2026
+  (0.1ms) begin transaction
2027
+ ---------------------------------------------------------
2028
+ ForestRails::SchemaAdapterTest: test_hasMany_relationship
2029
+ ---------------------------------------------------------
2030
+  (0.0ms) rollback transaction
2031
+  (0.1ms) begin transaction
2032
+ ------------------------------------------------------------------------
2033
+ ForestRails::SchemaAdapterTest: test_Float_should_have_the_type_`Number`
2034
+ ------------------------------------------------------------------------
2035
+  (0.0ms) rollback transaction
2036
+  (0.0ms) begin transaction
2037
+ -------------------------------------------------------------------------
2038
+ ForestRails::SchemaAdapterTest: test_DateTime_should_have_the_type_`Date`
2039
+ -------------------------------------------------------------------------
2040
+  (0.1ms) rollback transaction
2041
+  (0.1ms) begin transaction
2042
+ -----------------------------------------------------------
2043
+ ForestRails::SchemaAdapterTest: test_belongsTo_relationship
2044
+ -----------------------------------------------------------
2045
+  (0.0ms) rollback transaction
2046
+  (0.1ms) begin transaction
2047
+ --------------------------------------------------------------------------
2048
+ ForestRails::SchemaAdapterTest: test_Decimal_should_have_the_type_`Number`
2049
+ --------------------------------------------------------------------------
2050
+  (0.0ms) rollback transaction
2051
+  (0.1ms) begin transaction
2052
+ ---------------------------
2053
+ ForestRailsTest: test_truth
2054
+ ---------------------------
2055
+  (0.0ms) rollback transaction
2056
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
2057
+  (0.1ms) begin transaction
2058
+ ---------------------------------------------------------------------------
2059
+ ForestRails::SchemaAdapterTest: test_Boolean_should_have_the_type_`Boolean`
2060
+ ---------------------------------------------------------------------------
2061
+  (0.0ms) rollback transaction
2062
+  (0.1ms) begin transaction
2063
+ -------------------------------------------------------------------------
2064
+ ForestRails::SchemaAdapterTest: test_DateTime_should_have_the_type_`Date`
2065
+ -------------------------------------------------------------------------
2066
+  (0.0ms) rollback transaction
2067
+  (0.0ms) begin transaction
2068
+ ------------------------------------------------------------------------
2069
+ ForestRails::SchemaAdapterTest: test_Float_should_have_the_type_`Number`
2070
+ ------------------------------------------------------------------------
2071
+  (0.0ms) rollback transaction
2072
+  (0.0ms) begin transaction
2073
+ ---------------------------------------------------------------------
2074
+ ForestRails::SchemaAdapterTest: test_Date_should_have_the_type_`Date`
2075
+ ---------------------------------------------------------------------
2076
+  (0.0ms) rollback transaction
2077
+  (0.0ms) begin transaction
2078
+ -------------------------------------------------------------------------
2079
+ ForestRails::SchemaAdapterTest: test_String_should_have_the_type_`String`
2080
+ -------------------------------------------------------------------------
2081
+  (0.1ms) rollback transaction
2082
+  (0.0ms) begin transaction
2083
+ ---------------------------------------------------------
2084
+ ForestRails::SchemaAdapterTest: test_hasMany_relationship
2085
+ ---------------------------------------------------------
2086
+  (0.0ms) rollback transaction
2087
+  (0.1ms) begin transaction
2088
+ --------------------------------------------------------------------------
2089
+ ForestRails::SchemaAdapterTest: test_Decimal_should_have_the_type_`Number`
2090
+ --------------------------------------------------------------------------
2091
+  (0.1ms) rollback transaction
2092
+  (0.0ms) begin transaction
2093
+ -----------------------------------------------------------
2094
+ ForestRails::SchemaAdapterTest: test_belongsTo_relationship
2095
+ -----------------------------------------------------------
2096
+  (0.0ms) rollback transaction
2097
+  (0.0ms) begin transaction
2098
+ --------------------------------------------------------------------------
2099
+ ForestRails::SchemaAdapterTest: test_Integer_should_have_the_type_`Number`
2100
+ --------------------------------------------------------------------------
2101
+  (0.0ms) rollback transaction
2102
+  (0.0ms) begin transaction
2103
+ --------------------------------------------------------
2104
+ ForestRails::SchemaAdapterTest: test_hasOne_relationship
2105
+ --------------------------------------------------------
2106
+  (0.1ms) rollback transaction
2107
+  (0.0ms) begin transaction
2108
+ ---------------------------
2109
+ ForestRailsTest: test_truth
2110
+ ---------------------------
2111
+  (0.1ms) rollback transaction
2112
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
2113
+  (0.1ms) begin transaction
2114
+ ---------------------------
2115
+ ForestRailsTest: test_truth
2116
+ ---------------------------
2117
+  (0.1ms) rollback transaction
2118
+  (0.1ms) begin transaction
2119
+ ---------------------------------------------------------------------------
2120
+ ForestRails::SchemaAdapterTest: test_Boolean_should_have_the_type_`Boolean`
2121
+ ---------------------------------------------------------------------------
2122
+  (0.1ms) rollback transaction
2123
+  (0.1ms) begin transaction
2124
+ -----------------------------------------------------------
2125
+ ForestRails::SchemaAdapterTest: test_belongsTo_relationship
2126
+ -----------------------------------------------------------
2127
+  (0.1ms) rollback transaction
2128
+  (0.0ms) begin transaction
2129
+ -------------------------------------------------------------------------
2130
+ ForestRails::SchemaAdapterTest: test_String_should_have_the_type_`String`
2131
+ -------------------------------------------------------------------------
2132
+  (0.0ms) rollback transaction
2133
+  (0.0ms) begin transaction
2134
+ --------------------------------------------------------------------------
2135
+ ForestRails::SchemaAdapterTest: test_Decimal_should_have_the_type_`Number`
2136
+ --------------------------------------------------------------------------
2137
+  (0.0ms) rollback transaction
2138
+  (0.0ms) begin transaction
2139
+ ------------------------------------------------------------------------
2140
+ ForestRails::SchemaAdapterTest: test_Float_should_have_the_type_`Number`
2141
+ ------------------------------------------------------------------------
2142
+  (0.0ms) rollback transaction
2143
+  (0.0ms) begin transaction
2144
+ ---------------------------------------------------------
2145
+ ForestRails::SchemaAdapterTest: test_hasMany_relationship
2146
+ ---------------------------------------------------------
2147
+  (0.0ms) rollback transaction
2148
+  (0.0ms) begin transaction
2149
+ -------------------------------------------------------------------------
2150
+ ForestRails::SchemaAdapterTest: test_DateTime_should_have_the_type_`Date`
2151
+ -------------------------------------------------------------------------
2152
+  (0.1ms) rollback transaction
2153
+  (0.0ms) begin transaction
2154
+ ---------------------------------------------------------------------
2155
+ ForestRails::SchemaAdapterTest: test_Date_should_have_the_type_`Date`
2156
+ ---------------------------------------------------------------------
2157
+  (0.0ms) rollback transaction
2158
+  (0.0ms) begin transaction
2159
+ --------------------------------------------------------
2160
+ ForestRails::SchemaAdapterTest: test_hasOne_relationship
2161
+ --------------------------------------------------------
2162
+  (0.2ms) rollback transaction
2163
+  (0.1ms) begin transaction
2164
+ --------------------------------------------------------------------------
2165
+ ForestRails::SchemaAdapterTest: test_Integer_should_have_the_type_`Number`
2166
+ --------------------------------------------------------------------------
2167
+  (0.0ms) rollback transaction
2168
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
2169
+  (0.1ms) begin transaction
2170
+ ---------------------------
2171
+ ForestRailsTest: test_truth
2172
+ ---------------------------
2173
+  (0.0ms) rollback transaction
2174
+  (0.0ms) begin transaction
2175
+ ---------------------------------------------------------------------------
2176
+ ForestRails::SchemaAdapterTest: test_Boolean_should_have_the_type_`Boolean`
2177
+ ---------------------------------------------------------------------------
2178
+  (0.0ms) rollback transaction
2179
+  (0.0ms) begin transaction
2180
+ --------------------------------------------------------------------------
2181
+ ForestRails::SchemaAdapterTest: test_Integer_should_have_the_type_`Number`
2182
+ --------------------------------------------------------------------------
2183
+  (0.0ms) rollback transaction
2184
+  (0.0ms) begin transaction
2185
+ ---------------------------------------------------------------------
2186
+ ForestRails::SchemaAdapterTest: test_Date_should_have_the_type_`Date`
2187
+ ---------------------------------------------------------------------
2188
+  (0.1ms) rollback transaction
2189
+  (0.1ms) begin transaction
2190
+ ---------------------------------------------------------
2191
+ ForestRails::SchemaAdapterTest: test_hasMany_relationship
2192
+ ---------------------------------------------------------
2193
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
2194
+  (0.1ms) begin transaction
2195
+ --------------------------------------------------------------------------
2196
+ ForestRails::SchemaAdapterTest: test_Integer_should_have_the_type_`Number`
2197
+ --------------------------------------------------------------------------
2198
+  (0.2ms) rollback transaction
2199
+  (0.1ms) begin transaction
2200
+ -------------------------------------------------------------------------
2201
+ ForestRails::SchemaAdapterTest: test_String_should_have_the_type_`String`
2202
+ -------------------------------------------------------------------------
2203
+  (0.0ms) rollback transaction
2204
+  (0.0ms) begin transaction
2205
+ ---------------------------------------------------------------------
2206
+ ForestRails::SchemaAdapterTest: test_Date_should_have_the_type_`Date`
2207
+ ---------------------------------------------------------------------
2208
+  (0.1ms) rollback transaction
2209
+  (0.1ms) begin transaction
2210
+ --------------------------------------------------------
2211
+ ForestRails::SchemaAdapterTest: test_hasOne_relationship
2212
+ --------------------------------------------------------
2213
+  (0.0ms) rollback transaction
2214
+  (0.0ms) begin transaction
2215
+ ------------------------------------------------------------------------
2216
+ ForestRails::SchemaAdapterTest: test_Float_should_have_the_type_`Number`
2217
+ ------------------------------------------------------------------------
2218
+  (0.0ms) rollback transaction
2219
+  (0.0ms) begin transaction
2220
+ ---------------------------------------------------------
2221
+ ForestRails::SchemaAdapterTest: test_hasMany_relationship
2222
+ ---------------------------------------------------------
2223
+  (0.0ms) rollback transaction
2224
+  (0.0ms) begin transaction
2225
+ ---------------------------------------------------------------------------
2226
+ ForestRails::SchemaAdapterTest: test_Boolean_should_have_the_type_`Boolean`
2227
+ ---------------------------------------------------------------------------
2228
+  (0.0ms) rollback transaction
2229
+  (0.1ms) begin transaction
2230
+ --------------------------------------------------------------------------
2231
+ ForestRails::SchemaAdapterTest: test_Decimal_should_have_the_type_`Number`
2232
+ --------------------------------------------------------------------------
2233
+  (0.1ms) rollback transaction
2234
+  (0.1ms) begin transaction
2235
+ -----------------------------------------------------------
2236
+ ForestRails::SchemaAdapterTest: test_belongsTo_relationship
2237
+ -----------------------------------------------------------
2238
+  (0.1ms) rollback transaction
2239
+  (0.1ms) begin transaction
2240
+ -------------------------------------------------------------------------
2241
+ ForestRails::SchemaAdapterTest: test_DateTime_should_have_the_type_`Date`
2242
+ -------------------------------------------------------------------------
2243
+  (0.0ms) rollback transaction
2244
+  (0.0ms) begin transaction
2245
+ ---------------------------
2246
+ ForestRailsTest: test_truth
2247
+ ---------------------------
2248
+  (0.0ms) rollback transaction
2249
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
2250
+  (0.1ms) begin transaction
2251
+ ---------------------------
2252
+ ForestRailsTest: test_truth
2253
+ ---------------------------
2254
+  (0.0ms) rollback transaction
2255
+  (0.0ms) begin transaction
2256
+ ------------------------------------------------------------------------
2257
+ ForestRails::SchemaAdapterTest: test_Float_should_have_the_type_`Number`
2258
+ ------------------------------------------------------------------------
2259
+  (0.0ms) rollback transaction
2260
+  (0.1ms) begin transaction
2261
+ --------------------------------------------------------------------------
2262
+ ForestRails::SchemaAdapterTest: test_Integer_should_have_the_type_`Number`
2263
+ --------------------------------------------------------------------------
2264
+  (0.1ms) rollback transaction
2265
+  (0.1ms) begin transaction
2266
+ -------------------------------------------------------------------------
2267
+ ForestRails::SchemaAdapterTest: test_String_should_have_the_type_`String`
2268
+ -------------------------------------------------------------------------
2269
+  (0.0ms) rollback transaction
2270
+  (0.1ms) begin transaction
2271
+ ---------------------------------------------------------------------
2272
+ ForestRails::SchemaAdapterTest: test_Date_should_have_the_type_`Date`
2273
+ ---------------------------------------------------------------------
2274
+  (0.0ms) rollback transaction
2275
+  (0.0ms) begin transaction
2276
+ ---------------------------------------------------------------------------
2277
+ ForestRails::SchemaAdapterTest: test_Boolean_should_have_the_type_`Boolean`
2278
+ ---------------------------------------------------------------------------
2279
+  (0.0ms) rollback transaction
2280
+  (0.1ms) begin transaction
2281
+ --------------------------------------------------------
2282
+ ForestRails::SchemaAdapterTest: test_hasOne_relationship
2283
+ --------------------------------------------------------
2284
+  (0.1ms) rollback transaction
2285
+  (0.1ms) begin transaction
2286
+ -------------------------------------------------------------------------
2287
+ ForestRails::SchemaAdapterTest: test_DateTime_should_have_the_type_`Date`
2288
+ -------------------------------------------------------------------------
2289
+  (0.1ms) rollback transaction
2290
+  (0.1ms) begin transaction
2291
+ --------------------------------------------------------------------------
2292
+ ForestRails::SchemaAdapterTest: test_Decimal_should_have_the_type_`Number`
2293
+ --------------------------------------------------------------------------
2294
+  (0.0ms) rollback transaction
2295
+  (0.0ms) begin transaction
2296
+ ---------------------------------------------------------
2297
+ ForestRails::SchemaAdapterTest: test_hasMany_relationship
2298
+ ---------------------------------------------------------
2299
+  (0.0ms) rollback transaction
2300
+  (0.2ms) begin transaction
2301
+ -----------------------------------------------------------
2302
+ ForestRails::SchemaAdapterTest: test_belongsTo_relationship
2303
+ -----------------------------------------------------------
2304
+  (0.1ms) rollback transaction
2305
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
2306
+  (0.1ms) begin transaction
2307
+ --------------------------------------------------------
2308
+ ForestRails::SchemaAdapterTest: test_hasOne_relationship
2309
+ --------------------------------------------------------
2310
+  (0.0ms) rollback transaction
2311
+  (0.1ms) begin transaction
2312
+ -----------------------------------------------------------
2313
+ ForestRails::SchemaAdapterTest: test_belongsTo_relationship
2314
+ -----------------------------------------------------------
2315
+  (0.0ms) rollback transaction
2316
+  (0.0ms) begin transaction
2317
+ -------------------------------------------------------------------------
2318
+ ForestRails::SchemaAdapterTest: test_DateTime_should_have_the_type_`Date`
2319
+ -------------------------------------------------------------------------
2320
+  (0.1ms) rollback transaction
2321
+  (0.0ms) begin transaction
2322
+ --------------------------------------------------------------------------
2323
+ ForestRails::SchemaAdapterTest: test_Decimal_should_have_the_type_`Number`
2324
+ --------------------------------------------------------------------------
2325
+  (0.0ms) rollback transaction
2326
+  (0.0ms) begin transaction
2327
+ ---------------------------------------------------------------------
2328
+ ForestRails::SchemaAdapterTest: test_Date_should_have_the_type_`Date`
2329
+ ---------------------------------------------------------------------
2330
+  (0.0ms) rollback transaction
2331
+  (0.0ms) begin transaction
2332
+ ------------------------------------------------------------------------
2333
+ ForestRails::SchemaAdapterTest: test_Float_should_have_the_type_`Number`
2334
+ ------------------------------------------------------------------------
2335
+  (0.1ms) rollback transaction
2336
+  (0.0ms) begin transaction
2337
+ -------------------------------------------------------------------------
2338
+ ForestRails::SchemaAdapterTest: test_String_should_have_the_type_`String`
2339
+ -------------------------------------------------------------------------
2340
+  (0.0ms) rollback transaction
2341
+  (0.0ms) begin transaction
2342
+ ---------------------------------------------------------
2343
+ ForestRails::SchemaAdapterTest: test_hasMany_relationship
2344
+ ---------------------------------------------------------
2345
+  (0.0ms) rollback transaction
2346
+  (0.0ms) begin transaction
2347
+ ---------------------------------------------------------------------------
2348
+ ForestRails::SchemaAdapterTest: test_Boolean_should_have_the_type_`Boolean`
2349
+ ---------------------------------------------------------------------------
2350
+  (0.0ms) rollback transaction
2351
+  (0.2ms) begin transaction
2352
+ --------------------------------------------------------------------------
2353
+ ForestRails::SchemaAdapterTest: test_Integer_should_have_the_type_`Number`
2354
+ --------------------------------------------------------------------------
2355
+  (0.1ms) rollback transaction
2356
+  (0.0ms) begin transaction
2357
+ ---------------------------
2358
+ ForestRailsTest: test_truth
2359
+ ---------------------------
2360
+  (0.0ms) rollback transaction
2361
+  (1.1ms) CREATE TABLE "belongs_to_fields" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "has_one_field_id" integer) 
2362
+  (0.1ms) select sqlite_version(*)
2363
+  (0.9ms) CREATE INDEX "index_belongs_to_fields_on_has_one_field_id" ON "belongs_to_fields" ("has_one_field_id")
2364
+  (0.7ms) CREATE TABLE "boolean_fields" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "field" boolean)
2365
+  (0.8ms) CREATE TABLE "date_fields" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "field" date) 
2366
+  (0.8ms) CREATE TABLE "decimal_fields" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "field" decimal)
2367
+  (0.7ms) CREATE TABLE "float_fields" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "field" float) 
2368
+  (0.8ms) CREATE TABLE "has_many_fields" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)
2369
+  (0.8ms) CREATE TABLE "has_one_fields" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL) 
2370
+  (0.9ms) CREATE TABLE "integer_fields" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "field" integer)
2371
+  (0.9ms) CREATE TABLE "string_fields" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "field" varchar) 
2372
+  (1.0ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
2373
+  (1.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2374
+  (0.1ms) SELECT version FROM "schema_migrations"
2375
+  (1.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20150608150016')
2376
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20150608130516')
2377
+  (1.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20150608131430')
2378
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150608131603')
2379
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150608131610')
2380
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150608132159')
2381
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150608132621')
2382
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20150608133038')
2383
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150608133044')
2384
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
2385
+  (0.1ms) begin transaction
2386
+ ---------------------------------------------------------------------------
2387
+ ForestRails::SchemaAdapterTest: test_Boolean_should_have_the_type_`Boolean`
2388
+ ---------------------------------------------------------------------------
2389
+  (0.0ms) rollback transaction
2390
+  (0.0ms) begin transaction
2391
+ -------------------------------------------------------------------------
2392
+ ForestRails::SchemaAdapterTest: test_String_should_have_the_type_`String`
2393
+ -------------------------------------------------------------------------
2394
+  (0.0ms) rollback transaction
2395
+  (0.0ms) begin transaction
2396
+ --------------------------------------------------------------------------
2397
+ ForestRails::SchemaAdapterTest: test_Decimal_should_have_the_type_`Number`
2398
+ --------------------------------------------------------------------------
2399
+  (0.0ms) rollback transaction
2400
+  (0.0ms) begin transaction
2401
+ -------------------------------------------------------------------------
2402
+ ForestRails::SchemaAdapterTest: test_DateTime_should_have_the_type_`Date`
2403
+ -------------------------------------------------------------------------
2404
+  (0.0ms) rollback transaction
2405
+  (0.0ms) begin transaction
2406
+ ---------------------------------------------------------------------
2407
+ ForestRails::SchemaAdapterTest: test_Date_should_have_the_type_`Date`
2408
+ ---------------------------------------------------------------------
2409
+  (0.0ms) rollback transaction
2410
+  (0.0ms) begin transaction
2411
+ ---------------------------------------------------------
2412
+ ForestRails::SchemaAdapterTest: test_hasMany_relationship
2413
+ ---------------------------------------------------------
2414
+  (0.1ms) rollback transaction
2415
+  (0.0ms) begin transaction
2416
+ ------------------------------------------------------------------------
2417
+ ForestRails::SchemaAdapterTest: test_Float_should_have_the_type_`Number`
2418
+ ------------------------------------------------------------------------
2419
+  (0.0ms) rollback transaction
2420
+  (0.0ms) begin transaction
2421
+ -----------------------------------------------------------
2422
+ ForestRails::SchemaAdapterTest: test_belongsTo_relationship
2423
+ -----------------------------------------------------------
2424
+  (0.0ms) rollback transaction
2425
+  (0.0ms) begin transaction
2426
+ --------------------------------------------------------------------------
2427
+ ForestRails::SchemaAdapterTest: test_Integer_should_have_the_type_`Number`
2428
+ --------------------------------------------------------------------------
2429
+  (0.0ms) rollback transaction
2430
+  (0.0ms) begin transaction
2431
+ --------------------------------------------------------
2432
+ ForestRails::SchemaAdapterTest: test_hasOne_relationship
2433
+ --------------------------------------------------------
2434
+  (0.0ms) rollback transaction
2435
+  (0.0ms) begin transaction
2436
+ ---------------------------
2437
+ ForestRailsTest: test_truth
2438
+ ---------------------------
2439
+  (0.0ms) rollback transaction
2440
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
2441
+  (0.1ms) begin transaction
2442
+ ---------------------------
2443
+ ForestRailsTest: test_truth
2444
+ ---------------------------
2445
+  (0.0ms) rollback transaction
2446
+  (0.0ms) begin transaction
2447
+ ------------------------------------------------------------------------
2448
+ ForestRails::SchemaAdapterTest: test_Float_should_have_the_type_`Number`
2449
+ ------------------------------------------------------------------------
2450
+  (0.0ms) rollback transaction
2451
+  (0.1ms) begin transaction
2452
+ -----------------------------------------------------------
2453
+ ForestRails::SchemaAdapterTest: test_belongsTo_relationship
2454
+ -----------------------------------------------------------
2455
+  (0.0ms) rollback transaction
2456
+  (0.1ms) begin transaction
2457
+ --------------------------------------------------------------------------
2458
+ ForestRails::SchemaAdapterTest: test_Decimal_should_have_the_type_`Number`
2459
+ --------------------------------------------------------------------------
2460
+  (0.0ms) rollback transaction
2461
+  (0.1ms) begin transaction
2462
+ -------------------------------------------------------------------------
2463
+ ForestRails::SchemaAdapterTest: test_String_should_have_the_type_`String`
2464
+ -------------------------------------------------------------------------
2465
+  (0.0ms) rollback transaction
2466
+  (0.1ms) begin transaction
2467
+ ---------------------------------------------------------------------------
2468
+ ForestRails::SchemaAdapterTest: test_Boolean_should_have_the_type_`Boolean`
2469
+ ---------------------------------------------------------------------------
2470
+  (0.0ms) rollback transaction
2471
+  (0.0ms) begin transaction
2472
+ --------------------------------------------------------
2473
+ ForestRails::SchemaAdapterTest: test_hasOne_relationship
2474
+ --------------------------------------------------------
2475
+  (0.0ms) rollback transaction
2476
+  (0.0ms) begin transaction
2477
+ ---------------------------------------------------------------------
2478
+ ForestRails::SchemaAdapterTest: test_Date_should_have_the_type_`Date`
2479
+ ---------------------------------------------------------------------
2480
+  (0.0ms) rollback transaction
2481
+  (0.0ms) begin transaction
2482
+ -------------------------------------------------------------------------
2483
+ ForestRails::SchemaAdapterTest: test_DateTime_should_have_the_type_`Date`
2484
+ -------------------------------------------------------------------------
2485
+  (0.0ms) rollback transaction
2486
+  (0.0ms) begin transaction
2487
+ ---------------------------------------------------------
2488
+ ForestRails::SchemaAdapterTest: test_hasMany_relationship
2489
+ ---------------------------------------------------------
2490
+  (0.0ms) rollback transaction
2491
+  (0.0ms) begin transaction
2492
+ --------------------------------------------------------------------------
2493
+ ForestRails::SchemaAdapterTest: test_Integer_should_have_the_type_`Number`
2494
+ --------------------------------------------------------------------------
2495
+  (0.0ms) rollback transaction
2496
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
2497
+  (0.1ms) begin transaction
2498
+ -------------------------------------------------------------------------
2499
+ ForestRails::SchemaAdapterTest: test_String_should_have_the_type_`String`
2500
+ -------------------------------------------------------------------------
2501
+  (0.0ms) rollback transaction
2502
+  (0.0ms) begin transaction
2503
+ ------------------------------------------------------------------------
2504
+ ForestRails::SchemaAdapterTest: test_Float_should_have_the_type_`Number`
2505
+ ------------------------------------------------------------------------
2506
+  (0.1ms) rollback transaction
2507
+  (0.0ms) begin transaction
2508
+ --------------------------------------------------------
2509
+ ForestRails::SchemaAdapterTest: test_hasOne_relationship
2510
+ --------------------------------------------------------
2511
+  (0.0ms) rollback transaction
2512
+  (0.0ms) begin transaction
2513
+ --------------------------------------------------------------------------
2514
+ ForestRails::SchemaAdapterTest: test_Decimal_should_have_the_type_`Number`
2515
+ --------------------------------------------------------------------------
2516
+  (0.0ms) rollback transaction
2517
+  (0.0ms) begin transaction
2518
+ -----------------------------------------------------------
2519
+ ForestRails::SchemaAdapterTest: test_belongsTo_relationship
2520
+ -----------------------------------------------------------
2521
+  (0.0ms) rollback transaction
2522
+  (0.0ms) begin transaction
2523
+ ---------------------------------------------------------
2524
+ ForestRails::SchemaAdapterTest: test_hasMany_relationship
2525
+ ---------------------------------------------------------
2526
+  (0.0ms) rollback transaction
2527
+  (0.0ms) begin transaction
2528
+ --------------------------------------------------------------------------
2529
+ ForestRails::SchemaAdapterTest: test_Integer_should_have_the_type_`Number`
2530
+ --------------------------------------------------------------------------
2531
+  (0.0ms) rollback transaction
2532
+  (0.0ms) begin transaction
2533
+ ---------------------------------------------------------------------
2534
+ ForestRails::SchemaAdapterTest: test_Date_should_have_the_type_`Date`
2535
+ ---------------------------------------------------------------------
2536
+  (0.0ms) rollback transaction
2537
+  (0.0ms) begin transaction
2538
+ -------------------------------------------------------------------------
2539
+ ForestRails::SchemaAdapterTest: test_DateTime_should_have_the_type_`Date`
2540
+ -------------------------------------------------------------------------
2541
+  (0.0ms) rollback transaction
2542
+  (0.0ms) begin transaction
2543
+ ---------------------------------------------------------------------------
2544
+ ForestRails::SchemaAdapterTest: test_Boolean_should_have_the_type_`Boolean`
2545
+ ---------------------------------------------------------------------------
2546
+  (0.0ms) rollback transaction
2547
+  (0.0ms) begin transaction
2548
+ ---------------------------
2549
+ ForestRailsTest: test_truth
2550
+ ---------------------------
2551
+  (0.0ms) rollback transaction
2552
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
2553
+  (1.0ms) CREATE TABLE "belongs_to_class_name_fields" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "foo_id" integer) 
2554
+  (0.1ms) select sqlite_version(*)
2555
+  (1.0ms) CREATE INDEX "index_belongs_to_class_name_fields_on_foo_id" ON "belongs_to_class_name_fields" ("foo_id")
2556
+  (0.8ms) CREATE TABLE "belongs_to_fields" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "has_one_field_id" integer)
2557
+  (0.7ms) CREATE INDEX "index_belongs_to_fields_on_has_one_field_id" ON "belongs_to_fields" ("has_one_field_id")
2558
+  (0.8ms) CREATE TABLE "boolean_fields" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "field" boolean)
2559
+  (0.7ms) CREATE TABLE "date_fields" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "field" date) 
2560
+  (0.7ms) CREATE TABLE "decimal_fields" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "field" decimal)
2561
+  (0.8ms) CREATE TABLE "float_fields" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "field" float) 
2562
+  (0.9ms) CREATE TABLE "has_many_fields" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)
2563
+  (0.9ms) CREATE TABLE "has_one_fields" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL) 
2564
+  (0.9ms) CREATE TABLE "integer_fields" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "field" integer)
2565
+  (0.8ms) CREATE TABLE "string_fields" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "field" varchar) 
2566
+  (0.7ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
2567
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2568
+  (0.1ms) SELECT version FROM "schema_migrations"
2569
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20150609114636')
2570
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20150608130516')
2571
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150608131430')
2572
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150608131603')
2573
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20150608131610')
2574
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20150608132159')
2575
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20150608132621')
2576
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150608133038')
2577
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150608133044')
2578
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150608150016')
2579
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
2580
+  (0.2ms) begin transaction
2581
+ ------------------------------------------------------------------------
2582
+ ForestRails::SchemaAdapterTest: test_Float_should_have_the_type_`Number`
2583
+ ------------------------------------------------------------------------
2584
+  (0.1ms) rollback transaction
2585
+  (0.0ms) begin transaction
2586
+ ---------------------------------------------------------
2587
+ ForestRails::SchemaAdapterTest: test_hasMany_relationship
2588
+ ---------------------------------------------------------
2589
+  (0.1ms) rollback transaction
2590
+  (0.1ms) begin transaction
2591
+ --------------------------------------------------------
2592
+ ForestRails::SchemaAdapterTest: test_hasOne_relationship
2593
+ --------------------------------------------------------
2594
+  (0.1ms) rollback transaction
2595
+  (0.1ms) begin transaction
2596
+ -------------------------------------------------------------------------
2597
+ ForestRails::SchemaAdapterTest: test_DateTime_should_have_the_type_`Date`
2598
+ -------------------------------------------------------------------------
2599
+  (0.1ms) rollback transaction
2600
+  (0.1ms) begin transaction
2601
+ ---------------------------------------------------------------------
2602
+ ForestRails::SchemaAdapterTest: test_Date_should_have_the_type_`Date`
2603
+ ---------------------------------------------------------------------
2604
+  (0.0ms) rollback transaction
2605
+  (0.2ms) begin transaction
2606
+ ---------------------------------------------------------------------------
2607
+ ForestRails::SchemaAdapterTest: test_Boolean_should_have_the_type_`Boolean`
2608
+ ---------------------------------------------------------------------------
2609
+  (0.0ms) rollback transaction
2610
+  (0.0ms) begin transaction
2611
+ -------------------------------------------------------------------------
2612
+ ForestRails::SchemaAdapterTest: test_String_should_have_the_type_`String`
2613
+ -------------------------------------------------------------------------
2614
+  (0.0ms) rollback transaction
2615
+  (0.1ms) begin transaction
2616
+ ------------------------------------------------------------------------------------
2617
+ ForestRails::SchemaAdapterTest: test_belongsTo_relationhip_with_specified_class_name
2618
+ ------------------------------------------------------------------------------------
2619
+  (0.1ms) rollback transaction
2620
+  (0.2ms) begin transaction
2621
+ -----------------------------------------------------------
2622
+ ForestRails::SchemaAdapterTest: test_belongsTo_relationship
2623
+ -----------------------------------------------------------
2624
+  (0.1ms) rollback transaction
2625
+  (0.1ms) begin transaction
2626
+ --------------------------------------------------------------------------
2627
+ ForestRails::SchemaAdapterTest: test_Integer_should_have_the_type_`Number`
2628
+ --------------------------------------------------------------------------
2629
+  (0.1ms) rollback transaction
2630
+  (0.1ms) begin transaction
2631
+ --------------------------------------------------------------------------
2632
+ ForestRails::SchemaAdapterTest: test_Decimal_should_have_the_type_`Number`
2633
+ --------------------------------------------------------------------------
2634
+  (0.1ms) rollback transaction
2635
+  (0.1ms) begin transaction
2636
+ ---------------------------
2637
+ ForestRailsTest: test_truth
2638
+ ---------------------------
2639
+  (0.0ms) rollback transaction
2640
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
2641
+  (0.1ms) begin transaction
2642
+ -------------------------------------------------------------------------
2643
+ ForestRails::SchemaAdapterTest: test_DateTime_should_have_the_type_`Date`
2644
+ -------------------------------------------------------------------------
2645
+  (0.0ms) rollback transaction
2646
+  (0.0ms) begin transaction
2647
+ -------------------------------------------------------------------------
2648
+ ForestRails::SchemaAdapterTest: test_String_should_have_the_type_`String`
2649
+ -------------------------------------------------------------------------
2650
+  (0.0ms) rollback transaction
2651
+  (0.0ms) begin transaction
2652
+ ------------------------------------------------------------------------------------
2653
+ ForestRails::SchemaAdapterTest: test_belongsTo_relationhip_with_specified_class_name
2654
+ ------------------------------------------------------------------------------------
2655
+  (0.4ms) rollback transaction
2656
+  (0.4ms) begin transaction
2657
+ -----------------------------------------------------------
2658
+ ForestRails::SchemaAdapterTest: test_belongsTo_relationship
2659
+ -----------------------------------------------------------
2660
+  (0.5ms) rollback transaction
2661
+  (0.4ms) begin transaction
2662
+ --------------------------------------------------------------------------
2663
+ ForestRails::SchemaAdapterTest: test_Decimal_should_have_the_type_`Number`
2664
+ --------------------------------------------------------------------------
2665
+  (0.3ms) rollback transaction
2666
+  (0.3ms) begin transaction
2667
+ ---------------------------------------------------------------------
2668
+ ForestRails::SchemaAdapterTest: test_Date_should_have_the_type_`Date`
2669
+ ---------------------------------------------------------------------
2670
+  (0.3ms) rollback transaction
2671
+  (0.2ms) begin transaction
2672
+ ---------------------------------------------------------
2673
+ ForestRails::SchemaAdapterTest: test_hasMany_relationship
2674
+ ---------------------------------------------------------
2675
+  (0.2ms) rollback transaction
2676
+  (0.2ms) begin transaction
2677
+ ------------------------------------------------------------------------
2678
+ ForestRails::SchemaAdapterTest: test_Float_should_have_the_type_`Number`
2679
+ ------------------------------------------------------------------------
2680
+  (0.2ms) rollback transaction
2681
+  (0.2ms) begin transaction
2682
+ --------------------------------------------------------------------------
2683
+ ForestRails::SchemaAdapterTest: test_Integer_should_have_the_type_`Number`
2684
+ --------------------------------------------------------------------------
2685
+  (0.2ms) rollback transaction
2686
+  (0.2ms) begin transaction
2687
+ ---------------------------------------------------------------------------
2688
+ ForestRails::SchemaAdapterTest: test_Boolean_should_have_the_type_`Boolean`
2689
+ ---------------------------------------------------------------------------
2690
+  (0.2ms) rollback transaction
2691
+  (0.2ms) begin transaction
2692
+ --------------------------------------------------------
2693
+ ForestRails::SchemaAdapterTest: test_hasOne_relationship
2694
+ --------------------------------------------------------
2695
+  (0.2ms) rollback transaction
2696
+  (0.2ms) begin transaction
2697
+ ---------------------------
2698
+ ForestRailsTest: test_truth
2699
+ ---------------------------
2700
+  (0.3ms) rollback transaction
2701
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
2702
+  (0.1ms) begin transaction
2703
+ -----------------------------------------------------------
2704
+ ForestRails::SchemaAdapterTest: test_belongsTo_relationship
2705
+ -----------------------------------------------------------
2706
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
2707
+  (0.1ms) begin transaction
2708
+ ---------------------------
2709
+ ForestRailsTest: test_truth
2710
+ ---------------------------
2711
+  (0.0ms) rollback transaction
2712
+  (0.0ms) begin transaction
2713
+ ---------------------------------------------------------------------
2714
+ ForestRails::SchemaAdapterTest: test_Date_should_have_the_type_`Date`
2715
+ ---------------------------------------------------------------------
2716
+  (0.1ms) rollback transaction
2717
+  (0.1ms) begin transaction
2718
+ -----------------------------------------------------------
2719
+ ForestRails::SchemaAdapterTest: test_belongsTo_relationship
2720
+ -----------------------------------------------------------
2721
+  (0.0ms) rollback transaction
2722
+  (0.0ms) begin transaction
2723
+ ---------------------------------------------------------
2724
+ ForestRails::SchemaAdapterTest: test_hasMany_relationship
2725
+ ---------------------------------------------------------
2726
+  (0.0ms) rollback transaction
2727
+  (0.1ms) begin transaction
2728
+ ------------------------------------------------------------------------------------
2729
+ ForestRails::SchemaAdapterTest: test_belongsTo_relationhip_with_specified_class_name
2730
+ ------------------------------------------------------------------------------------
2731
+  (0.1ms) rollback transaction
2732
+  (0.1ms) begin transaction
2733
+ ------------------------------------------------------------------------
2734
+ ForestRails::SchemaAdapterTest: test_Float_should_have_the_type_`Number`
2735
+ ------------------------------------------------------------------------
2736
+  (0.0ms) rollback transaction
2737
+  (0.1ms) begin transaction
2738
+ -------------------------------------------------------------------------
2739
+ ForestRails::SchemaAdapterTest: test_String_should_have_the_type_`String`
2740
+ -------------------------------------------------------------------------
2741
+  (0.1ms) rollback transaction
2742
+  (0.1ms) begin transaction
2743
+ --------------------------------------------------------
2744
+ ForestRails::SchemaAdapterTest: test_hasOne_relationship
2745
+ --------------------------------------------------------
2746
+  (0.0ms) rollback transaction
2747
+  (0.1ms) begin transaction
2748
+ --------------------------------------------------------------------------
2749
+ ForestRails::SchemaAdapterTest: test_Integer_should_have_the_type_`Number`
2750
+ --------------------------------------------------------------------------
2751
+  (0.0ms) rollback transaction
2752
+  (0.1ms) begin transaction
2753
+ -------------------------------------------------------------------------
2754
+ ForestRails::SchemaAdapterTest: test_DateTime_should_have_the_type_`Date`
2755
+ -------------------------------------------------------------------------
2756
+  (0.0ms) rollback transaction
2757
+  (0.1ms) begin transaction
2758
+ --------------------------------------------------------------------------
2759
+ ForestRails::SchemaAdapterTest: test_Decimal_should_have_the_type_`Number`
2760
+ --------------------------------------------------------------------------
2761
+  (0.0ms) rollback transaction
2762
+  (0.0ms) begin transaction
2763
+ ---------------------------------------------------------------------------
2764
+ ForestRails::SchemaAdapterTest: test_Boolean_should_have_the_type_`Boolean`
2765
+ ---------------------------------------------------------------------------
2766
+  (0.0ms) rollback transaction
2767
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
2768
+  (0.1ms) begin transaction
2769
+ ------------------------------------------------------------------------------------
2770
+ ForestRails::SchemaAdapterTest: test_belongsTo_relationhip_with_specified_class_name
2771
+ ------------------------------------------------------------------------------------
2772
+  (0.1ms) rollback transaction
2773
+  (0.1ms) begin transaction
2774
+ -----------------------------------------------------------
2775
+ ForestRails::SchemaAdapterTest: test_belongsTo_relationship
2776
+ -----------------------------------------------------------
2777
+  (0.1ms) rollback transaction
2778
+  (0.0ms) begin transaction
2779
+ --------------------------------------------------------------------------
2780
+ ForestRails::SchemaAdapterTest: test_Integer_should_have_the_type_`Number`
2781
+ --------------------------------------------------------------------------
2782
+  (0.0ms) rollback transaction
2783
+  (0.1ms) begin transaction
2784
+ ---------------------------------------------------------------------------
2785
+ ForestRails::SchemaAdapterTest: test_Boolean_should_have_the_type_`Boolean`
2786
+ ---------------------------------------------------------------------------
2787
+  (0.1ms) rollback transaction
2788
+  (0.1ms) begin transaction
2789
+ ---------------------------------------------------------------------
2790
+ ForestRails::SchemaAdapterTest: test_Date_should_have_the_type_`Date`
2791
+ ---------------------------------------------------------------------
2792
+  (0.1ms) rollback transaction
2793
+  (0.2ms) begin transaction
2794
+ -------------------------------------------------------------------------
2795
+ ForestRails::SchemaAdapterTest: test_DateTime_should_have_the_type_`Date`
2796
+ -------------------------------------------------------------------------
2797
+  (0.1ms) rollback transaction
2798
+  (0.1ms) begin transaction
2799
+ --------------------------------------------------------------------------
2800
+ ForestRails::SchemaAdapterTest: test_Decimal_should_have_the_type_`Number`
2801
+ --------------------------------------------------------------------------
2802
+  (0.1ms) rollback transaction
2803
+  (0.1ms) begin transaction
2804
+ ------------------------------------------------------------------------
2805
+ ForestRails::SchemaAdapterTest: test_Float_should_have_the_type_`Number`
2806
+ ------------------------------------------------------------------------
2807
+  (0.1ms) rollback transaction
2808
+  (0.1ms) begin transaction
2809
+ --------------------------------------------------------
2810
+ ForestRails::SchemaAdapterTest: test_hasOne_relationship
2811
+ --------------------------------------------------------
2812
+  (0.1ms) rollback transaction
2813
+  (0.1ms) begin transaction
2814
+ ---------------------------------------------------------
2815
+ ForestRails::SchemaAdapterTest: test_hasMany_relationship
2816
+ ---------------------------------------------------------
2817
+  (0.0ms) rollback transaction
2818
+  (0.0ms) begin transaction
2819
+ -------------------------------------------------------------------------
2820
+ ForestRails::SchemaAdapterTest: test_String_should_have_the_type_`String`
2821
+ -------------------------------------------------------------------------
2822
+  (0.0ms) rollback transaction
2823
+  (0.1ms) begin transaction
2824
+ ---------------------------
2825
+ ForestRailsTest: test_truth
2826
+ ---------------------------
2827
+  (0.1ms) rollback transaction
2828
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
2829
+  (0.1ms) begin transaction
2830
+ ---------------------------------------------------------------------------
2831
+ ForestRails::SchemaAdapterTest: test_Boolean_should_have_the_type_`Boolean`
2832
+ ---------------------------------------------------------------------------
2833
+  (0.0ms) rollback transaction
2834
+  (0.0ms) begin transaction
2835
+ ------------------------------------------------------------------------
2836
+ ForestRails::SchemaAdapterTest: test_Float_should_have_the_type_`Number`
2837
+ ------------------------------------------------------------------------
2838
+  (0.0ms) rollback transaction
2839
+  (0.0ms) begin transaction
2840
+ ---------------------------------------------------------
2841
+ ForestRails::SchemaAdapterTest: test_hasMany_relationship
2842
+ ---------------------------------------------------------
2843
+  (0.0ms) rollback transaction
2844
+  (0.0ms) begin transaction
2845
+ -------------------------------------------------------------------------
2846
+ ForestRails::SchemaAdapterTest: test_String_should_have_the_type_`String`
2847
+ -------------------------------------------------------------------------
2848
+  (0.0ms) rollback transaction
2849
+  (0.0ms) begin transaction
2850
+ -----------------------------------------------------------
2851
+ ForestRails::SchemaAdapterTest: test_belongsTo_relationship
2852
+ -----------------------------------------------------------
2853
+  (0.0ms) rollback transaction
2854
+  (0.0ms) begin transaction
2855
+ --------------------------------------------------------------------------
2856
+ ForestRails::SchemaAdapterTest: test_Integer_should_have_the_type_`Number`
2857
+ --------------------------------------------------------------------------
2858
+  (0.0ms) rollback transaction
2859
+  (0.1ms) begin transaction
2860
+ ---------------------------------------------------------------------
2861
+ ForestRails::SchemaAdapterTest: test_Date_should_have_the_type_`Date`
2862
+ ---------------------------------------------------------------------
2863
+  (0.0ms) rollback transaction
2864
+  (0.0ms) begin transaction
2865
+ --------------------------------------------------------------------------
2866
+ ForestRails::SchemaAdapterTest: test_Decimal_should_have_the_type_`Number`
2867
+ --------------------------------------------------------------------------
2868
+  (0.1ms) rollback transaction
2869
+  (0.0ms) begin transaction
2870
+ --------------------------------------------------------
2871
+ ForestRails::SchemaAdapterTest: test_hasOne_relationship
2872
+ --------------------------------------------------------
2873
+  (0.0ms) rollback transaction
2874
+  (0.0ms) begin transaction
2875
+ -------------------------------------------------------------------------
2876
+ ForestRails::SchemaAdapterTest: test_DateTime_should_have_the_type_`Date`
2877
+ -------------------------------------------------------------------------
2878
+  (0.0ms) rollback transaction
2879
+  (0.0ms) begin transaction
2880
+ ------------------------------------------------------------------------------------
2881
+ ForestRails::SchemaAdapterTest: test_belongsTo_relationhip_with_specified_class_name
2882
+ ------------------------------------------------------------------------------------
2883
+  (0.1ms) rollback transaction
2884
+  (0.0ms) begin transaction
2885
+ ---------------------------
2886
+ ForestRailsTest: test_truth
2887
+ ---------------------------
2888
+  (0.0ms) rollback transaction
2889
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
2890
+  (0.1ms) begin transaction
2891
+ ---------------------------------------------------------
2892
+ ForestRails::SchemaAdapterTest: test_hasMany_relationship
2893
+ ---------------------------------------------------------
2894
+  (0.1ms) rollback transaction
2895
+  (0.1ms) begin transaction
2896
+ -------------------------------------------------------------------------
2897
+ ForestRails::SchemaAdapterTest: test_DateTime_should_have_the_type_`Date`
2898
+ -------------------------------------------------------------------------
2899
+  (0.0ms) rollback transaction
2900
+  (0.0ms) begin transaction
2901
+ --------------------------------------------------------------------------
2902
+ ForestRails::SchemaAdapterTest: test_Decimal_should_have_the_type_`Number`
2903
+ --------------------------------------------------------------------------
2904
+  (0.0ms) rollback transaction
2905
+  (0.0ms) begin transaction
2906
+ --------------------------------------------------------------------------
2907
+ ForestRails::SchemaAdapterTest: test_Integer_should_have_the_type_`Number`
2908
+ --------------------------------------------------------------------------
2909
+  (0.0ms) rollback transaction
2910
+  (0.1ms) begin transaction
2911
+ ---------------------------------------------------------------------
2912
+ ForestRails::SchemaAdapterTest: test_Date_should_have_the_type_`Date`
2913
+ ---------------------------------------------------------------------
2914
+  (0.0ms) rollback transaction
2915
+  (0.0ms) begin transaction
2916
+ ---------------------------------------------------------------------------
2917
+ ForestRails::SchemaAdapterTest: test_Boolean_should_have_the_type_`Boolean`
2918
+ ---------------------------------------------------------------------------
2919
+  (0.0ms) rollback transaction
2920
+  (0.1ms) begin transaction
2921
+ ------------------------------------------------------------------------
2922
+ ForestRails::SchemaAdapterTest: test_Float_should_have_the_type_`Number`
2923
+ ------------------------------------------------------------------------
2924
+  (0.0ms) rollback transaction
2925
+  (0.0ms) begin transaction
2926
+ -------------------------------------------------------------------------
2927
+ ForestRails::SchemaAdapterTest: test_String_should_have_the_type_`String`
2928
+ -------------------------------------------------------------------------
2929
+  (0.1ms) rollback transaction
2930
+  (0.1ms) begin transaction
2931
+ --------------------------------------------------------
2932
+ ForestRails::SchemaAdapterTest: test_hasOne_relationship
2933
+ --------------------------------------------------------
2934
+  (0.1ms) rollback transaction
2935
+  (0.1ms) begin transaction
2936
+ ------------------------------------------------------------------------------------
2937
+ ForestRails::SchemaAdapterTest: test_belongsTo_relationhip_with_specified_class_name
2938
+ ------------------------------------------------------------------------------------
2939
+  (0.0ms) rollback transaction
2940
+  (0.1ms) begin transaction
2941
+ -----------------------------------------------------------
2942
+ ForestRails::SchemaAdapterTest: test_belongsTo_relationship
2943
+ -----------------------------------------------------------
2944
+  (0.0ms) rollback transaction
2945
+  (0.0ms) begin transaction
2946
+ ---------------------------
2947
+ ForestRailsTest: test_truth
2948
+ ---------------------------
2949
+  (0.0ms) rollback transaction
2950
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
2951
+  (0.1ms) begin transaction
2952
+ ---------------------------
2953
+ ForestRailsTest: test_truth
2954
+ ---------------------------
2955
+  (0.0ms) rollback transaction
2956
+  (0.0ms) begin transaction
2957
+ --------------------------------------------------------------------------
2958
+ ForestRails::SchemaAdapterTest: test_Integer_should_have_the_type_`Number`
2959
+ --------------------------------------------------------------------------
2960
+  (0.0ms) rollback transaction
2961
+  (0.0ms) begin transaction
2962
+ ------------------------------------------------------------------------
2963
+ ForestRails::SchemaAdapterTest: test_Float_should_have_the_type_`Number`
2964
+ ------------------------------------------------------------------------
2965
+  (0.0ms) rollback transaction
2966
+  (0.0ms) begin transaction
2967
+ -------------------------------------------------------------------------
2968
+ ForestRails::SchemaAdapterTest: test_DateTime_should_have_the_type_`Date`
2969
+ -------------------------------------------------------------------------
2970
+  (0.0ms) rollback transaction
2971
+  (0.0ms) begin transaction
2972
+ ------------------------------------------------------------------------------------
2973
+ ForestRails::SchemaAdapterTest: test_belongsTo_relationhip_with_specified_class_name
2974
+ ------------------------------------------------------------------------------------
2975
+  (0.1ms) rollback transaction
2976
+  (0.0ms) begin transaction
2977
+ -------------------------------------------------------------------------
2978
+ ForestRails::SchemaAdapterTest: test_String_should_have_the_type_`String`
2979
+ -------------------------------------------------------------------------
2980
+  (0.1ms) rollback transaction
2981
+  (0.0ms) begin transaction
2982
+ ---------------------------------------------------------------------
2983
+ ForestRails::SchemaAdapterTest: test_Date_should_have_the_type_`Date`
2984
+ ---------------------------------------------------------------------
2985
+  (0.0ms) rollback transaction
2986
+  (0.1ms) begin transaction
2987
+ ---------------------------------------------------------
2988
+ ForestRails::SchemaAdapterTest: test_hasMany_relationship
2989
+ ---------------------------------------------------------
2990
+  (0.1ms) rollback transaction
2991
+  (0.1ms) begin transaction
2992
+ ---------------------------------------------------------------------------
2993
+ ForestRails::SchemaAdapterTest: test_Boolean_should_have_the_type_`Boolean`
2994
+ ---------------------------------------------------------------------------
2995
+  (0.1ms) rollback transaction
2996
+  (0.1ms) begin transaction
2997
+ --------------------------------------------------------
2998
+ ForestRails::SchemaAdapterTest: test_hasOne_relationship
2999
+ --------------------------------------------------------
3000
+  (0.1ms) rollback transaction
3001
+  (0.1ms) begin transaction
3002
+ --------------------------------------------------------------------------
3003
+ ForestRails::SchemaAdapterTest: test_Decimal_should_have_the_type_`Number`
3004
+ --------------------------------------------------------------------------
3005
+  (0.0ms) rollback transaction
3006
+  (0.0ms) begin transaction
3007
+ -----------------------------------------------------------
3008
+ ForestRails::SchemaAdapterTest: test_belongsTo_relationship
3009
+ -----------------------------------------------------------
3010
+  (0.0ms) rollback transaction
3011
+ ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
3012
+  (0.1ms) begin transaction
3013
+ ---------------------------
3014
+ ForestRailsTest: test_truth
3015
+ ---------------------------
3016
+  (0.0ms) rollback transaction
3017
+  (0.0ms) begin transaction
3018
+ --------------------------------------------------------------------------
3019
+ ForestRails::SchemaAdapterTest: test_Decimal_should_have_the_type_`Number`
3020
+ --------------------------------------------------------------------------
3021
+  (0.1ms) rollback transaction
3022
+  (0.1ms) begin transaction
3023
+ --------------------------------------------------------
3024
+ ForestRails::SchemaAdapterTest: test_hasOne_relationship
3025
+ --------------------------------------------------------
3026
+  (0.1ms) rollback transaction
3027
+  (0.1ms) begin transaction
3028
+ ---------------------------------------------------------------------------
3029
+ ForestRails::SchemaAdapterTest: test_Boolean_should_have_the_type_`Boolean`
3030
+ ---------------------------------------------------------------------------
3031
+  (0.0ms) rollback transaction
3032
+  (0.0ms) begin transaction
3033
+ -----------------------------------------------------------
3034
+ ForestRails::SchemaAdapterTest: test_belongsTo_relationship
3035
+ -----------------------------------------------------------
3036
+  (0.0ms) rollback transaction
3037
+  (0.0ms) begin transaction
3038
+ -------------------------------------------------------------------------
3039
+ ForestRails::SchemaAdapterTest: test_DateTime_should_have_the_type_`Date`
3040
+ -------------------------------------------------------------------------
3041
+  (0.0ms) rollback transaction
3042
+  (0.0ms) begin transaction
3043
+ ---------------------------------------------------------------------
3044
+ ForestRails::SchemaAdapterTest: test_Date_should_have_the_type_`Date`
3045
+ ---------------------------------------------------------------------
3046
+  (0.0ms) rollback transaction
3047
+  (0.0ms) begin transaction
3048
+ ---------------------------------------------------------
3049
+ ForestRails::SchemaAdapterTest: test_hasMany_relationship
3050
+ ---------------------------------------------------------
3051
+  (0.0ms) rollback transaction
3052
+  (0.1ms) begin transaction
3053
+ ------------------------------------------------------------------------
3054
+ ForestRails::SchemaAdapterTest: test_Float_should_have_the_type_`Number`
3055
+ ------------------------------------------------------------------------
3056
+  (0.1ms) rollback transaction
3057
+  (0.0ms) begin transaction
3058
+ ------------------------------------------------------------------------------------
3059
+ ForestRails::SchemaAdapterTest: test_belongsTo_relationhip_with_specified_class_name
3060
+ ------------------------------------------------------------------------------------
3061
+  (0.1ms) rollback transaction
3062
+  (0.0ms) begin transaction
3063
+ -------------------------------------------------------------------------
3064
+ ForestRails::SchemaAdapterTest: test_String_should_have_the_type_`String`
3065
+ -------------------------------------------------------------------------
3066
+  (0.0ms) rollback transaction
3067
+  (0.0ms) begin transaction
3068
+ --------------------------------------------------------------------------
3069
+ ForestRails::SchemaAdapterTest: test_Integer_should_have_the_type_`Number`
3070
+ --------------------------------------------------------------------------
3071
+  (0.0ms) rollback transaction
3072
+ ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
3073
+  (0.1ms) begin transaction
3074
+ ---------------------------------------------------------------------------
3075
+ ForestRails::SchemaAdapterTest: test_Boolean_should_have_the_type_`Boolean`
3076
+ ---------------------------------------------------------------------------
3077
+  (0.1ms) rollback transaction
3078
+  (0.0ms) begin transaction
3079
+ --------------------------------------------------------------------------
3080
+ ForestRails::SchemaAdapterTest: test_Decimal_should_have_the_type_`Number`
3081
+ --------------------------------------------------------------------------
3082
+  (0.1ms) rollback transaction
3083
+  (0.0ms) begin transaction
3084
+ --------------------------------------------------------------------------
3085
+ ForestRails::SchemaAdapterTest: test_Integer_should_have_the_type_`Number`
3086
+ --------------------------------------------------------------------------
3087
+  (0.1ms) rollback transaction
3088
+  (0.0ms) begin transaction
3089
+ --------------------------------------------------------
3090
+ ForestRails::SchemaAdapterTest: test_hasOne_relationship
3091
+ --------------------------------------------------------
3092
+  (0.1ms) rollback transaction
3093
+  (0.0ms) begin transaction
3094
+ ---------------------------------------------------------------------
3095
+ ForestRails::SchemaAdapterTest: test_Date_should_have_the_type_`Date`
3096
+ ---------------------------------------------------------------------
3097
+  (0.0ms) rollback transaction
3098
+  (0.0ms) begin transaction
3099
+ -------------------------------------------------------------------------
3100
+ ForestRails::SchemaAdapterTest: test_String_should_have_the_type_`String`
3101
+ -------------------------------------------------------------------------
3102
+  (0.0ms) rollback transaction
3103
+  (0.0ms) begin transaction
3104
+ -------------------------------------------------------------------------
3105
+ ForestRails::SchemaAdapterTest: test_DateTime_should_have_the_type_`Date`
3106
+ -------------------------------------------------------------------------
3107
+  (0.0ms) rollback transaction
3108
+  (0.1ms) begin transaction
3109
+ ------------------------------------------------------------------------------------
3110
+ ForestRails::SchemaAdapterTest: test_belongsTo_relationhip_with_specified_class_name
3111
+ ------------------------------------------------------------------------------------
3112
+  (0.0ms) rollback transaction
3113
+  (0.0ms) begin transaction
3114
+ ------------------------------------------------------------------------
3115
+ ForestRails::SchemaAdapterTest: test_Float_should_have_the_type_`Number`
3116
+ ------------------------------------------------------------------------
3117
+  (0.0ms) rollback transaction
3118
+  (0.0ms) begin transaction
3119
+ -----------------------------------------------------------
3120
+ ForestRails::SchemaAdapterTest: test_belongsTo_relationship
3121
+ -----------------------------------------------------------
3122
+  (0.0ms) rollback transaction
3123
+  (0.1ms) begin transaction
3124
+ ---------------------------------------------------------
3125
+ ForestRails::SchemaAdapterTest: test_hasMany_relationship
3126
+ ---------------------------------------------------------
3127
+  (0.1ms) rollback transaction
3128
+  (0.1ms) begin transaction
3129
+ ---------------------------
3130
+ ForestRailsTest: test_truth
3131
+ ---------------------------
3132
+  (0.0ms) rollback transaction
3133
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
3134
+  (0.1ms) begin transaction
3135
+ ---------------------------
3136
+ ForestRailsTest: test_truth
3137
+ ---------------------------
3138
+  (0.0ms) rollback transaction
3139
+  (0.1ms) begin transaction
3140
+ ------------------------------------------------------------------------------------
3141
+ ForestRails::SchemaAdapterTest: test_belongsTo_relationhip_with_specified_class_name
3142
+ ------------------------------------------------------------------------------------
3143
+  (0.1ms) rollback transaction
3144
+  (0.1ms) begin transaction
3145
+ ---------------------------------------------------------------------------
3146
+ ForestRails::SchemaAdapterTest: test_Boolean_should_have_the_type_`Boolean`
3147
+ ---------------------------------------------------------------------------
3148
+  (0.1ms) rollback transaction
3149
+  (0.1ms) begin transaction
3150
+ ---------------------------------------------------------------------
3151
+ ForestRails::SchemaAdapterTest: test_Date_should_have_the_type_`Date`
3152
+ ---------------------------------------------------------------------
3153
+  (0.1ms) rollback transaction
3154
+  (0.1ms) begin transaction
3155
+ -------------------------------------------------------------------------
3156
+ ForestRails::SchemaAdapterTest: test_String_should_have_the_type_`String`
3157
+ -------------------------------------------------------------------------
3158
+  (0.0ms) rollback transaction
3159
+  (0.0ms) begin transaction
3160
+ --------------------------------------------------------
3161
+ ForestRails::SchemaAdapterTest: test_hasOne_relationship
3162
+ --------------------------------------------------------
3163
+  (0.0ms) rollback transaction
3164
+  (0.0ms) begin transaction
3165
+ -------------------------------------------------------------------------
3166
+ ForestRails::SchemaAdapterTest: test_DateTime_should_have_the_type_`Date`
3167
+ -------------------------------------------------------------------------
3168
+  (0.0ms) rollback transaction
3169
+  (0.1ms) begin transaction
3170
+ -----------------------------------------------------------
3171
+ ForestRails::SchemaAdapterTest: test_belongsTo_relationship
3172
+ -----------------------------------------------------------
3173
+  (0.0ms) rollback transaction
3174
+  (0.0ms) begin transaction
3175
+ --------------------------------------------------------------------------
3176
+ ForestRails::SchemaAdapterTest: test_Decimal_should_have_the_type_`Number`
3177
+ --------------------------------------------------------------------------
3178
+  (0.0ms) rollback transaction
3179
+  (0.1ms) begin transaction
3180
+ --------------------------------------------------------------------------
3181
+ ForestRails::SchemaAdapterTest: test_Integer_should_have_the_type_`Number`
3182
+ --------------------------------------------------------------------------
3183
+  (0.0ms) rollback transaction
3184
+  (0.0ms) begin transaction
3185
+ ------------------------------------------------------------------------
3186
+ ForestRails::SchemaAdapterTest: test_Float_should_have_the_type_`Number`
3187
+ ------------------------------------------------------------------------
3188
+  (0.0ms) rollback transaction
3189
+  (0.0ms) begin transaction
3190
+ ---------------------------------------------------------
3191
+ ForestRails::SchemaAdapterTest: test_hasMany_relationship
3192
+ ---------------------------------------------------------
3193
+  (0.0ms) rollback transaction
3194
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
3195
+  (0.1ms) begin transaction
3196
+ ---------------------------
3197
+ ForestRailsTest: test_truth
3198
+ ---------------------------
3199
+  (0.1ms) rollback transaction
3200
+  (0.1ms) begin transaction
3201
+ ------------------------------------------------------------------------
3202
+ ForestRails::SchemaAdapterTest: test_Float_should_have_the_type_`Number`
3203
+ ------------------------------------------------------------------------
3204
+  (0.0ms) rollback transaction
3205
+  (0.1ms) begin transaction
3206
+ -----------------------------------------------------------
3207
+ ForestRails::SchemaAdapterTest: test_belongsTo_relationship
3208
+ -----------------------------------------------------------
3209
+  (0.1ms) rollback transaction
3210
+  (0.1ms) begin transaction
3211
+ -------------------------------------------------------------------------
3212
+ ForestRails::SchemaAdapterTest: test_String_should_have_the_type_`String`
3213
+ -------------------------------------------------------------------------
3214
+  (0.1ms) rollback transaction
3215
+  (0.1ms) begin transaction
3216
+ ---------------------------------------------------------
3217
+ ForestRails::SchemaAdapterTest: test_hasMany_relationship
3218
+ ---------------------------------------------------------
3219
+  (0.0ms) rollback transaction
3220
+  (0.0ms) begin transaction
3221
+ --------------------------------------------------------
3222
+ ForestRails::SchemaAdapterTest: test_hasOne_relationship
3223
+ --------------------------------------------------------
3224
+  (0.0ms) rollback transaction
3225
+  (0.1ms) begin transaction
3226
+ -------------------------------------------------------------------------
3227
+ ForestRails::SchemaAdapterTest: test_DateTime_should_have_the_type_`Date`
3228
+ -------------------------------------------------------------------------
3229
+  (0.1ms) rollback transaction
3230
+  (0.1ms) begin transaction
3231
+ --------------------------------------------------------------------------
3232
+ ForestRails::SchemaAdapterTest: test_Decimal_should_have_the_type_`Number`
3233
+ --------------------------------------------------------------------------
3234
+  (0.0ms) rollback transaction
3235
+  (0.0ms) begin transaction
3236
+ ---------------------------------------------------------------------------
3237
+ ForestRails::SchemaAdapterTest: test_Boolean_should_have_the_type_`Boolean`
3238
+ ---------------------------------------------------------------------------
3239
+  (0.0ms) rollback transaction
3240
+  (0.0ms) begin transaction
3241
+ --------------------------------------------------------------------------
3242
+ ForestRails::SchemaAdapterTest: test_Integer_should_have_the_type_`Number`
3243
+ --------------------------------------------------------------------------
3244
+  (0.0ms) rollback transaction
3245
+  (0.0ms) begin transaction
3246
+ ---------------------------------------------------------------------
3247
+ ForestRails::SchemaAdapterTest: test_Date_should_have_the_type_`Date`
3248
+ ---------------------------------------------------------------------
3249
+  (0.0ms) rollback transaction
3250
+  (0.0ms) begin transaction
3251
+ ------------------------------------------------------------------------------------
3252
+ ForestRails::SchemaAdapterTest: test_belongsTo_relationhip_with_specified_class_name
3253
+ ------------------------------------------------------------------------------------
3254
+  (0.0ms) rollback transaction
3255
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
3256
+  (0.1ms) begin transaction
3257
+ ---------------------------
3258
+ ForestRailsTest: test_truth
3259
+ ---------------------------
3260
+  (0.0ms) rollback transaction
3261
+  (0.1ms) begin transaction
3262
+ --------------------------------------------------------------------------------------------
3263
+ ForestRails::ResourceDeserializerTest: test_Simple_JSONAPI_payload_should_extract_attributes
3264
+ --------------------------------------------------------------------------------------------
3265
+  (0.0ms) rollback transaction
3266
+  (0.0ms) begin transaction
3267
+ -------------------------------------------------------------------------
3268
+ ForestRails::SchemaAdapterTest: test_DateTime_should_have_the_type_`Date`
3269
+ -------------------------------------------------------------------------
3270
+  (0.1ms) rollback transaction
3271
+  (0.1ms) begin transaction
3272
+ ------------------------------------------------------------------------------------
3273
+ ForestRails::SchemaAdapterTest: test_belongsTo_relationhip_with_specified_class_name
3274
+ ------------------------------------------------------------------------------------
3275
+  (0.0ms) rollback transaction
3276
+  (0.1ms) begin transaction
3277
+ ---------------------------------------------------------
3278
+ ForestRails::SchemaAdapterTest: test_hasMany_relationship
3279
+ ---------------------------------------------------------
3280
+  (0.0ms) rollback transaction
3281
+  (0.1ms) begin transaction
3282
+ ---------------------------------------------------------------------
3283
+ ForestRails::SchemaAdapterTest: test_Date_should_have_the_type_`Date`
3284
+ ---------------------------------------------------------------------
3285
+  (0.0ms) rollback transaction
3286
+  (0.1ms) begin transaction
3287
+ --------------------------------------------------------
3288
+ ForestRails::SchemaAdapterTest: test_hasOne_relationship
3289
+ --------------------------------------------------------
3290
+  (0.0ms) rollback transaction
3291
+  (0.1ms) begin transaction
3292
+ ------------------------------------------------------------------------
3293
+ ForestRails::SchemaAdapterTest: test_Float_should_have_the_type_`Number`
3294
+ ------------------------------------------------------------------------
3295
+  (0.0ms) rollback transaction
3296
+  (0.1ms) begin transaction
3297
+ ---------------------------------------------------------------------------
3298
+ ForestRails::SchemaAdapterTest: test_Boolean_should_have_the_type_`Boolean`
3299
+ ---------------------------------------------------------------------------
3300
+  (0.0ms) rollback transaction
3301
+  (0.1ms) begin transaction
3302
+ -----------------------------------------------------------
3303
+ ForestRails::SchemaAdapterTest: test_belongsTo_relationship
3304
+ -----------------------------------------------------------
3305
+  (0.0ms) rollback transaction
3306
+  (0.1ms) begin transaction
3307
+ --------------------------------------------------------------------------
3308
+ ForestRails::SchemaAdapterTest: test_Integer_should_have_the_type_`Number`
3309
+ --------------------------------------------------------------------------
3310
+  (0.0ms) rollback transaction
3311
+  (0.1ms) begin transaction
3312
+ --------------------------------------------------------------------------
3313
+ ForestRails::SchemaAdapterTest: test_Decimal_should_have_the_type_`Number`
3314
+ --------------------------------------------------------------------------
3315
+  (0.0ms) rollback transaction
3316
+  (0.1ms) begin transaction
3317
+ -------------------------------------------------------------------------
3318
+ ForestRails::SchemaAdapterTest: test_String_should_have_the_type_`String`
3319
+ -------------------------------------------------------------------------
3320
+  (0.1ms) rollback transaction
3321
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
3322
+  (0.1ms) begin transaction
3323
+ ---------------------------
3324
+ ForestRailsTest: test_truth
3325
+ ---------------------------
3326
+  (0.0ms) rollback transaction
3327
+  (0.0ms) begin transaction
3328
+ --------------------------------------------------------------------------------------------
3329
+ ForestRails::ResourceDeserializerTest: test_Simple_JSONAPI_payload_should_extract_attributes
3330
+ --------------------------------------------------------------------------------------------
3331
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
3332
+  (0.1ms) begin transaction
3333
+ ---------------------------------------------------------
3334
+ ForestRails::SchemaAdapterTest: test_hasMany_relationship
3335
+ ---------------------------------------------------------
3336
+  (0.0ms) rollback transaction
3337
+  (0.1ms) begin transaction
3338
+ ---------------------------------------------------------------------------
3339
+ ForestRails::SchemaAdapterTest: test_Boolean_should_have_the_type_`Boolean`
3340
+ ---------------------------------------------------------------------------
3341
+  (0.0ms) rollback transaction
3342
+  (0.0ms) begin transaction
3343
+ ---------------------------------------------------------------------
3344
+ ForestRails::SchemaAdapterTest: test_Date_should_have_the_type_`Date`
3345
+ ---------------------------------------------------------------------
3346
+  (0.0ms) rollback transaction
3347
+  (0.1ms) begin transaction
3348
+ --------------------------------------------------------
3349
+ ForestRails::SchemaAdapterTest: test_hasOne_relationship
3350
+ --------------------------------------------------------
3351
+  (0.0ms) rollback transaction
3352
+  (0.0ms) begin transaction
3353
+ --------------------------------------------------------------------------
3354
+ ForestRails::SchemaAdapterTest: test_Integer_should_have_the_type_`Number`
3355
+ --------------------------------------------------------------------------
3356
+  (0.1ms) rollback transaction
3357
+  (0.1ms) begin transaction
3358
+ ------------------------------------------------------------------------------------
3359
+ ForestRails::SchemaAdapterTest: test_belongsTo_relationhip_with_specified_class_name
3360
+ ------------------------------------------------------------------------------------
3361
+  (0.0ms) rollback transaction
3362
+  (0.0ms) begin transaction
3363
+ --------------------------------------------------------------------------
3364
+ ForestRails::SchemaAdapterTest: test_Decimal_should_have_the_type_`Number`
3365
+ --------------------------------------------------------------------------
3366
+  (0.0ms) rollback transaction
3367
+  (0.1ms) begin transaction
3368
+ ------------------------------------------------------------------------
3369
+ ForestRails::SchemaAdapterTest: test_Float_should_have_the_type_`Number`
3370
+ ------------------------------------------------------------------------
3371
+  (0.0ms) rollback transaction
3372
+  (0.0ms) begin transaction
3373
+ -------------------------------------------------------------------------
3374
+ ForestRails::SchemaAdapterTest: test_DateTime_should_have_the_type_`Date`
3375
+ -------------------------------------------------------------------------
3376
+  (0.1ms) rollback transaction
3377
+  (0.0ms) begin transaction
3378
+ -----------------------------------------------------------
3379
+ ForestRails::SchemaAdapterTest: test_belongsTo_relationship
3380
+ -----------------------------------------------------------
3381
+  (0.0ms) rollback transaction
3382
+  (0.0ms) begin transaction
3383
+ -------------------------------------------------------------------------
3384
+ ForestRails::SchemaAdapterTest: test_String_should_have_the_type_`String`
3385
+ -------------------------------------------------------------------------
3386
+  (0.1ms) rollback transaction
3387
+  (0.0ms) begin transaction
3388
+ ---------------------------
3389
+ ForestRailsTest: test_truth
3390
+ ---------------------------
3391
+  (0.0ms) rollback transaction
3392
+  (0.0ms) begin transaction
3393
+ --------------------------------------------------------------------------------------------
3394
+ ForestRails::ResourceDeserializerTest: test_Simple_JSONAPI_payload_should_extract_attributes
3395
+ --------------------------------------------------------------------------------------------
3396
+  (0.0ms) rollback transaction
3397
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
3398
+  (0.1ms) begin transaction
3399
+ --------------------------------------------------------------------------------------------
3400
+ ForestRails::ResourceDeserializerTest: test_Simple_JSONAPI_payload_should_extract_attributes
3401
+ --------------------------------------------------------------------------------------------
3402
+  (0.0ms) rollback transaction
3403
+  (0.0ms) begin transaction
3404
+ ---------------------------
3405
+ ForestRailsTest: test_truth
3406
+ ---------------------------
3407
+  (0.0ms) rollback transaction
3408
+  (0.0ms) begin transaction
3409
+ ------------------------------------------------------------------------------------
3410
+ ForestRails::SchemaAdapterTest: test_belongsTo_relationhip_with_specified_class_name
3411
+ ------------------------------------------------------------------------------------
3412
+  (0.0ms) rollback transaction
3413
+  (0.0ms) begin transaction
3414
+ --------------------------------------------------------
3415
+ ForestRails::SchemaAdapterTest: test_hasOne_relationship
3416
+ --------------------------------------------------------
3417
+  (0.0ms) rollback transaction
3418
+  (0.1ms) begin transaction
3419
+ ------------------------------------------------------------------------
3420
+ ForestRails::SchemaAdapterTest: test_Float_should_have_the_type_`Number`
3421
+ ------------------------------------------------------------------------
3422
+  (0.0ms) rollback transaction
3423
+  (0.1ms) begin transaction
3424
+ ---------------------------------------------------------------------
3425
+ ForestRails::SchemaAdapterTest: test_Date_should_have_the_type_`Date`
3426
+ ---------------------------------------------------------------------
3427
+  (0.1ms) rollback transaction
3428
+  (0.1ms) begin transaction
3429
+ --------------------------------------------------------------------------
3430
+ ForestRails::SchemaAdapterTest: test_Integer_should_have_the_type_`Number`
3431
+ --------------------------------------------------------------------------
3432
+  (0.0ms) rollback transaction
3433
+  (0.1ms) begin transaction
3434
+ --------------------------------------------------------------------------
3435
+ ForestRails::SchemaAdapterTest: test_Decimal_should_have_the_type_`Number`
3436
+ --------------------------------------------------------------------------
3437
+  (0.0ms) rollback transaction
3438
+  (0.1ms) begin transaction
3439
+ -------------------------------------------------------------------------
3440
+ ForestRails::SchemaAdapterTest: test_DateTime_should_have_the_type_`Date`
3441
+ -------------------------------------------------------------------------
3442
+  (0.0ms) rollback transaction
3443
+  (0.1ms) begin transaction
3444
+ -------------------------------------------------------------------------
3445
+ ForestRails::SchemaAdapterTest: test_String_should_have_the_type_`String`
3446
+ -------------------------------------------------------------------------
3447
+  (0.0ms) rollback transaction
3448
+  (0.1ms) begin transaction
3449
+ -----------------------------------------------------------
3450
+ ForestRails::SchemaAdapterTest: test_belongsTo_relationship
3451
+ -----------------------------------------------------------
3452
+  (0.0ms) rollback transaction
3453
+  (0.0ms) begin transaction
3454
+ ---------------------------------------------------------
3455
+ ForestRails::SchemaAdapterTest: test_hasMany_relationship
3456
+ ---------------------------------------------------------
3457
+  (0.0ms) rollback transaction
3458
+  (0.0ms) begin transaction
3459
+ ---------------------------------------------------------------------------
3460
+ ForestRails::SchemaAdapterTest: test_Boolean_should_have_the_type_`Boolean`
3461
+ ---------------------------------------------------------------------------
3462
+  (0.0ms) rollback transaction
3463
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
3464
+  (0.1ms) begin transaction
3465
+ --------------------------------------------------------------------------------------------
3466
+ ForestRails::ResourceDeserializerTest: test_Simple_JSONAPI_payload_should_extract_attributes
3467
+ --------------------------------------------------------------------------------------------
3468
+  (0.0ms) rollback transaction
3469
+  (0.0ms) begin transaction
3470
+ -------------------------------------------------------------------------
3471
+ ForestRails::SchemaAdapterTest: test_String_should_have_the_type_`String`
3472
+ -------------------------------------------------------------------------
3473
+  (0.1ms) rollback transaction
3474
+  (0.2ms) begin transaction
3475
+ ------------------------------------------------------------------------------------
3476
+ ForestRails::SchemaAdapterTest: test_belongsTo_relationhip_with_specified_class_name
3477
+ ------------------------------------------------------------------------------------
3478
+  (0.1ms) rollback transaction
3479
+  (0.0ms) begin transaction
3480
+ ---------------------------------------------------------------------
3481
+ ForestRails::SchemaAdapterTest: test_Date_should_have_the_type_`Date`
3482
+ ---------------------------------------------------------------------
3483
+  (0.0ms) rollback transaction
3484
+  (0.0ms) begin transaction
3485
+ ---------------------------------------------------------
3486
+ ForestRails::SchemaAdapterTest: test_hasMany_relationship
3487
+ ---------------------------------------------------------
3488
+  (0.0ms) rollback transaction
3489
+  (0.0ms) begin transaction
3490
+ --------------------------------------------------------------------------
3491
+ ForestRails::SchemaAdapterTest: test_Integer_should_have_the_type_`Number`
3492
+ --------------------------------------------------------------------------
3493
+  (0.1ms) rollback transaction
3494
+  (0.0ms) begin transaction
3495
+ -------------------------------------------------------------------------
3496
+ ForestRails::SchemaAdapterTest: test_DateTime_should_have_the_type_`Date`
3497
+ -------------------------------------------------------------------------
3498
+  (0.1ms) rollback transaction
3499
+  (0.0ms) begin transaction
3500
+ --------------------------------------------------------------------------
3501
+ ForestRails::SchemaAdapterTest: test_Decimal_should_have_the_type_`Number`
3502
+ --------------------------------------------------------------------------
3503
+  (0.0ms) rollback transaction
3504
+  (0.0ms) begin transaction
3505
+ ---------------------------------------------------------------------------
3506
+ ForestRails::SchemaAdapterTest: test_Boolean_should_have_the_type_`Boolean`
3507
+ ---------------------------------------------------------------------------
3508
+  (0.0ms) rollback transaction
3509
+  (0.0ms) begin transaction
3510
+ --------------------------------------------------------
3511
+ ForestRails::SchemaAdapterTest: test_hasOne_relationship
3512
+ --------------------------------------------------------
3513
+  (0.0ms) rollback transaction
3514
+  (0.0ms) begin transaction
3515
+ ------------------------------------------------------------------------
3516
+ ForestRails::SchemaAdapterTest: test_Float_should_have_the_type_`Number`
3517
+ ------------------------------------------------------------------------
3518
+  (0.0ms) rollback transaction
3519
+  (0.0ms) begin transaction
3520
+ -----------------------------------------------------------
3521
+ ForestRails::SchemaAdapterTest: test_belongsTo_relationship
3522
+ -----------------------------------------------------------
3523
+  (0.0ms) rollback transaction
3524
+  (0.0ms) begin transaction
3525
+ ---------------------------
3526
+ ForestRailsTest: test_truth
3527
+ ---------------------------
3528
+  (0.0ms) rollback transaction
3529
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
3530
+  (0.1ms) begin transaction
3531
+ --------------------------------------------------------------------------
3532
+ ForestRails::SchemaAdapterTest: test_Integer_should_have_the_type_`Number`
3533
+ --------------------------------------------------------------------------
3534
+  (0.1ms) rollback transaction
3535
+  (0.0ms) begin transaction
3536
+ ---------------------------------------------------------
3537
+ ForestRails::SchemaAdapterTest: test_hasMany_relationship
3538
+ ---------------------------------------------------------
3539
+  (0.0ms) rollback transaction
3540
+  (0.0ms) begin transaction
3541
+ ------------------------------------------------------------------------------------
3542
+ ForestRails::SchemaAdapterTest: test_belongsTo_relationhip_with_specified_class_name
3543
+ ------------------------------------------------------------------------------------
3544
+  (0.0ms) rollback transaction
3545
+  (0.0ms) begin transaction
3546
+ --------------------------------------------------------------------------
3547
+ ForestRails::SchemaAdapterTest: test_Decimal_should_have_the_type_`Number`
3548
+ --------------------------------------------------------------------------
3549
+  (0.1ms) rollback transaction
3550
+  (0.0ms) begin transaction
3551
+ -------------------------------------------------------------------------
3552
+ ForestRails::SchemaAdapterTest: test_String_should_have_the_type_`String`
3553
+ -------------------------------------------------------------------------
3554
+  (0.0ms) rollback transaction
3555
+  (0.0ms) begin transaction
3556
+ -----------------------------------------------------------
3557
+ ForestRails::SchemaAdapterTest: test_belongsTo_relationship
3558
+ -----------------------------------------------------------
3559
+  (0.0ms) rollback transaction
3560
+  (0.0ms) begin transaction
3561
+ ------------------------------------------------------------------------
3562
+ ForestRails::SchemaAdapterTest: test_Float_should_have_the_type_`Number`
3563
+ ------------------------------------------------------------------------
3564
+  (0.0ms) rollback transaction
3565
+  (0.1ms) begin transaction
3566
+ ---------------------------------------------------------------------------
3567
+ ForestRails::SchemaAdapterTest: test_Boolean_should_have_the_type_`Boolean`
3568
+ ---------------------------------------------------------------------------
3569
+  (0.0ms) rollback transaction
3570
+  (0.0ms) begin transaction
3571
+ ---------------------------------------------------------------------
3572
+ ForestRails::SchemaAdapterTest: test_Date_should_have_the_type_`Date`
3573
+ ---------------------------------------------------------------------
3574
+  (0.0ms) rollback transaction
3575
+  (0.0ms) begin transaction
3576
+ -------------------------------------------------------------------------
3577
+ ForestRails::SchemaAdapterTest: test_DateTime_should_have_the_type_`Date`
3578
+ -------------------------------------------------------------------------
3579
+  (0.0ms) rollback transaction
3580
+  (0.0ms) begin transaction
3581
+ --------------------------------------------------------
3582
+ ForestRails::SchemaAdapterTest: test_hasOne_relationship
3583
+ --------------------------------------------------------
3584
+  (0.0ms) rollback transaction
3585
+  (0.0ms) begin transaction
3586
+ ---------------------------
3587
+ ForestRailsTest: test_truth
3588
+ ---------------------------
3589
+  (0.0ms) rollback transaction
3590
+  (0.0ms) begin transaction
3591
+ --------------------------------------------------------------------------------------------
3592
+ ForestRails::ResourceDeserializerTest: test_Simple_JSONAPI_payload_should_extract_attributes
3593
+ --------------------------------------------------------------------------------------------
3594
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
3595
+  (0.1ms) begin transaction
3596
+ ---------------------------------------------------------------------
3597
+ ForestRails::SchemaAdapterTest: test_Date_should_have_the_type_`Date`
3598
+ ---------------------------------------------------------------------
3599
+  (0.0ms) rollback transaction
3600
+  (0.0ms) begin transaction
3601
+ -------------------------------------------------------------------------
3602
+ ForestRails::SchemaAdapterTest: test_DateTime_should_have_the_type_`Date`
3603
+ -------------------------------------------------------------------------
3604
+  (0.0ms) rollback transaction
3605
+  (0.0ms) begin transaction
3606
+ -----------------------------------------------------------
3607
+ ForestRails::SchemaAdapterTest: test_belongsTo_relationship
3608
+ -----------------------------------------------------------
3609
+  (0.0ms) rollback transaction
3610
+  (0.0ms) begin transaction
3611
+ --------------------------------------------------------------------------
3612
+ ForestRails::SchemaAdapterTest: test_Decimal_should_have_the_type_`Number`
3613
+ --------------------------------------------------------------------------
3614
+  (0.0ms) rollback transaction
3615
+  (0.0ms) begin transaction
3616
+ --------------------------------------------------------
3617
+ ForestRails::SchemaAdapterTest: test_hasOne_relationship
3618
+ --------------------------------------------------------
3619
+  (0.1ms) rollback transaction
3620
+  (0.0ms) begin transaction
3621
+ -------------------------------------------------------------------------
3622
+ ForestRails::SchemaAdapterTest: test_String_should_have_the_type_`String`
3623
+ -------------------------------------------------------------------------
3624
+  (0.0ms) rollback transaction
3625
+  (0.1ms) begin transaction
3626
+ ------------------------------------------------------------------------
3627
+ ForestRails::SchemaAdapterTest: test_Float_should_have_the_type_`Number`
3628
+ ------------------------------------------------------------------------
3629
+  (0.0ms) rollback transaction
3630
+  (0.1ms) begin transaction
3631
+ ------------------------------------------------------------------------------------
3632
+ ForestRails::SchemaAdapterTest: test_belongsTo_relationhip_with_specified_class_name
3633
+ ------------------------------------------------------------------------------------
3634
+  (0.0ms) rollback transaction
3635
+  (0.0ms) begin transaction
3636
+ ---------------------------------------------------------------------------
3637
+ ForestRails::SchemaAdapterTest: test_Boolean_should_have_the_type_`Boolean`
3638
+ ---------------------------------------------------------------------------
3639
+  (0.0ms) rollback transaction
3640
+  (0.0ms) begin transaction
3641
+ ---------------------------------------------------------
3642
+ ForestRails::SchemaAdapterTest: test_hasMany_relationship
3643
+ ---------------------------------------------------------
3644
+  (0.0ms) rollback transaction
3645
+  (0.0ms) begin transaction
3646
+ --------------------------------------------------------------------------
3647
+ ForestRails::SchemaAdapterTest: test_Integer_should_have_the_type_`Number`
3648
+ --------------------------------------------------------------------------
3649
+  (0.1ms) rollback transaction
3650
+  (0.0ms) begin transaction
3651
+ ---------------------------
3652
+ ForestRailsTest: test_truth
3653
+ ---------------------------
3654
+  (0.0ms) rollback transaction
3655
+  (0.0ms) begin transaction
3656
+ --------------------------------------------------------------------------------------------
3657
+ ForestRails::ResourceDeserializerTest: test_Simple_JSONAPI_payload_should_extract_attributes
3658
+ --------------------------------------------------------------------------------------------
3659
+  (0.0ms) rollback transaction
3660
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
3661
+  (0.1ms) begin transaction
3662
+ --------------------------------------------------------------------------
3663
+ ForestRails::SchemaAdapterTest: test_Integer_should_have_the_type_`Number`
3664
+ --------------------------------------------------------------------------
3665
+  (0.0ms) rollback transaction
3666
+  (0.1ms) begin transaction
3667
+ ------------------------------------------------------------------------
3668
+ ForestRails::SchemaAdapterTest: test_Float_should_have_the_type_`Number`
3669
+ ------------------------------------------------------------------------
3670
+  (0.0ms) rollback transaction
3671
+  (0.1ms) begin transaction
3672
+ --------------------------------------------------------------------------
3673
+ ForestRails::SchemaAdapterTest: test_Decimal_should_have_the_type_`Number`
3674
+ --------------------------------------------------------------------------
3675
+  (0.0ms) rollback transaction
3676
+  (0.0ms) begin transaction
3677
+ -----------------------------------------------------------
3678
+ ForestRails::SchemaAdapterTest: test_belongsTo_relationship
3679
+ -----------------------------------------------------------
3680
+  (0.0ms) rollback transaction
3681
+  (0.0ms) begin transaction
3682
+ ---------------------------------------------------------
3683
+ ForestRails::SchemaAdapterTest: test_hasMany_relationship
3684
+ ---------------------------------------------------------
3685
+  (0.0ms) rollback transaction
3686
+  (0.0ms) begin transaction
3687
+ ------------------------------------------------------------------------------------
3688
+ ForestRails::SchemaAdapterTest: test_belongsTo_relationhip_with_specified_class_name
3689
+ ------------------------------------------------------------------------------------
3690
+  (0.0ms) rollback transaction
3691
+  (0.0ms) begin transaction
3692
+ ---------------------------------------------------------------------
3693
+ ForestRails::SchemaAdapterTest: test_Date_should_have_the_type_`Date`
3694
+ ---------------------------------------------------------------------
3695
+  (0.0ms) rollback transaction
3696
+  (0.0ms) begin transaction
3697
+ --------------------------------------------------------
3698
+ ForestRails::SchemaAdapterTest: test_hasOne_relationship
3699
+ --------------------------------------------------------
3700
+  (0.1ms) rollback transaction
3701
+  (0.0ms) begin transaction
3702
+ -------------------------------------------------------------------------
3703
+ ForestRails::SchemaAdapterTest: test_String_should_have_the_type_`String`
3704
+ -------------------------------------------------------------------------
3705
+  (0.0ms) rollback transaction
3706
+  (0.0ms) begin transaction
3707
+ -------------------------------------------------------------------------
3708
+ ForestRails::SchemaAdapterTest: test_DateTime_should_have_the_type_`Date`
3709
+ -------------------------------------------------------------------------
3710
+  (0.0ms) rollback transaction
3711
+  (0.0ms) begin transaction
3712
+ ---------------------------------------------------------------------------
3713
+ ForestRails::SchemaAdapterTest: test_Boolean_should_have_the_type_`Boolean`
3714
+ ---------------------------------------------------------------------------
3715
+  (0.0ms) rollback transaction
3716
+  (0.0ms) begin transaction
3717
+ ---------------------------
3718
+ ForestRailsTest: test_truth
3719
+ ---------------------------
3720
+  (0.0ms) rollback transaction
3721
+  (0.0ms) begin transaction
3722
+ --------------------------------------------------------------------------------------------
3723
+ ForestRails::ResourceDeserializerTest: test_Simple_JSONAPI_payload_should_extract_attributes
3724
+ --------------------------------------------------------------------------------------------
3725
+  (0.0ms) rollback transaction
3726
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
3727
+  (0.1ms) begin transaction
3728
+ ----------------------------------------------------------------------------------------
3729
+ ForestRails::ResourceDeserializerTest: test_JSONAPI_payload_should_support_relationships
3730
+ ----------------------------------------------------------------------------------------
3731
+  (0.0ms) rollback transaction
3732
+  (0.1ms) begin transaction
3733
+ --------------------------------------------------------------------------------------------
3734
+ ForestRails::ResourceDeserializerTest: test_Simple_JSONAPI_payload_should_extract_attributes
3735
+ --------------------------------------------------------------------------------------------
3736
+  (0.0ms) rollback transaction
3737
+  (0.0ms) begin transaction
3738
+ ---------------------------------------------------------------------
3739
+ ForestRails::SchemaAdapterTest: test_Date_should_have_the_type_`Date`
3740
+ ---------------------------------------------------------------------
3741
+  (0.0ms) rollback transaction
3742
+  (0.0ms) begin transaction
3743
+ ------------------------------------------------------------------------
3744
+ ForestRails::SchemaAdapterTest: test_Float_should_have_the_type_`Number`
3745
+ ------------------------------------------------------------------------
3746
+  (0.0ms) rollback transaction
3747
+  (0.1ms) begin transaction
3748
+ --------------------------------------------------------------------------
3749
+ ForestRails::SchemaAdapterTest: test_Decimal_should_have_the_type_`Number`
3750
+ --------------------------------------------------------------------------
3751
+  (0.0ms) rollback transaction
3752
+  (0.1ms) begin transaction
3753
+ -------------------------------------------------------------------------
3754
+ ForestRails::SchemaAdapterTest: test_DateTime_should_have_the_type_`Date`
3755
+ -------------------------------------------------------------------------
3756
+  (0.0ms) rollback transaction
3757
+  (0.1ms) begin transaction
3758
+ ------------------------------------------------------------------------------------
3759
+ ForestRails::SchemaAdapterTest: test_belongsTo_relationhip_with_specified_class_name
3760
+ ------------------------------------------------------------------------------------
3761
+  (0.0ms) rollback transaction
3762
+  (0.1ms) begin transaction
3763
+ -------------------------------------------------------------------------
3764
+ ForestRails::SchemaAdapterTest: test_String_should_have_the_type_`String`
3765
+ -------------------------------------------------------------------------
3766
+  (0.1ms) rollback transaction
3767
+  (0.1ms) begin transaction
3768
+ --------------------------------------------------------
3769
+ ForestRails::SchemaAdapterTest: test_hasOne_relationship
3770
+ --------------------------------------------------------
3771
+  (0.0ms) rollback transaction
3772
+  (0.1ms) begin transaction
3773
+ ---------------------------------------------------------
3774
+ ForestRails::SchemaAdapterTest: test_hasMany_relationship
3775
+ ---------------------------------------------------------
3776
+  (0.0ms) rollback transaction
3777
+  (0.1ms) begin transaction
3778
+ -----------------------------------------------------------
3779
+ ForestRails::SchemaAdapterTest: test_belongsTo_relationship
3780
+ -----------------------------------------------------------
3781
+  (0.1ms) rollback transaction
3782
+  (0.0ms) begin transaction
3783
+ --------------------------------------------------------------------------
3784
+ ForestRails::SchemaAdapterTest: test_Integer_should_have_the_type_`Number`
3785
+ --------------------------------------------------------------------------
3786
+  (0.0ms) rollback transaction
3787
+  (0.0ms) begin transaction
3788
+ ---------------------------------------------------------------------------
3789
+ ForestRails::SchemaAdapterTest: test_Boolean_should_have_the_type_`Boolean`
3790
+ ---------------------------------------------------------------------------
3791
+  (0.0ms) rollback transaction
3792
+  (0.0ms) begin transaction
3793
+ ---------------------------
3794
+ ForestRailsTest: test_truth
3795
+ ---------------------------
3796
+  (0.0ms) rollback transaction
3797
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
3798
+  (0.1ms) begin transaction
3799
+ ---------------------------
3800
+ ForestRailsTest: test_truth
3801
+ ---------------------------
3802
+  (0.0ms) rollback transaction
3803
+  (0.0ms) begin transaction
3804
+ --------------------------------------------------------
3805
+ ForestRails::SchemaAdapterTest: test_hasOne_relationship
3806
+ --------------------------------------------------------
3807
+  (0.0ms) rollback transaction
3808
+  (0.1ms) begin transaction
3809
+ ------------------------------------------------------------------------
3810
+ ForestRails::SchemaAdapterTest: test_Float_should_have_the_type_`Number`
3811
+ ------------------------------------------------------------------------
3812
+  (0.1ms) rollback transaction
3813
+  (0.1ms) begin transaction
3814
+ -----------------------------------------------------------
3815
+ ForestRails::SchemaAdapterTest: test_belongsTo_relationship
3816
+ -----------------------------------------------------------
3817
+  (0.1ms) rollback transaction
3818
+  (0.1ms) begin transaction
3819
+ --------------------------------------------------------------------------
3820
+ ForestRails::SchemaAdapterTest: test_Decimal_should_have_the_type_`Number`
3821
+ --------------------------------------------------------------------------
3822
+  (0.1ms) rollback transaction
3823
+  (0.1ms) begin transaction
3824
+ --------------------------------------------------------------------------
3825
+ ForestRails::SchemaAdapterTest: test_Integer_should_have_the_type_`Number`
3826
+ --------------------------------------------------------------------------
3827
+  (0.0ms) rollback transaction
3828
+  (0.0ms) begin transaction
3829
+ -------------------------------------------------------------------------
3830
+ ForestRails::SchemaAdapterTest: test_DateTime_should_have_the_type_`Date`
3831
+ -------------------------------------------------------------------------
3832
+  (0.1ms) rollback transaction
3833
+  (0.0ms) begin transaction
3834
+ ---------------------------------------------------------
3835
+ ForestRails::SchemaAdapterTest: test_hasMany_relationship
3836
+ ---------------------------------------------------------
3837
+  (0.0ms) rollback transaction
3838
+  (0.0ms) begin transaction
3839
+ ---------------------------------------------------------------------
3840
+ ForestRails::SchemaAdapterTest: test_Date_should_have_the_type_`Date`
3841
+ ---------------------------------------------------------------------
3842
+  (0.0ms) rollback transaction
3843
+  (0.0ms) begin transaction
3844
+ ------------------------------------------------------------------------------------
3845
+ ForestRails::SchemaAdapterTest: test_belongsTo_relationhip_with_specified_class_name
3846
+ ------------------------------------------------------------------------------------
3847
+  (0.0ms) rollback transaction
3848
+  (0.0ms) begin transaction
3849
+ -------------------------------------------------------------------------
3850
+ ForestRails::SchemaAdapterTest: test_String_should_have_the_type_`String`
3851
+ -------------------------------------------------------------------------
3852
+  (0.0ms) rollback transaction
3853
+  (0.0ms) begin transaction
3854
+ ---------------------------------------------------------------------------
3855
+ ForestRails::SchemaAdapterTest: test_Boolean_should_have_the_type_`Boolean`
3856
+ ---------------------------------------------------------------------------
3857
+  (0.0ms) rollback transaction
3858
+  (0.0ms) begin transaction
3859
+ ----------------------------------------------------------------------------------------
3860
+ ForestRails::ResourceDeserializerTest: test_JSONAPI_payload_should_support_relationships
3861
+ ----------------------------------------------------------------------------------------
3862
+  (0.5ms) rollback transaction
3863
+  (0.3ms) begin transaction
3864
+ --------------------------------------------------------------------------------------------
3865
+ ForestRails::ResourceDeserializerTest: test_Simple_JSONAPI_payload_should_extract_attributes
3866
+ --------------------------------------------------------------------------------------------
3867
+  (0.3ms) rollback transaction
3868
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
3869
+  (0.1ms) begin transaction
3870
+ ----------------------------------------------------------------------------------------
3871
+ ForestRails::ResourceDeserializerTest: test_JSONAPI_payload_should_support_relationships
3872
+ ----------------------------------------------------------------------------------------
3873
+  (0.1ms) rollback transaction
3874
+  (0.1ms) begin transaction
3875
+ --------------------------------------------------------------------------------------------
3876
+ ForestRails::ResourceDeserializerTest: test_Simple_JSONAPI_payload_should_extract_attributes
3877
+ --------------------------------------------------------------------------------------------
3878
+  (0.0ms) rollback transaction
3879
+  (0.1ms) begin transaction
3880
+ ---------------------------------------------------------------------------
3881
+ ForestRails::SchemaAdapterTest: test_Boolean_should_have_the_type_`Boolean`
3882
+ ---------------------------------------------------------------------------
3883
+  (0.0ms) rollback transaction
3884
+  (0.0ms) begin transaction
3885
+ -------------------------------------------------------------------------
3886
+ ForestRails::SchemaAdapterTest: test_DateTime_should_have_the_type_`Date`
3887
+ -------------------------------------------------------------------------
3888
+  (0.0ms) rollback transaction
3889
+  (0.0ms) begin transaction
3890
+ --------------------------------------------------------------------------
3891
+ ForestRails::SchemaAdapterTest: test_Decimal_should_have_the_type_`Number`
3892
+ --------------------------------------------------------------------------
3893
+  (0.0ms) rollback transaction
3894
+  (0.0ms) begin transaction
3895
+ ---------------------------------------------------------
3896
+ ForestRails::SchemaAdapterTest: test_hasMany_relationship
3897
+ ---------------------------------------------------------
3898
+  (0.0ms) rollback transaction
3899
+  (0.0ms) begin transaction
3900
+ ------------------------------------------------------------------------
3901
+ ForestRails::SchemaAdapterTest: test_Float_should_have_the_type_`Number`
3902
+ ------------------------------------------------------------------------
3903
+  (0.0ms) rollback transaction
3904
+  (0.0ms) begin transaction
3905
+ --------------------------------------------------------------------------
3906
+ ForestRails::SchemaAdapterTest: test_Integer_should_have_the_type_`Number`
3907
+ --------------------------------------------------------------------------
3908
+  (0.0ms) rollback transaction
3909
+  (0.0ms) begin transaction
3910
+ -------------------------------------------------------------------------
3911
+ ForestRails::SchemaAdapterTest: test_String_should_have_the_type_`String`
3912
+ -------------------------------------------------------------------------
3913
+  (0.0ms) rollback transaction
3914
+  (0.1ms) begin transaction
3915
+ ------------------------------------------------------------------------------------
3916
+ ForestRails::SchemaAdapterTest: test_belongsTo_relationhip_with_specified_class_name
3917
+ ------------------------------------------------------------------------------------
3918
+  (0.0ms) rollback transaction
3919
+  (0.1ms) begin transaction
3920
+ -----------------------------------------------------------
3921
+ ForestRails::SchemaAdapterTest: test_belongsTo_relationship
3922
+ -----------------------------------------------------------
3923
+  (0.0ms) rollback transaction
3924
+  (0.0ms) begin transaction
3925
+ ---------------------------------------------------------------------
3926
+ ForestRails::SchemaAdapterTest: test_Date_should_have_the_type_`Date`
3927
+ ---------------------------------------------------------------------
3928
+  (0.0ms) rollback transaction
3929
+  (0.0ms) begin transaction
3930
+ --------------------------------------------------------
3931
+ ForestRails::SchemaAdapterTest: test_hasOne_relationship
3932
+ --------------------------------------------------------
3933
+  (0.0ms) rollback transaction
3934
+  (0.0ms) begin transaction
3935
+ ---------------------------
3936
+ ForestRailsTest: test_truth
3937
+ ---------------------------
3938
+  (0.0ms) rollback transaction
3939
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
3940
+  (0.1ms) begin transaction
3941
+ ----------------------------------------------------------------------------------------
3942
+ ForestRails::ResourceDeserializerTest: test_JSONAPI_payload_should_support_relationships
3943
+ ----------------------------------------------------------------------------------------
3944
+  (0.1ms) rollback transaction
3945
+  (0.1ms) begin transaction
3946
+ -------------------------------------------------------------------------------------
3947
+ ForestRails::ResourceDeserializerTest: test_JSONAPI_payload_should_extract_attributes
3948
+ -------------------------------------------------------------------------------------
3949
+  (0.0ms) rollback transaction
3950
+  (0.0ms) begin transaction
3951
+ ---------------------------------------------------------
3952
+ ForestRails::SchemaAdapterTest: test_hasMany_relationship
3953
+ ---------------------------------------------------------
3954
+  (0.1ms) rollback transaction
3955
+  (0.0ms) begin transaction
3956
+ -----------------------------------------------------------
3957
+ ForestRails::SchemaAdapterTest: test_belongsTo_relationship
3958
+ -----------------------------------------------------------
3959
+  (0.1ms) rollback transaction
3960
+  (0.0ms) begin transaction
3961
+ -------------------------------------------------------------------------
3962
+ ForestRails::SchemaAdapterTest: test_DateTime_should_have_the_type_`Date`
3963
+ -------------------------------------------------------------------------
3964
+  (0.0ms) rollback transaction
3965
+  (0.1ms) begin transaction
3966
+ ---------------------------------------------------------------------------
3967
+ ForestRails::SchemaAdapterTest: test_Boolean_should_have_the_type_`Boolean`
3968
+ ---------------------------------------------------------------------------
3969
+  (0.0ms) rollback transaction
3970
+  (0.0ms) begin transaction
3971
+ --------------------------------------------------------
3972
+ ForestRails::SchemaAdapterTest: test_hasOne_relationship
3973
+ --------------------------------------------------------
3974
+  (0.0ms) rollback transaction
3975
+  (0.0ms) begin transaction
3976
+ --------------------------------------------------------------------------
3977
+ ForestRails::SchemaAdapterTest: test_Integer_should_have_the_type_`Number`
3978
+ --------------------------------------------------------------------------
3979
+  (0.0ms) rollback transaction
3980
+  (0.0ms) begin transaction
3981
+ ------------------------------------------------------------------------------------
3982
+ ForestRails::SchemaAdapterTest: test_belongsTo_relationhip_with_specified_class_name
3983
+ ------------------------------------------------------------------------------------
3984
+  (0.0ms) rollback transaction
3985
+  (0.1ms) begin transaction
3986
+ --------------------------------------------------------------------------
3987
+ ForestRails::SchemaAdapterTest: test_Decimal_should_have_the_type_`Number`
3988
+ --------------------------------------------------------------------------
3989
+  (0.0ms) rollback transaction
3990
+  (0.0ms) begin transaction
3991
+ ------------------------------------------------------------------------
3992
+ ForestRails::SchemaAdapterTest: test_Float_should_have_the_type_`Number`
3993
+ ------------------------------------------------------------------------
3994
+  (0.0ms) rollback transaction
3995
+  (0.0ms) begin transaction
3996
+ ---------------------------------------------------------------------
3997
+ ForestRails::SchemaAdapterTest: test_Date_should_have_the_type_`Date`
3998
+ ---------------------------------------------------------------------
3999
+  (0.0ms) rollback transaction
4000
+  (0.0ms) begin transaction
4001
+ -------------------------------------------------------------------------
4002
+ ForestRails::SchemaAdapterTest: test_String_should_have_the_type_`String`
4003
+ -------------------------------------------------------------------------
4004
+  (0.0ms) rollback transaction
4005
+  (0.0ms) begin transaction
4006
+ ---------------------------
4007
+ ForestRailsTest: test_truth
4008
+ ---------------------------
4009
+  (0.0ms) rollback transaction