easy_contact 0.0.3 → 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (51) hide show
  1. checksums.yaml +7 -0
  2. checksums.yaml.gz.sig +2 -0
  3. data.tar.gz.sig +0 -0
  4. data/Rakefile +16 -9
  5. data/app/models/easy_contact/entry.rb +1 -1
  6. data/lib/easy_contact/version.rb +1 -1
  7. data/test/dummy/README.rdoc +28 -0
  8. data/test/dummy/Rakefile +6 -0
  9. data/test/dummy/app/assets/javascripts/application.js +13 -0
  10. data/test/dummy/app/assets/stylesheets/application.css +13 -0
  11. data/test/dummy/app/controllers/application_controller.rb +5 -0
  12. data/test/dummy/app/helpers/application_helper.rb +2 -0
  13. data/test/dummy/app/models/user.rb +3 -0
  14. data/test/dummy/app/views/layouts/application.html.erb +14 -0
  15. data/test/dummy/bin/bundle +3 -0
  16. data/test/dummy/bin/rails +4 -0
  17. data/test/dummy/bin/rake +4 -0
  18. data/test/dummy/config.ru +4 -0
  19. data/test/dummy/config/application.rb +23 -0
  20. data/test/dummy/config/boot.rb +5 -0
  21. data/test/dummy/config/database.yml +25 -0
  22. data/test/dummy/config/environment.rb +5 -0
  23. data/test/dummy/config/environments/development.rb +29 -0
  24. data/test/dummy/config/environments/production.rb +80 -0
  25. data/test/dummy/config/environments/test.rb +36 -0
  26. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  27. data/test/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  28. data/test/dummy/config/initializers/inflections.rb +16 -0
  29. data/test/dummy/config/initializers/mime_types.rb +5 -0
  30. data/test/dummy/config/initializers/secret_token.rb +12 -0
  31. data/test/dummy/config/initializers/session_store.rb +3 -0
  32. data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
  33. data/test/dummy/config/locales/en.yml +23 -0
  34. data/test/dummy/config/routes.rb +56 -0
  35. data/test/dummy/db/development.sqlite3 +0 -0
  36. data/test/dummy/db/migrate/20130221043330_create_users.rb +8 -0
  37. data/test/dummy/db/migrate/20130221043348_easy_contact_migration.rb +18 -0
  38. data/test/dummy/db/schema.rb +37 -0
  39. data/test/dummy/db/test.sqlite3 +0 -0
  40. data/test/dummy/log/development.log +67 -0
  41. data/test/dummy/log/test.log +825 -0
  42. data/test/dummy/public/404.html +58 -0
  43. data/test/dummy/public/422.html +58 -0
  44. data/test/dummy/public/500.html +57 -0
  45. data/test/dummy/public/favicon.ico +0 -0
  46. data/test/dummy/test/models/easy_contact/entry_test.rb +36 -0
  47. data/test/dummy/test/models/easy_contact/foo_test.rb +8 -0
  48. data/test/easy_contact_test.rb +7 -0
  49. data/test/test_helper.rb +30 -0
  50. metadata +123 -48
  51. metadata.gz.sig +0 -0
@@ -0,0 +1,5 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Add new mime types for use in respond_to blocks:
4
+ # Mime::Type.register "text/richtext", :rtf
5
+ # Mime::Type.register_alias "text/html", :iphone
@@ -0,0 +1,12 @@
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 your secret_key_base is kept private
11
+ # if you're sharing your code publicly.
12
+ Dummy::Application.config.secret_key_base = '14b4b9cd7933007968917ea2be4b2f7f7a90e19e13ec1ae84c8bb046bf25d17b5dafa9f8b6daef30de39d7731651ff31405deb8aae1fb06a0fe3c3a739a5dc12'
@@ -0,0 +1,3 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ Dummy::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,56 @@
1
+ Dummy::Application.routes.draw do
2
+ # The priority is based upon order of creation: first created -> highest priority.
3
+ # See how all your routes lay out with "rake routes".
4
+
5
+ # You can have the root of your site routed with "root"
6
+ # root 'welcome#index'
7
+
8
+ # Example of regular route:
9
+ # get 'products/:id' => 'catalog#view'
10
+
11
+ # Example of named route that can be invoked with purchase_url(id: product.id)
12
+ # get 'products/:id/purchase' => 'catalog#purchase', as: :purchase
13
+
14
+ # Example resource route (maps HTTP verbs to controller actions automatically):
15
+ # resources :products
16
+
17
+ # Example resource route with options:
18
+ # resources :products do
19
+ # member do
20
+ # get 'short'
21
+ # post 'toggle'
22
+ # end
23
+ #
24
+ # collection do
25
+ # get 'sold'
26
+ # end
27
+ # end
28
+
29
+ # Example resource route with sub-resources:
30
+ # resources :products do
31
+ # resources :comments, :sales
32
+ # resource :seller
33
+ # end
34
+
35
+ # Example resource route with more complex sub-resources:
36
+ # resources :products do
37
+ # resources :comments
38
+ # resources :sales do
39
+ # get 'recent', on: :collection
40
+ # end
41
+ # end
42
+
43
+ # Example resource route with concerns:
44
+ # concern :toggleable do
45
+ # post 'toggle'
46
+ # end
47
+ # resources :posts, concerns: :toggleable
48
+ # resources :photos, concerns: :toggleable
49
+
50
+ # Example resource route within a namespace:
51
+ # namespace :admin do
52
+ # # Directs /admin/products/* to Admin::ProductsController
53
+ # # (app/controllers/admin/products_controller.rb)
54
+ # resources :products
55
+ # end
56
+ end
Binary file
@@ -0,0 +1,8 @@
1
+ class CreateUsers < ActiveRecord::Migration
2
+ def change
3
+ create_table :users do |t|
4
+
5
+ t.timestamps
6
+ end
7
+ end
8
+ end
@@ -0,0 +1,18 @@
1
+ class EasyContactMigration < ActiveRecord::Migration
2
+ def change
3
+ create_table :easy_contact_entries do |t|
4
+ t.string :type
5
+ t.string :label
6
+ t.text :content
7
+ t.string :addition
8
+ t.string :extra
9
+ t.string :country
10
+ t.string :locale
11
+ t.boolean :primary
12
+ t.references :contactable
13
+
14
+ t.timestamps
15
+ end
16
+ add_index :easy_contact_entries, :contactable_id
17
+ end
18
+ end
@@ -0,0 +1,37 @@
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 to check this file into your version control system.
13
+
14
+ ActiveRecord::Schema.define(:version => 20130221043348) do
15
+
16
+ create_table "easy_contact_entries", :force => true do |t|
17
+ t.string "type"
18
+ t.string "label"
19
+ t.text "content"
20
+ t.string "addition"
21
+ t.string "extra"
22
+ t.string "country"
23
+ t.string "locale"
24
+ t.boolean "primary"
25
+ t.integer "contactable_id"
26
+ t.datetime "created_at", :null => false
27
+ t.datetime "updated_at", :null => false
28
+ end
29
+
30
+ add_index "easy_contact_entries", ["contactable_id"], :name => "index_easy_contact_entries_on_contactable_id"
31
+
32
+ create_table "users", :force => true do |t|
33
+ t.datetime "created_at", :null => false
34
+ t.datetime "updated_at", :null => false
35
+ end
36
+
37
+ end
Binary file
@@ -0,0 +1,67 @@
1
+ Connecting to database specified by database.yml
2
+ Connecting to database specified by database.yml
3
+ Connecting to database specified by database.yml
4
+ Connecting to database specified by database.yml
5
+  (0.1ms) select sqlite_version(*)
6
+  (29.7ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
7
+  (2.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
8
+  (27.8ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
9
+ Migrating to EasyContactMigration (20130221042833)
10
+  (0.1ms) begin transaction
11
+  (0.1ms) rollback transaction
12
+ Connecting to database specified by database.yml
13
+  (1.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
14
+ Migrating to EasyContactMigration (20130221042833)
15
+  (0.0ms) select sqlite_version(*)
16
+  (0.1ms) begin transaction
17
+  (0.0ms) rollback transaction
18
+ Connecting to database specified by database.yml
19
+  (2.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
20
+ Migrating to EasyContactMigration (20130221042833)
21
+  (0.0ms) select sqlite_version(*)
22
+  (0.1ms) begin transaction
23
+  (0.1ms) rollback transaction
24
+ Connecting to database specified by database.yml
25
+ Connecting to database specified by database.yml
26
+  (1.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
27
+ Migrating to EasyContactMigration (20130221042833)
28
+  (0.0ms) select sqlite_version(*)
29
+  (0.0ms) begin transaction
30
+  (0.0ms) rollback transaction
31
+ Connecting to database specified by database.yml
32
+  (1.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
33
+ Migrating to EasyContactMigration (20130221042833)
34
+  (0.0ms) select sqlite_version(*)
35
+  (0.0ms) begin transaction
36
+  (0.1ms) rollback transaction
37
+ Connecting to database specified by database.yml
38
+ Connecting to database specified by database.yml
39
+ Connecting to database specified by database.yml
40
+  (1.5ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
41
+ Migrating to CreateUsers (20130221043330)
42
+  (0.0ms) select sqlite_version(*)
43
+  (0.0ms) begin transaction
44
+  (0.5ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
45
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130221043330')
46
+  (55.3ms) commit transaction
47
+ Migrating to EasyContactMigration (20130221043348)
48
+  (0.1ms) begin transaction
49
+  (0.8ms) CREATE TABLE "easy_contact_entries" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "type" varchar(255), "label" varchar(255), "content" text, "addition" varchar(255), "extra" varchar(255), "country" varchar(255), "locale" varchar(255), "primary" boolean, "contactable_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
50
+  (0.2ms) CREATE INDEX "index_easy_contact_entries_on_contactable_id" ON "easy_contact_entries" ("contactable_id")
51
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130221043348')
52
+  (3.4ms) commit transaction
53
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
54
+ Connecting to database specified by database.yml
55
+  (1.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
56
+  (0.2ms) select sqlite_version(*)
57
+  (56.0ms) CREATE TABLE "easy_contact_entries" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "type" varchar(255), "label" varchar(255), "content" text, "addition" varchar(255), "extra" varchar(255), "country" varchar(255), "locale" varchar(255), "primary" boolean, "contactable_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
58
+  (3.5ms) CREATE INDEX "index_easy_contact_entries_on_contactable_id" ON "easy_contact_entries" ("contactable_id")
59
+  (3.4ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
60
+  (3.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
61
+  (4.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
62
+  (0.1ms) SELECT version FROM "schema_migrations"
63
+  (2.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20130221043348')
64
+  (3.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20130221043330')
65
+ Connecting to database specified by database.yml
66
+ Connecting to database specified by database.yml
67
+ Connecting to database specified by database.yml
@@ -0,0 +1,825 @@
1
+ Connecting to database specified by database.yml
2
+  (0.3ms) begin transaction
3
+  (0.1ms) rollback transaction
4
+ Connecting to database specified by database.yml
5
+ Connecting to database specified by database.yml
6
+  (0.4ms) begin transaction
7
+  (0.1ms) rollback transaction
8
+ Connecting to database specified by database.yml
9
+  (0.4ms) begin transaction
10
+  (0.1ms) rollback transaction
11
+ Connecting to database specified by database.yml
12
+  (0.4ms) begin transaction
13
+  (0.1ms) rollback transaction
14
+  (0.1ms) begin transaction
15
+  (0.1ms) rollback transaction
16
+ Connecting to database specified by database.yml
17
+  (0.4ms) begin transaction
18
+  (0.1ms) SAVEPOINT active_record_1
19
+ SQL (84.3ms) INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sat, 23 Feb 2013 01:28:58 UTC +00:00], ["updated_at", Sat, 23 Feb 2013 01:28:58 UTC +00:00]]
20
+ SQL (2.7ms) INSERT INTO "easy_contact_entries" ("addition", "contactable_id", "content", "country", "created_at", "extra", "label", "locale", "primary", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["addition", nil], ["contactable_id", 1], ["content", "first entry"], ["country", nil], ["created_at", Sat, 23 Feb 2013 01:28:58 UTC +00:00], ["extra", nil], ["label", nil], ["locale", nil], ["primary", nil], ["type", nil], ["updated_at", Sat, 23 Feb 2013 01:28:58 UTC +00:00]]
21
+ SQL (0.4ms) INSERT INTO "easy_contact_entries" ("addition", "contactable_id", "content", "country", "created_at", "extra", "label", "locale", "primary", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["addition", nil], ["contactable_id", 1], ["content", "second entry"], ["country", nil], ["created_at", Sat, 23 Feb 2013 01:28:58 UTC +00:00], ["extra", nil], ["label", nil], ["locale", nil], ["primary", nil], ["type", nil], ["updated_at", Sat, 23 Feb 2013 01:28:58 UTC +00:00]]
22
+  (0.1ms) RELEASE SAVEPOINT active_record_1
23
+  (0.1ms) SELECT COUNT(*) FROM "easy_contact_entries" WHERE "easy_contact_entries"."contactable_id" = 1
24
+ EasyContact::Entry Load (0.3ms) SELECT "easy_contact_entries".* FROM "easy_contact_entries" WHERE "easy_contact_entries"."contactable_id" = 1
25
+  (8.1ms) rollback transaction
26
+  (0.2ms) begin transaction
27
+  (0.1ms) rollback transaction
28
+ Connecting to database specified by database.yml
29
+  (0.4ms) begin transaction
30
+  (0.1ms) SAVEPOINT active_record_1
31
+ SQL (24.0ms) INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sat, 23 Feb 2013 02:02:27 UTC +00:00], ["updated_at", Sat, 23 Feb 2013 02:02:27 UTC +00:00]]
32
+ SQL (0.5ms) INSERT INTO "easy_contact_entries" ("addition", "contactable_id", "content", "country", "created_at", "extra", "label", "locale", "primary", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["addition", nil], ["contactable_id", 1], ["content", "first entry"], ["country", nil], ["created_at", Sat, 23 Feb 2013 02:02:27 UTC +00:00], ["extra", nil], ["label", nil], ["locale", nil], ["primary", nil], ["type", nil], ["updated_at", Sat, 23 Feb 2013 02:02:27 UTC +00:00]]
33
+ SQL (0.2ms) INSERT INTO "easy_contact_entries" ("addition", "contactable_id", "content", "country", "created_at", "extra", "label", "locale", "primary", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["addition", nil], ["contactable_id", 1], ["content", "second entry"], ["country", nil], ["created_at", Sat, 23 Feb 2013 02:02:27 UTC +00:00], ["extra", nil], ["label", nil], ["locale", nil], ["primary", nil], ["type", nil], ["updated_at", Sat, 23 Feb 2013 02:02:27 UTC +00:00]]
34
+  (0.0ms) RELEASE SAVEPOINT active_record_1
35
+  (0.1ms) SELECT COUNT(*) FROM "easy_contact_entries" WHERE "easy_contact_entries"."contactable_id" = 1
36
+  (1.1ms) rollback transaction
37
+  (0.1ms) begin transaction
38
+  (0.1ms) rollback transaction
39
+  (0.1ms) begin transaction
40
+  (0.1ms) rollback transaction
41
+ Connecting to database specified by database.yml
42
+  (0.4ms) begin transaction
43
+  (0.1ms) SAVEPOINT active_record_1
44
+ SQL (7.1ms) INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sat, 23 Feb 2013 02:02:51 UTC +00:00], ["updated_at", Sat, 23 Feb 2013 02:02:51 UTC +00:00]]
45
+ SQL (0.4ms) INSERT INTO "easy_contact_entries" ("addition", "contactable_id", "content", "country", "created_at", "extra", "label", "locale", "primary", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["addition", nil], ["contactable_id", 1], ["content", "first entry"], ["country", nil], ["created_at", Sat, 23 Feb 2013 02:02:51 UTC +00:00], ["extra", nil], ["label", nil], ["locale", nil], ["primary", nil], ["type", nil], ["updated_at", Sat, 23 Feb 2013 02:02:51 UTC +00:00]]
46
+ SQL (0.2ms) INSERT INTO "easy_contact_entries" ("addition", "contactable_id", "content", "country", "created_at", "extra", "label", "locale", "primary", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["addition", nil], ["contactable_id", 1], ["content", "second entry"], ["country", nil], ["created_at", Sat, 23 Feb 2013 02:02:51 UTC +00:00], ["extra", nil], ["label", nil], ["locale", nil], ["primary", nil], ["type", nil], ["updated_at", Sat, 23 Feb 2013 02:02:51 UTC +00:00]]
47
+  (0.0ms) RELEASE SAVEPOINT active_record_1
48
+  (0.1ms) SELECT COUNT(*) FROM "easy_contact_entries" WHERE "easy_contact_entries"."contactable_id" = 1
49
+  (2.6ms) rollback transaction
50
+  (0.1ms) begin transaction
51
+  (0.1ms) SAVEPOINT active_record_1
52
+ SQL (0.5ms) INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sat, 23 Feb 2013 02:02:51 UTC +00:00], ["updated_at", Sat, 23 Feb 2013 02:02:51 UTC +00:00]]
53
+ SQL (0.3ms) INSERT INTO "easy_contact_entries" ("addition", "contactable_id", "content", "country", "created_at", "extra", "label", "locale", "primary", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["addition", nil], ["contactable_id", 1], ["content", "first name"], ["country", nil], ["created_at", Sat, 23 Feb 2013 02:02:51 UTC +00:00], ["extra", nil], ["label", nil], ["locale", nil], ["primary", nil], ["type", "EasyContact::Name"], ["updated_at", Sat, 23 Feb 2013 02:02:51 UTC +00:00]]
54
+ SQL (0.2ms) INSERT INTO "easy_contact_entries" ("addition", "contactable_id", "content", "country", "created_at", "extra", "label", "locale", "primary", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["addition", nil], ["contactable_id", 1], ["content", "second name"], ["country", nil], ["created_at", Sat, 23 Feb 2013 02:02:51 UTC +00:00], ["extra", nil], ["label", nil], ["locale", nil], ["primary", nil], ["type", "EasyContact::Name"], ["updated_at", Sat, 23 Feb 2013 02:02:51 UTC +00:00]]
55
+  (0.1ms) RELEASE SAVEPOINT active_record_1
56
+  (0.2ms) SELECT COUNT(*) FROM "easy_contact_entries" WHERE "easy_contact_entries"."type" IN ('EasyContact::Name') AND "easy_contact_entries"."contactable_id" = 1
57
+  (19.9ms) rollback transaction
58
+  (0.1ms) begin transaction
59
+  (0.1ms) rollback transaction
60
+ Connecting to database specified by database.yml
61
+  (0.4ms) begin transaction
62
+  (0.1ms) rollback transaction
63
+  (0.1ms) begin transaction
64
+  (0.1ms) SAVEPOINT active_record_1
65
+ SQL (36.8ms) INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sat, 23 Feb 2013 02:04:05 UTC +00:00], ["updated_at", Sat, 23 Feb 2013 02:04:05 UTC +00:00]]
66
+ SQL (0.4ms) INSERT INTO "easy_contact_entries" ("addition", "contactable_id", "content", "country", "created_at", "extra", "label", "locale", "primary", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["addition", nil], ["contactable_id", 1], ["content", "first name"], ["country", nil], ["created_at", Sat, 23 Feb 2013 02:04:05 UTC +00:00], ["extra", nil], ["label", nil], ["locale", nil], ["primary", nil], ["type", "EasyContact::Name"], ["updated_at", Sat, 23 Feb 2013 02:04:05 UTC +00:00]]
67
+ SQL (0.2ms) INSERT INTO "easy_contact_entries" ("addition", "contactable_id", "content", "country", "created_at", "extra", "label", "locale", "primary", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["addition", nil], ["contactable_id", 1], ["content", "second name"], ["country", nil], ["created_at", Sat, 23 Feb 2013 02:04:05 UTC +00:00], ["extra", nil], ["label", nil], ["locale", nil], ["primary", nil], ["type", "EasyContact::Name"], ["updated_at", Sat, 23 Feb 2013 02:04:05 UTC +00:00]]
68
+  (0.0ms) RELEASE SAVEPOINT active_record_1
69
+  (0.2ms) SELECT COUNT(*) FROM "easy_contact_entries" WHERE "easy_contact_entries"."type" IN ('EasyContact::Name') AND "easy_contact_entries"."contactable_id" = 1
70
+  (0.2ms) SELECT COUNT(*) FROM "easy_contact_entries" WHERE "easy_contact_entries"."contactable_id" = 1
71
+  (2.2ms) rollback transaction
72
+  (0.1ms) begin transaction
73
+  (0.0ms) SAVEPOINT active_record_1
74
+ SQL (0.5ms) INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sat, 23 Feb 2013 02:04:05 UTC +00:00], ["updated_at", Sat, 23 Feb 2013 02:04:05 UTC +00:00]]
75
+ SQL (0.3ms) INSERT INTO "easy_contact_entries" ("addition", "contactable_id", "content", "country", "created_at", "extra", "label", "locale", "primary", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["addition", nil], ["contactable_id", 1], ["content", "first entry"], ["country", nil], ["created_at", Sat, 23 Feb 2013 02:04:05 UTC +00:00], ["extra", nil], ["label", nil], ["locale", nil], ["primary", nil], ["type", nil], ["updated_at", Sat, 23 Feb 2013 02:04:05 UTC +00:00]]
76
+ SQL (0.2ms) INSERT INTO "easy_contact_entries" ("addition", "contactable_id", "content", "country", "created_at", "extra", "label", "locale", "primary", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["addition", nil], ["contactable_id", 1], ["content", "second entry"], ["country", nil], ["created_at", Sat, 23 Feb 2013 02:04:05 UTC +00:00], ["extra", nil], ["label", nil], ["locale", nil], ["primary", nil], ["type", nil], ["updated_at", Sat, 23 Feb 2013 02:04:05 UTC +00:00]]
77
+  (0.1ms) RELEASE SAVEPOINT active_record_1
78
+  (0.1ms) SELECT COUNT(*) FROM "easy_contact_entries" WHERE "easy_contact_entries"."contactable_id" = 1
79
+  (35.1ms) rollback transaction
80
+ Connecting to database specified by database.yml
81
+  (0.4ms) begin transaction
82
+  (0.1ms) rollback transaction
83
+  (0.1ms) begin transaction
84
+  (0.0ms) rollback transaction
85
+  (0.0ms) begin transaction
86
+  (0.0ms) rollback transaction
87
+  (0.1ms) begin transaction
88
+  (0.1ms) rollback transaction
89
+ Connecting to database specified by database.yml
90
+  (0.4ms) begin transaction
91
+  (0.1ms) rollback transaction
92
+  (0.1ms) begin transaction
93
+  (0.1ms) rollback transaction
94
+  (0.1ms) begin transaction
95
+  (0.1ms) rollback transaction
96
+  (0.1ms) begin transaction
97
+  (0.0ms) rollback transaction
98
+ Connecting to database specified by database.yml
99
+  (0.4ms) begin transaction
100
+  (0.1ms) SAVEPOINT active_record_1
101
+ SQL (123.9ms) INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sat, 23 Feb 2013 03:11:30 UTC +00:00], ["updated_at", Sat, 23 Feb 2013 03:11:30 UTC +00:00]]
102
+ SQL (2.4ms) INSERT INTO "easy_contact_entries" ("addition", "contactable_id", "content", "country", "created_at", "extra", "label", "locale", "primary", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["addition", nil], ["contactable_id", 1], ["content", "first entry"], ["country", nil], ["created_at", Sat, 23 Feb 2013 03:11:30 UTC +00:00], ["extra", nil], ["label", nil], ["locale", nil], ["primary", nil], ["type", nil], ["updated_at", Sat, 23 Feb 2013 03:11:30 UTC +00:00]]
103
+ SQL (0.3ms) INSERT INTO "easy_contact_entries" ("addition", "contactable_id", "content", "country", "created_at", "extra", "label", "locale", "primary", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["addition", nil], ["contactable_id", 1], ["content", "second entry"], ["country", nil], ["created_at", Sat, 23 Feb 2013 03:11:30 UTC +00:00], ["extra", nil], ["label", nil], ["locale", nil], ["primary", nil], ["type", nil], ["updated_at", Sat, 23 Feb 2013 03:11:30 UTC +00:00]]
104
+  (0.1ms) RELEASE SAVEPOINT active_record_1
105
+  (0.1ms) SELECT COUNT(*) FROM "easy_contact_entries" WHERE "easy_contact_entries"."contactable_id" = 1
106
+  (1.3ms) rollback transaction
107
+  (0.1ms) begin transaction
108
+  (0.1ms) SAVEPOINT active_record_1
109
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sat, 23 Feb 2013 03:11:30 UTC +00:00], ["updated_at", Sat, 23 Feb 2013 03:11:30 UTC +00:00]]
110
+ SQL (0.4ms) INSERT INTO "easy_contact_entries" ("addition", "contactable_id", "content", "country", "created_at", "extra", "label", "locale", "primary", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["addition", nil], ["contactable_id", 1], ["content", "first name"], ["country", nil], ["created_at", Sat, 23 Feb 2013 03:11:31 UTC +00:00], ["extra", nil], ["label", nil], ["locale", nil], ["primary", nil], ["type", "EasyContact::Name"], ["updated_at", Sat, 23 Feb 2013 03:11:31 UTC +00:00]]
111
+ SQL (0.2ms) INSERT INTO "easy_contact_entries" ("addition", "contactable_id", "content", "country", "created_at", "extra", "label", "locale", "primary", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["addition", nil], ["contactable_id", 1], ["content", "second name"], ["country", nil], ["created_at", Sat, 23 Feb 2013 03:11:31 UTC +00:00], ["extra", nil], ["label", nil], ["locale", nil], ["primary", nil], ["type", "EasyContact::Name"], ["updated_at", Sat, 23 Feb 2013 03:11:31 UTC +00:00]]
112
+  (0.1ms) RELEASE SAVEPOINT active_record_1
113
+  (0.2ms) SELECT COUNT(*) FROM "easy_contact_entries" WHERE "easy_contact_entries"."type" IN ('EasyContact::Name') AND "easy_contact_entries"."contactable_id" = 1
114
+  (0.1ms) SELECT COUNT(*) FROM "easy_contact_entries" WHERE "easy_contact_entries"."contactable_id" = 1
115
+  (0.9ms) rollback transaction
116
+  (0.1ms) begin transaction
117
+  (0.0ms) SAVEPOINT active_record_1
118
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sat, 23 Feb 2013 03:11:31 UTC +00:00], ["updated_at", Sat, 23 Feb 2013 03:11:31 UTC +00:00]]
119
+ SQL (0.3ms) INSERT INTO "easy_contact_entries" ("addition", "contactable_id", "content", "country", "created_at", "extra", "label", "locale", "primary", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["addition", nil], ["contactable_id", 1], ["content", "second name"], ["country", nil], ["created_at", Sat, 23 Feb 2013 03:11:31 UTC +00:00], ["extra", nil], ["label", nil], ["locale", nil], ["primary", nil], ["type", "EasyContact::Name"], ["updated_at", Sat, 23 Feb 2013 03:11:31 UTC +00:00]]
120
+  (0.0ms) RELEASE SAVEPOINT active_record_1
121
+  (0.2ms) SELECT COUNT(*) FROM "easy_contact_entries" WHERE "easy_contact_entries"."type" IN ('EasyContact::Name') AND "easy_contact_entries"."contactable_id" = 1
122
+  (0.9ms) rollback transaction
123
+  (0.1ms) begin transaction
124
+  (0.1ms) rollback transaction
125
+  (0.6ms) begin transaction
126
+ ---------------------------
127
+ EasyContactTest: test_truth
128
+ ---------------------------
129
+  (0.2ms) rollback transaction
130
+  (0.3ms) begin transaction
131
+ ---------------------------
132
+ EasyContactTest: test_works
133
+ ---------------------------
134
+  (0.1ms) rollback transaction
135
+  (0.3ms) begin transaction
136
+ ---------------------------
137
+ EasyContactTest: test_truth
138
+ ---------------------------
139
+  (0.1ms) rollback transaction
140
+  (0.3ms) begin transaction
141
+ ---------------------------
142
+ EasyContactTest: test_truth
143
+ ---------------------------
144
+  (0.1ms) rollback transaction
145
+  (0.1ms) begin transaction
146
+ ---------------------------
147
+ EasyContactTest: test_works
148
+ ---------------------------
149
+  (0.0ms) rollback transaction
150
+  (0.3ms) begin transaction
151
+ -------------------------------------------------------------
152
+ EasyContact::Entry::Basic: test_0001_create nested attributes
153
+ -------------------------------------------------------------
154
+  (0.1ms) rollback transaction
155
+  (0.1ms) begin transaction
156
+ --------------------------------------------------------
157
+ EasyContact::Entry::Basic: test_0002_create nested names
158
+ --------------------------------------------------------
159
+  (0.2ms) SAVEPOINT active_record_1
160
+ SQL (71.9ms) INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Mon, 15 Jul 2013 07:25:40 UTC +00:00], ["updated_at", Mon, 15 Jul 2013 07:25:40 UTC +00:00]]
161
+ SQL (2.4ms) INSERT INTO "easy_contact_entries" ("contactable_id", "content", "created_at", "type", "updated_at") VALUES (?, ?, ?, ?, ?) [["contactable_id", 1], ["content", "first name"], ["created_at", Mon, 15 Jul 2013 07:25:40 UTC +00:00], ["type", "EasyContact::Name"], ["updated_at", Mon, 15 Jul 2013 07:25:40 UTC +00:00]]
162
+ SQL (0.3ms) INSERT INTO "easy_contact_entries" ("contactable_id", "content", "created_at", "type", "updated_at") VALUES (?, ?, ?, ?, ?) [["contactable_id", 1], ["content", "second name"], ["created_at", Mon, 15 Jul 2013 07:25:40 UTC +00:00], ["type", "EasyContact::Name"], ["updated_at", Mon, 15 Jul 2013 07:25:40 UTC +00:00]]
163
+  (0.1ms) RELEASE SAVEPOINT active_record_1
164
+  (0.3ms) SELECT COUNT(*) FROM "easy_contact_entries" WHERE "easy_contact_entries"."type" IN ('EasyContact::Name') AND "easy_contact_entries"."contactable_id" = ? [["contactable_id", 1]]
165
+  (24.6ms) rollback transaction
166
+  (0.1ms) begin transaction
167
+ -------------------------------------------------------
168
+ EasyContact::Entry::Basic: test_0003_reject blank field
169
+ -------------------------------------------------------
170
+  (0.1ms) SAVEPOINT active_record_1
171
+ SQL (0.6ms) INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Mon, 15 Jul 2013 07:25:40 UTC +00:00], ["updated_at", Mon, 15 Jul 2013 07:25:40 UTC +00:00]]
172
+ SQL (0.3ms) INSERT INTO "easy_contact_entries" ("contactable_id", "content", "created_at", "type", "updated_at") VALUES (?, ?, ?, ?, ?) [["contactable_id", 1], ["content", "second name"], ["created_at", Mon, 15 Jul 2013 07:25:40 UTC +00:00], ["type", "EasyContact::Name"], ["updated_at", Mon, 15 Jul 2013 07:25:40 UTC +00:00]]
173
+  (0.1ms) RELEASE SAVEPOINT active_record_1
174
+  (0.1ms) SELECT COUNT(*) FROM "easy_contact_entries" WHERE "easy_contact_entries"."type" IN ('EasyContact::Name') AND "easy_contact_entries"."contactable_id" = ? [["contactable_id", 1]]
175
+  (1.0ms) rollback transaction
176
+  (0.1ms) begin transaction
177
+ ---------------------------
178
+ EasyContactTest: test_truth
179
+ ---------------------------
180
+  (0.1ms) rollback transaction
181
+  (0.0ms) begin transaction
182
+ ---------------------------
183
+ EasyContactTest: test_works
184
+ ---------------------------
185
+  (0.0ms) rollback transaction
186
+  (0.3ms) begin transaction
187
+ -------------------------------------------------------------
188
+ EasyContact::Entry::Basic: test_0001_create nested attributes
189
+ -------------------------------------------------------------
190
+  (0.1ms) SAVEPOINT active_record_1
191
+ SQL (3.4ms) INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Mon, 15 Jul 2013 07:33:35 UTC +00:00], ["updated_at", Mon, 15 Jul 2013 07:33:35 UTC +00:00]]
192
+ SQL (0.3ms) INSERT INTO "easy_contact_entries" ("contactable_id", "content", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["contactable_id", 1], ["content", "first entry"], ["created_at", Mon, 15 Jul 2013 07:33:35 UTC +00:00], ["updated_at", Mon, 15 Jul 2013 07:33:35 UTC +00:00]]
193
+ SQL (0.1ms) INSERT INTO "easy_contact_entries" ("contactable_id", "content", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["contactable_id", 1], ["content", "second entry"], ["created_at", Mon, 15 Jul 2013 07:33:35 UTC +00:00], ["updated_at", Mon, 15 Jul 2013 07:33:35 UTC +00:00]]
194
+  (0.1ms) RELEASE SAVEPOINT active_record_1
195
+  (0.1ms) SELECT COUNT(*) FROM "easy_contact_entries" WHERE "easy_contact_entries"."contactable_id" = ? [["contactable_id", 1]]
196
+  (2.7ms) rollback transaction
197
+  (0.1ms) begin transaction
198
+ --------------------------------------------------------
199
+ EasyContact::Entry::Basic: test_0002_create nested names
200
+ --------------------------------------------------------
201
+  (0.1ms) SAVEPOINT active_record_1
202
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Mon, 15 Jul 2013 07:33:35 UTC +00:00], ["updated_at", Mon, 15 Jul 2013 07:33:35 UTC +00:00]]
203
+ SQL (0.3ms) INSERT INTO "easy_contact_entries" ("contactable_id", "content", "created_at", "type", "updated_at") VALUES (?, ?, ?, ?, ?) [["contactable_id", 1], ["content", "first name"], ["created_at", Mon, 15 Jul 2013 07:33:35 UTC +00:00], ["type", "EasyContact::Name"], ["updated_at", Mon, 15 Jul 2013 07:33:35 UTC +00:00]]
204
+ SQL (0.1ms) INSERT INTO "easy_contact_entries" ("contactable_id", "content", "created_at", "type", "updated_at") VALUES (?, ?, ?, ?, ?) [["contactable_id", 1], ["content", "second name"], ["created_at", Mon, 15 Jul 2013 07:33:35 UTC +00:00], ["type", "EasyContact::Name"], ["updated_at", Mon, 15 Jul 2013 07:33:35 UTC +00:00]]
205
+  (0.1ms) RELEASE SAVEPOINT active_record_1
206
+  (0.2ms) SELECT COUNT(*) FROM "easy_contact_entries" WHERE "easy_contact_entries"."type" IN ('EasyContact::Name') AND "easy_contact_entries"."contactable_id" = ? [["contactable_id", 1]]
207
+  (10.1ms) rollback transaction
208
+  (0.1ms) begin transaction
209
+ -------------------------------------------------------
210
+ EasyContact::Entry::Basic: test_0003_reject blank field
211
+ -------------------------------------------------------
212
+  (0.1ms) SAVEPOINT active_record_1
213
+ SQL (0.6ms) INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Mon, 15 Jul 2013 07:33:35 UTC +00:00], ["updated_at", Mon, 15 Jul 2013 07:33:35 UTC +00:00]]
214
+ SQL (0.3ms) INSERT INTO "easy_contact_entries" ("contactable_id", "content", "created_at", "type", "updated_at") VALUES (?, ?, ?, ?, ?) [["contactable_id", 1], ["content", "second name"], ["created_at", Mon, 15 Jul 2013 07:33:35 UTC +00:00], ["type", "EasyContact::Name"], ["updated_at", Mon, 15 Jul 2013 07:33:35 UTC +00:00]]
215
+  (0.1ms) RELEASE SAVEPOINT active_record_1
216
+  (0.2ms) SELECT COUNT(*) FROM "easy_contact_entries" WHERE "easy_contact_entries"."type" IN ('EasyContact::Name') AND "easy_contact_entries"."contactable_id" = ? [["contactable_id", 1]]
217
+  (1.0ms) rollback transaction
218
+  (0.1ms) begin transaction
219
+ ---------------------------
220
+ EasyContactTest: test_truth
221
+ ---------------------------
222
+  (0.1ms) rollback transaction
223
+  (0.0ms) begin transaction
224
+ ---------------------------
225
+ EasyContactTest: test_works
226
+ ---------------------------
227
+  (0.0ms) rollback transaction
228
+  (0.3ms) begin transaction
229
+ -------------------------------------------------------------
230
+ EasyContact::Entry::Basic: test_0001_create nested attributes
231
+ -------------------------------------------------------------
232
+  (0.1ms) SAVEPOINT active_record_1
233
+ SQL (2.4ms) INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Mon, 15 Jul 2013 07:35:00 UTC +00:00], ["updated_at", Mon, 15 Jul 2013 07:35:00 UTC +00:00]]
234
+ SQL (0.3ms) INSERT INTO "easy_contact_entries" ("contactable_id", "content", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["contactable_id", 1], ["content", "first entry"], ["created_at", Mon, 15 Jul 2013 07:35:00 UTC +00:00], ["updated_at", Mon, 15 Jul 2013 07:35:00 UTC +00:00]]
235
+ SQL (0.1ms) INSERT INTO "easy_contact_entries" ("contactable_id", "content", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["contactable_id", 1], ["content", "second entry"], ["created_at", Mon, 15 Jul 2013 07:35:00 UTC +00:00], ["updated_at", Mon, 15 Jul 2013 07:35:00 UTC +00:00]]
236
+  (0.1ms) RELEASE SAVEPOINT active_record_1
237
+  (0.1ms) SELECT COUNT(*) FROM "easy_contact_entries" WHERE "easy_contact_entries"."contactable_id" = ? [["contactable_id", 1]]
238
+  (1.3ms) rollback transaction
239
+  (0.1ms) begin transaction
240
+ --------------------------------------------------------
241
+ EasyContact::Entry::Basic: test_0002_create nested names
242
+ --------------------------------------------------------
243
+  (0.1ms) SAVEPOINT active_record_1
244
+ SQL (0.5ms) INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Mon, 15 Jul 2013 07:35:00 UTC +00:00], ["updated_at", Mon, 15 Jul 2013 07:35:00 UTC +00:00]]
245
+ SQL (0.4ms) INSERT INTO "easy_contact_entries" ("contactable_id", "content", "created_at", "type", "updated_at") VALUES (?, ?, ?, ?, ?) [["contactable_id", 1], ["content", "first name"], ["created_at", Mon, 15 Jul 2013 07:35:00 UTC +00:00], ["type", "EasyContact::Name"], ["updated_at", Mon, 15 Jul 2013 07:35:00 UTC +00:00]]
246
+ SQL (0.3ms) INSERT INTO "easy_contact_entries" ("contactable_id", "content", "created_at", "type", "updated_at") VALUES (?, ?, ?, ?, ?) [["contactable_id", 1], ["content", "second name"], ["created_at", Mon, 15 Jul 2013 07:35:00 UTC +00:00], ["type", "EasyContact::Name"], ["updated_at", Mon, 15 Jul 2013 07:35:00 UTC +00:00]]
247
+  (0.1ms) RELEASE SAVEPOINT active_record_1
248
+  (0.2ms) SELECT COUNT(*) FROM "easy_contact_entries" WHERE "easy_contact_entries"."type" IN ('EasyContact::Name') AND "easy_contact_entries"."contactable_id" = ? [["contactable_id", 1]]
249
+  (3.7ms) rollback transaction
250
+  (0.1ms) begin transaction
251
+ -------------------------------------------------------
252
+ EasyContact::Entry::Basic: test_0003_reject blank field
253
+ -------------------------------------------------------
254
+  (0.1ms) SAVEPOINT active_record_1
255
+ SQL (0.7ms) INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Mon, 15 Jul 2013 07:35:00 UTC +00:00], ["updated_at", Mon, 15 Jul 2013 07:35:00 UTC +00:00]]
256
+ SQL (0.4ms) INSERT INTO "easy_contact_entries" ("contactable_id", "content", "created_at", "type", "updated_at") VALUES (?, ?, ?, ?, ?) [["contactable_id", 1], ["content", "second name"], ["created_at", Mon, 15 Jul 2013 07:35:00 UTC +00:00], ["type", "EasyContact::Name"], ["updated_at", Mon, 15 Jul 2013 07:35:00 UTC +00:00]]
257
+  (0.1ms) RELEASE SAVEPOINT active_record_1
258
+  (0.2ms) SELECT COUNT(*) FROM "easy_contact_entries" WHERE "easy_contact_entries"."type" IN ('EasyContact::Name') AND "easy_contact_entries"."contactable_id" = ? [["contactable_id", 1]]
259
+  (3.0ms) rollback transaction
260
+  (0.1ms) begin transaction
261
+ ---------------------------
262
+ EasyContactTest: test_truth
263
+ ---------------------------
264
+  (0.1ms) rollback transaction
265
+  (0.1ms) begin transaction
266
+ ---------------------------
267
+ EasyContactTest: test_works
268
+ ---------------------------
269
+  (0.0ms) rollback transaction
270
+  (0.3ms) begin transaction
271
+ -------------------------------------------------------------
272
+ EasyContact::Entry::Basic: test_0001_create nested attributes
273
+ -------------------------------------------------------------
274
+  (0.1ms) SAVEPOINT active_record_1
275
+ SQL (2.4ms) INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Mon, 15 Jul 2013 07:36:03 UTC +00:00], ["updated_at", Mon, 15 Jul 2013 07:36:03 UTC +00:00]]
276
+ SQL (0.3ms) INSERT INTO "easy_contact_entries" ("contactable_id", "content", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["contactable_id", 1], ["content", "first entry"], ["created_at", Mon, 15 Jul 2013 07:36:03 UTC +00:00], ["updated_at", Mon, 15 Jul 2013 07:36:03 UTC +00:00]]
277
+ SQL (0.1ms) INSERT INTO "easy_contact_entries" ("contactable_id", "content", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["contactable_id", 1], ["content", "second entry"], ["created_at", Mon, 15 Jul 2013 07:36:03 UTC +00:00], ["updated_at", Mon, 15 Jul 2013 07:36:03 UTC +00:00]]
278
+  (0.1ms) RELEASE SAVEPOINT active_record_1
279
+  (2.2ms) rollback transaction
280
+  (0.1ms) begin transaction
281
+ ---------------------------
282
+ EasyContactTest: test_truth
283
+ ---------------------------
284
+  (0.1ms) rollback transaction
285
+  (0.0ms) begin transaction
286
+ ---------------------------
287
+ EasyContactTest: test_works
288
+ ---------------------------
289
+  (0.0ms) rollback transaction
290
+  (0.3ms) begin transaction
291
+ -------------------------------------------------------------
292
+ EasyContact::Entry::Basic: test_0001_create nested attributes
293
+ -------------------------------------------------------------
294
+  (0.1ms) SAVEPOINT active_record_1
295
+ SQL (3.7ms) INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Mon, 15 Jul 2013 07:36:18 UTC +00:00], ["updated_at", Mon, 15 Jul 2013 07:36:18 UTC +00:00]]
296
+ SQL (0.4ms) INSERT INTO "easy_contact_entries" ("contactable_id", "content", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["contactable_id", 1], ["content", "first entry"], ["created_at", Mon, 15 Jul 2013 07:36:18 UTC +00:00], ["updated_at", Mon, 15 Jul 2013 07:36:18 UTC +00:00]]
297
+ SQL (0.2ms) INSERT INTO "easy_contact_entries" ("contactable_id", "content", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["contactable_id", 1], ["content", "second entry"], ["created_at", Mon, 15 Jul 2013 07:36:18 UTC +00:00], ["updated_at", Mon, 15 Jul 2013 07:36:18 UTC +00:00]]
298
+  (0.1ms) RELEASE SAVEPOINT active_record_1
299
+  (0.1ms) SELECT COUNT(*) FROM "easy_contact_entries" WHERE "easy_contact_entries"."contactable_id" = ? [["contactable_id", 1]]
300
+  (2.4ms) rollback transaction
301
+  (0.1ms) begin transaction
302
+ ---------------------------
303
+ EasyContactTest: test_truth
304
+ ---------------------------
305
+  (0.0ms) rollback transaction
306
+  (0.0ms) begin transaction
307
+ ---------------------------
308
+ EasyContactTest: test_works
309
+ ---------------------------
310
+  (0.0ms) rollback transaction
311
+  (0.3ms) begin transaction
312
+ -------------------------------------------------------------
313
+ EasyContact::Entry::Basic: test_0001_create nested attributes
314
+ -------------------------------------------------------------
315
+  (0.1ms) SAVEPOINT active_record_1
316
+ SQL (2.5ms) INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Mon, 15 Jul 2013 07:36:35 UTC +00:00], ["updated_at", Mon, 15 Jul 2013 07:36:35 UTC +00:00]]
317
+ SQL (0.3ms) INSERT INTO "easy_contact_entries" ("contactable_id", "content", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["contactable_id", 1], ["content", "first entry"], ["created_at", Mon, 15 Jul 2013 07:36:35 UTC +00:00], ["updated_at", Mon, 15 Jul 2013 07:36:35 UTC +00:00]]
318
+ SQL (0.2ms) INSERT INTO "easy_contact_entries" ("contactable_id", "content", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["contactable_id", 1], ["content", "second entry"], ["created_at", Mon, 15 Jul 2013 07:36:35 UTC +00:00], ["updated_at", Mon, 15 Jul 2013 07:36:35 UTC +00:00]]
319
+  (0.1ms) RELEASE SAVEPOINT active_record_1
320
+  (0.1ms) SELECT COUNT(*) FROM "easy_contact_entries" WHERE "easy_contact_entries"."contactable_id" = ? [["contactable_id", 1]]
321
+  (2.9ms) rollback transaction
322
+  (0.1ms) begin transaction
323
+ ---------------------------
324
+ EasyContactTest: test_truth
325
+ ---------------------------
326
+  (0.1ms) rollback transaction
327
+  (0.1ms) begin transaction
328
+ ---------------------------
329
+ EasyContactTest: test_works
330
+ ---------------------------
331
+  (0.0ms) rollback transaction
332
+  (0.3ms) begin transaction
333
+ -------------------------------------------------------------
334
+ EasyContact::Entry::Basic: test_0001_create nested attributes
335
+ -------------------------------------------------------------
336
+  (0.1ms) SAVEPOINT active_record_1
337
+ SQL (2.3ms) INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Mon, 15 Jul 2013 07:37:17 UTC +00:00], ["updated_at", Mon, 15 Jul 2013 07:37:17 UTC +00:00]]
338
+ SQL (0.3ms) INSERT INTO "easy_contact_entries" ("contactable_id", "content", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["contactable_id", 1], ["content", "first entry"], ["created_at", Mon, 15 Jul 2013 07:37:17 UTC +00:00], ["updated_at", Mon, 15 Jul 2013 07:37:17 UTC +00:00]]
339
+ SQL (0.1ms) INSERT INTO "easy_contact_entries" ("contactable_id", "content", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["contactable_id", 1], ["content", "second entry"], ["created_at", Mon, 15 Jul 2013 07:37:17 UTC +00:00], ["updated_at", Mon, 15 Jul 2013 07:37:17 UTC +00:00]]
340
+  (0.1ms) RELEASE SAVEPOINT active_record_1
341
+  (0.1ms) SELECT COUNT(*) FROM "easy_contact_entries" WHERE "easy_contact_entries"."contactable_id" = ? [["contactable_id", 1]]
342
+  (2.6ms) rollback transaction
343
+  (0.2ms) begin transaction
344
+ ---------------------------
345
+ EasyContactTest: test_truth
346
+ ---------------------------
347
+  (0.1ms) rollback transaction
348
+  (0.1ms) begin transaction
349
+ ---------------------------
350
+ EasyContactTest: test_works
351
+ ---------------------------
352
+  (0.1ms) rollback transaction
353
+  (0.3ms) begin transaction
354
+ -------------------------------------------------------------
355
+ EasyContact::Entry::Basic: test_0001_create nested attributes
356
+ -------------------------------------------------------------
357
+  (0.1ms) SAVEPOINT active_record_1
358
+ SQL (2.4ms) INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Mon, 15 Jul 2013 07:37:33 UTC +00:00], ["updated_at", Mon, 15 Jul 2013 07:37:33 UTC +00:00]]
359
+ SQL (0.3ms) INSERT INTO "easy_contact_entries" ("contactable_id", "content", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["contactable_id", 1], ["content", "first entry"], ["created_at", Mon, 15 Jul 2013 07:37:33 UTC +00:00], ["updated_at", Mon, 15 Jul 2013 07:37:33 UTC +00:00]]
360
+ SQL (0.2ms) INSERT INTO "easy_contact_entries" ("contactable_id", "content", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["contactable_id", 1], ["content", "second entry"], ["created_at", Mon, 15 Jul 2013 07:37:33 UTC +00:00], ["updated_at", Mon, 15 Jul 2013 07:37:33 UTC +00:00]]
361
+  (0.1ms) RELEASE SAVEPOINT active_record_1
362
+  (0.1ms) SELECT COUNT(*) FROM "easy_contact_entries" WHERE "easy_contact_entries"."contactable_id" = ? [["contactable_id", 1]]
363
+  (2.5ms) rollback transaction
364
+  (0.1ms) begin transaction
365
+ --------------------------------------------------------
366
+ EasyContact::Entry::Basic: test_0002_create nested names
367
+ --------------------------------------------------------
368
+  (0.1ms) SAVEPOINT active_record_1
369
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Mon, 15 Jul 2013 07:37:33 UTC +00:00], ["updated_at", Mon, 15 Jul 2013 07:37:33 UTC +00:00]]
370
+ SQL (0.3ms) INSERT INTO "easy_contact_entries" ("contactable_id", "content", "created_at", "type", "updated_at") VALUES (?, ?, ?, ?, ?) [["contactable_id", 1], ["content", "first name"], ["created_at", Mon, 15 Jul 2013 07:37:33 UTC +00:00], ["type", "EasyContact::Name"], ["updated_at", Mon, 15 Jul 2013 07:37:33 UTC +00:00]]
371
+ SQL (0.2ms) INSERT INTO "easy_contact_entries" ("contactable_id", "content", "created_at", "type", "updated_at") VALUES (?, ?, ?, ?, ?) [["contactable_id", 1], ["content", "second name"], ["created_at", Mon, 15 Jul 2013 07:37:33 UTC +00:00], ["type", "EasyContact::Name"], ["updated_at", Mon, 15 Jul 2013 07:37:33 UTC +00:00]]
372
+  (0.1ms) RELEASE SAVEPOINT active_record_1
373
+  (0.2ms) SELECT COUNT(*) FROM "easy_contact_entries" WHERE "easy_contact_entries"."type" IN ('EasyContact::Name') AND "easy_contact_entries"."contactable_id" = ? [["contactable_id", 1]]
374
+  (0.0ms) SELECT COUNT(*) FROM "easy_contact_entries" WHERE "easy_contact_entries"."contactable_id" = ? [["contactable_id", 1]]
375
+  (20.3ms) rollback transaction
376
+  (0.1ms) begin transaction
377
+ -------------------------------------------------------
378
+ EasyContact::Entry::Basic: test_0003_reject blank field
379
+ -------------------------------------------------------
380
+  (0.1ms) SAVEPOINT active_record_1
381
+ SQL (0.6ms) INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Mon, 15 Jul 2013 07:37:33 UTC +00:00], ["updated_at", Mon, 15 Jul 2013 07:37:33 UTC +00:00]]
382
+ SQL (0.3ms) INSERT INTO "easy_contact_entries" ("contactable_id", "content", "created_at", "type", "updated_at") VALUES (?, ?, ?, ?, ?) [["contactable_id", 1], ["content", "second name"], ["created_at", Mon, 15 Jul 2013 07:37:33 UTC +00:00], ["type", "EasyContact::Name"], ["updated_at", Mon, 15 Jul 2013 07:37:33 UTC +00:00]]
383
+  (0.1ms) RELEASE SAVEPOINT active_record_1
384
+  (0.1ms) SELECT COUNT(*) FROM "easy_contact_entries" WHERE "easy_contact_entries"."type" IN ('EasyContact::Name') AND "easy_contact_entries"."contactable_id" = ? [["contactable_id", 1]]
385
+  (1.3ms) rollback transaction
386
+  (0.1ms) begin transaction
387
+ ---------------------------
388
+ EasyContactTest: test_truth
389
+ ---------------------------
390
+  (0.1ms) rollback transaction
391
+  (0.1ms) begin transaction
392
+ ---------------------------
393
+ EasyContactTest: test_works
394
+ ---------------------------
395
+  (0.1ms) rollback transaction
396
+  (0.4ms) begin transaction
397
+ -------------------------------------------------------------
398
+ EasyContact::Entry::Basic: test_0001_create nested attributes
399
+ -------------------------------------------------------------
400
+  (0.1ms) SAVEPOINT active_record_1
401
+ SQL (2.9ms) INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Mon, 15 Jul 2013 07:38:16 UTC +00:00], ["updated_at", Mon, 15 Jul 2013 07:38:16 UTC +00:00]]
402
+ SQL (0.3ms) INSERT INTO "easy_contact_entries" ("contactable_id", "content", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["contactable_id", 1], ["content", "first entry"], ["created_at", Mon, 15 Jul 2013 07:38:16 UTC +00:00], ["updated_at", Mon, 15 Jul 2013 07:38:16 UTC +00:00]]
403
+ SQL (0.1ms) INSERT INTO "easy_contact_entries" ("contactable_id", "content", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["contactable_id", 1], ["content", "second entry"], ["created_at", Mon, 15 Jul 2013 07:38:16 UTC +00:00], ["updated_at", Mon, 15 Jul 2013 07:38:16 UTC +00:00]]
404
+  (0.1ms) RELEASE SAVEPOINT active_record_1
405
+  (0.1ms) SELECT COUNT(*) FROM "easy_contact_entries" WHERE "easy_contact_entries"."contactable_id" = ? [["contactable_id", 1]]
406
+  (1.0ms) rollback transaction
407
+  (0.1ms) begin transaction
408
+ --------------------------------------------------------
409
+ EasyContact::Entry::Basic: test_0002_create nested names
410
+ --------------------------------------------------------
411
+  (0.1ms) SAVEPOINT active_record_1
412
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Mon, 15 Jul 2013 07:38:16 UTC +00:00], ["updated_at", Mon, 15 Jul 2013 07:38:16 UTC +00:00]]
413
+ SQL (0.3ms) INSERT INTO "easy_contact_entries" ("contactable_id", "content", "created_at", "type", "updated_at") VALUES (?, ?, ?, ?, ?) [["contactable_id", 1], ["content", "first name"], ["created_at", Mon, 15 Jul 2013 07:38:16 UTC +00:00], ["type", "EasyContact::Name"], ["updated_at", Mon, 15 Jul 2013 07:38:16 UTC +00:00]]
414
+ SQL (0.2ms) INSERT INTO "easy_contact_entries" ("contactable_id", "content", "created_at", "type", "updated_at") VALUES (?, ?, ?, ?, ?) [["contactable_id", 1], ["content", "second name"], ["created_at", Mon, 15 Jul 2013 07:38:16 UTC +00:00], ["type", "EasyContact::Name"], ["updated_at", Mon, 15 Jul 2013 07:38:16 UTC +00:00]]
415
+  (0.1ms) RELEASE SAVEPOINT active_record_1
416
+  (0.3ms) SELECT COUNT(*) FROM "easy_contact_entries" WHERE "easy_contact_entries"."type" IN ('EasyContact::Name') AND "easy_contact_entries"."contactable_id" = ? [["contactable_id", 1]]
417
+  (0.1ms) SELECT COUNT(*) FROM "easy_contact_entries" WHERE "easy_contact_entries"."contactable_id" = ? [["contactable_id", 1]]
418
+  (0.9ms) rollback transaction
419
+  (0.1ms) begin transaction
420
+ -------------------------------------------------------
421
+ EasyContact::Entry::Basic: test_0003_reject blank field
422
+ -------------------------------------------------------
423
+  (0.1ms) SAVEPOINT active_record_1
424
+ SQL (0.5ms) INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Mon, 15 Jul 2013 07:38:16 UTC +00:00], ["updated_at", Mon, 15 Jul 2013 07:38:16 UTC +00:00]]
425
+ SQL (0.2ms) INSERT INTO "easy_contact_entries" ("contactable_id", "content", "created_at", "type", "updated_at") VALUES (?, ?, ?, ?, ?) [["contactable_id", 1], ["content", "second name"], ["created_at", Mon, 15 Jul 2013 07:38:16 UTC +00:00], ["type", "EasyContact::Name"], ["updated_at", Mon, 15 Jul 2013 07:38:16 UTC +00:00]]
426
+  (0.0ms) RELEASE SAVEPOINT active_record_1
427
+  (0.1ms) SELECT COUNT(*) FROM "easy_contact_entries" WHERE "easy_contact_entries"."type" IN ('EasyContact::Name') AND "easy_contact_entries"."contactable_id" = ? [["contactable_id", 1]]
428
+  (0.9ms) rollback transaction
429
+  (0.1ms) begin transaction
430
+ ---------------------------
431
+ EasyContactTest: test_truth
432
+ ---------------------------
433
+  (0.1ms) rollback transaction
434
+  (0.1ms) begin transaction
435
+ ---------------------------
436
+ EasyContactTest: test_works
437
+ ---------------------------
438
+  (0.0ms) rollback transaction
439
+  (0.3ms) begin transaction
440
+ -------------------------------------------------------------
441
+ EasyContact::Entry::Basic: test_0001_create nested attributes
442
+ -------------------------------------------------------------
443
+  (0.1ms) SAVEPOINT active_record_1
444
+ SQL (2.6ms) INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Mon, 15 Jul 2013 07:39:10 UTC +00:00], ["updated_at", Mon, 15 Jul 2013 07:39:10 UTC +00:00]]
445
+ SQL (0.3ms) INSERT INTO "easy_contact_entries" ("contactable_id", "content", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["contactable_id", 1], ["content", "first entry"], ["created_at", Mon, 15 Jul 2013 07:39:10 UTC +00:00], ["updated_at", Mon, 15 Jul 2013 07:39:10 UTC +00:00]]
446
+ SQL (0.2ms) INSERT INTO "easy_contact_entries" ("contactable_id", "content", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["contactable_id", 1], ["content", "second entry"], ["created_at", Mon, 15 Jul 2013 07:39:10 UTC +00:00], ["updated_at", Mon, 15 Jul 2013 07:39:10 UTC +00:00]]
447
+  (0.1ms) RELEASE SAVEPOINT active_record_1
448
+  (0.2ms) SELECT COUNT(*) FROM "easy_contact_entries" WHERE "easy_contact_entries"."contactable_id" = ? [["contactable_id", 1]]
449
+  (0.9ms) rollback transaction
450
+  (0.1ms) begin transaction
451
+ --------------------------------------------------------
452
+ EasyContact::Entry::Basic: test_0002_create nested names
453
+ --------------------------------------------------------
454
+  (0.1ms) SAVEPOINT active_record_1
455
+ SQL (0.5ms) INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Mon, 15 Jul 2013 07:39:10 UTC +00:00], ["updated_at", Mon, 15 Jul 2013 07:39:10 UTC +00:00]]
456
+ SQL (0.3ms) INSERT INTO "easy_contact_entries" ("contactable_id", "content", "created_at", "type", "updated_at") VALUES (?, ?, ?, ?, ?) [["contactable_id", 1], ["content", "first name"], ["created_at", Mon, 15 Jul 2013 07:39:10 UTC +00:00], ["type", "EasyContact::Name"], ["updated_at", Mon, 15 Jul 2013 07:39:10 UTC +00:00]]
457
+ SQL (0.3ms) INSERT INTO "easy_contact_entries" ("contactable_id", "content", "created_at", "type", "updated_at") VALUES (?, ?, ?, ?, ?) [["contactable_id", 1], ["content", "second name"], ["created_at", Mon, 15 Jul 2013 07:39:10 UTC +00:00], ["type", "EasyContact::Name"], ["updated_at", Mon, 15 Jul 2013 07:39:10 UTC +00:00]]
458
+  (0.1ms) RELEASE SAVEPOINT active_record_1
459
+  (0.2ms) SELECT COUNT(*) FROM "easy_contact_entries" WHERE "easy_contact_entries"."type" IN ('EasyContact::Name') AND "easy_contact_entries"."contactable_id" = ? [["contactable_id", 1]]
460
+  (0.1ms) SELECT COUNT(*) FROM "easy_contact_entries" WHERE "easy_contact_entries"."contactable_id" = ? [["contactable_id", 1]]
461
+  (0.9ms) rollback transaction
462
+  (0.0ms) begin transaction
463
+ -------------------------------------------------------
464
+ EasyContact::Entry::Basic: test_0003_reject blank field
465
+ -------------------------------------------------------
466
+  (0.1ms) SAVEPOINT active_record_1
467
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Mon, 15 Jul 2013 07:39:10 UTC +00:00], ["updated_at", Mon, 15 Jul 2013 07:39:10 UTC +00:00]]
468
+ SQL (0.2ms) INSERT INTO "easy_contact_entries" ("contactable_id", "content", "created_at", "type", "updated_at") VALUES (?, ?, ?, ?, ?) [["contactable_id", 1], ["content", "second name"], ["created_at", Mon, 15 Jul 2013 07:39:10 UTC +00:00], ["type", "EasyContact::Name"], ["updated_at", Mon, 15 Jul 2013 07:39:10 UTC +00:00]]
469
+  (0.0ms) RELEASE SAVEPOINT active_record_1
470
+  (0.1ms) SELECT COUNT(*) FROM "easy_contact_entries" WHERE "easy_contact_entries"."type" IN ('EasyContact::Name') AND "easy_contact_entries"."contactable_id" = ? [["contactable_id", 1]]
471
+  (0.8ms) rollback transaction
472
+  (0.1ms) begin transaction
473
+ ---------------------------
474
+ EasyContactTest: test_truth
475
+ ---------------------------
476
+  (0.1ms) rollback transaction
477
+  (0.0ms) begin transaction
478
+ ---------------------------
479
+ EasyContactTest: test_works
480
+ ---------------------------
481
+  (0.0ms) rollback transaction
482
+  (0.3ms) begin transaction
483
+ -------------------------------------------------------------
484
+ EasyContact::Entry::Basic: test_0001_create nested attributes
485
+ -------------------------------------------------------------
486
+  (0.1ms) SAVEPOINT active_record_1
487
+ SQL (2.5ms) INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Mon, 15 Jul 2013 07:43:09 UTC +00:00], ["updated_at", Mon, 15 Jul 2013 07:43:09 UTC +00:00]]
488
+ SQL (0.3ms) INSERT INTO "easy_contact_entries" ("contactable_id", "content", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["contactable_id", 1], ["content", "first entry"], ["created_at", Mon, 15 Jul 2013 07:43:09 UTC +00:00], ["updated_at", Mon, 15 Jul 2013 07:43:09 UTC +00:00]]
489
+ SQL (0.1ms) INSERT INTO "easy_contact_entries" ("contactable_id", "content", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["contactable_id", 1], ["content", "second entry"], ["created_at", Mon, 15 Jul 2013 07:43:09 UTC +00:00], ["updated_at", Mon, 15 Jul 2013 07:43:09 UTC +00:00]]
490
+  (0.1ms) RELEASE SAVEPOINT active_record_1
491
+  (0.1ms) SELECT COUNT(*) FROM "easy_contact_entries" WHERE "easy_contact_entries"."contactable_id" = ? [["contactable_id", 1]]
492
+  (2.5ms) rollback transaction
493
+  (0.1ms) begin transaction
494
+ --------------------------------------------------------
495
+ EasyContact::Entry::Basic: test_0002_create nested names
496
+ --------------------------------------------------------
497
+  (0.1ms) SAVEPOINT active_record_1
498
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Mon, 15 Jul 2013 07:43:09 UTC +00:00], ["updated_at", Mon, 15 Jul 2013 07:43:09 UTC +00:00]]
499
+ SQL (0.3ms) INSERT INTO "easy_contact_entries" ("contactable_id", "content", "created_at", "type", "updated_at") VALUES (?, ?, ?, ?, ?) [["contactable_id", 1], ["content", "first name"], ["created_at", Mon, 15 Jul 2013 07:43:09 UTC +00:00], ["type", "EasyContact::Name"], ["updated_at", Mon, 15 Jul 2013 07:43:09 UTC +00:00]]
500
+ SQL (0.1ms) INSERT INTO "easy_contact_entries" ("contactable_id", "content", "created_at", "type", "updated_at") VALUES (?, ?, ?, ?, ?) [["contactable_id", 1], ["content", "second name"], ["created_at", Mon, 15 Jul 2013 07:43:09 UTC +00:00], ["type", "EasyContact::Name"], ["updated_at", Mon, 15 Jul 2013 07:43:09 UTC +00:00]]
501
+  (0.1ms) RELEASE SAVEPOINT active_record_1
502
+  (0.2ms) SELECT COUNT(*) FROM "easy_contact_entries" WHERE "easy_contact_entries"."type" IN ('EasyContact::Name') AND "easy_contact_entries"."contactable_id" = ? [["contactable_id", 1]]
503
+  (0.0ms) SELECT COUNT(*) FROM "easy_contact_entries" WHERE "easy_contact_entries"."contactable_id" = ? [["contactable_id", 1]]
504
+  (0.9ms) rollback transaction
505
+  (0.1ms) begin transaction
506
+ -------------------------------------------------------
507
+ EasyContact::Entry::Basic: test_0003_reject blank field
508
+ -------------------------------------------------------
509
+  (0.1ms) SAVEPOINT active_record_1
510
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Mon, 15 Jul 2013 07:43:09 UTC +00:00], ["updated_at", Mon, 15 Jul 2013 07:43:09 UTC +00:00]]
511
+ SQL (0.2ms) INSERT INTO "easy_contact_entries" ("contactable_id", "content", "created_at", "type", "updated_at") VALUES (?, ?, ?, ?, ?) [["contactable_id", 1], ["content", "second name"], ["created_at", Mon, 15 Jul 2013 07:43:09 UTC +00:00], ["type", "EasyContact::Name"], ["updated_at", Mon, 15 Jul 2013 07:43:09 UTC +00:00]]
512
+  (0.1ms) RELEASE SAVEPOINT active_record_1
513
+  (0.1ms) SELECT COUNT(*) FROM "easy_contact_entries" WHERE "easy_contact_entries"."type" IN ('EasyContact::Name') AND "easy_contact_entries"."contactable_id" = ? [["contactable_id", 1]]
514
+  (1.0ms) rollback transaction
515
+  (0.1ms) begin transaction
516
+ ---------------------------
517
+ EasyContactTest: test_truth
518
+ ---------------------------
519
+  (0.1ms) rollback transaction
520
+  (0.0ms) begin transaction
521
+ ---------------------------
522
+ EasyContactTest: test_works
523
+ ---------------------------
524
+  (0.0ms) rollback transaction
525
+  (0.3ms) begin transaction
526
+ -------------------------------------------------------------
527
+ EasyContact::Entry::Basic: test_0001_create nested attributes
528
+ -------------------------------------------------------------
529
+  (0.2ms) SAVEPOINT active_record_1
530
+ SQL (2.3ms) INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Tue, 16 Jul 2013 04:12:31 UTC +00:00], ["updated_at", Tue, 16 Jul 2013 04:12:31 UTC +00:00]]
531
+ SQL (0.3ms) INSERT INTO "easy_contact_entries" ("contactable_id", "content", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["contactable_id", 1], ["content", "first entry"], ["created_at", Tue, 16 Jul 2013 04:12:31 UTC +00:00], ["updated_at", Tue, 16 Jul 2013 04:12:31 UTC +00:00]]
532
+ SQL (0.1ms) INSERT INTO "easy_contact_entries" ("contactable_id", "content", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["contactable_id", 1], ["content", "second entry"], ["created_at", Tue, 16 Jul 2013 04:12:31 UTC +00:00], ["updated_at", Tue, 16 Jul 2013 04:12:31 UTC +00:00]]
533
+  (0.1ms) RELEASE SAVEPOINT active_record_1
534
+  (0.1ms) SELECT COUNT(*) FROM "easy_contact_entries" WHERE "easy_contact_entries"."contactable_id" = ? [["contactable_id", 1]]
535
+  (1.0ms) rollback transaction
536
+  (0.1ms) begin transaction
537
+ --------------------------------------------------------
538
+ EasyContact::Entry::Basic: test_0002_create nested names
539
+ --------------------------------------------------------
540
+  (0.1ms) SAVEPOINT active_record_1
541
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Tue, 16 Jul 2013 04:12:31 UTC +00:00], ["updated_at", Tue, 16 Jul 2013 04:12:31 UTC +00:00]]
542
+ SQL (0.3ms) INSERT INTO "easy_contact_entries" ("contactable_id", "content", "created_at", "type", "updated_at") VALUES (?, ?, ?, ?, ?) [["contactable_id", 1], ["content", "first name"], ["created_at", Tue, 16 Jul 2013 04:12:31 UTC +00:00], ["type", "EasyContact::Name"], ["updated_at", Tue, 16 Jul 2013 04:12:31 UTC +00:00]]
543
+ SQL (0.2ms) INSERT INTO "easy_contact_entries" ("contactable_id", "content", "created_at", "type", "updated_at") VALUES (?, ?, ?, ?, ?) [["contactable_id", 1], ["content", "second name"], ["created_at", Tue, 16 Jul 2013 04:12:31 UTC +00:00], ["type", "EasyContact::Name"], ["updated_at", Tue, 16 Jul 2013 04:12:31 UTC +00:00]]
544
+  (0.1ms) RELEASE SAVEPOINT active_record_1
545
+  (0.2ms) SELECT COUNT(*) FROM "easy_contact_entries" WHERE "easy_contact_entries"."type" IN ('EasyContact::Name') AND "easy_contact_entries"."contactable_id" = ? [["contactable_id", 1]]
546
+  (0.0ms) SELECT COUNT(*) FROM "easy_contact_entries" WHERE "easy_contact_entries"."contactable_id" = ? [["contactable_id", 1]]
547
+  (0.9ms) rollback transaction
548
+  (0.1ms) begin transaction
549
+ -------------------------------------------------------
550
+ EasyContact::Entry::Basic: test_0003_reject blank field
551
+ -------------------------------------------------------
552
+  (0.1ms) SAVEPOINT active_record_1
553
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Tue, 16 Jul 2013 04:12:31 UTC +00:00], ["updated_at", Tue, 16 Jul 2013 04:12:31 UTC +00:00]]
554
+ SQL (0.2ms) INSERT INTO "easy_contact_entries" ("contactable_id", "content", "created_at", "type", "updated_at") VALUES (?, ?, ?, ?, ?) [["contactable_id", 1], ["content", "second name"], ["created_at", Tue, 16 Jul 2013 04:12:31 UTC +00:00], ["type", "EasyContact::Name"], ["updated_at", Tue, 16 Jul 2013 04:12:31 UTC +00:00]]
555
+  (0.0ms) RELEASE SAVEPOINT active_record_1
556
+  (0.1ms) SELECT COUNT(*) FROM "easy_contact_entries" WHERE "easy_contact_entries"."type" IN ('EasyContact::Name') AND "easy_contact_entries"."contactable_id" = ? [["contactable_id", 1]]
557
+  (2.6ms) rollback transaction
558
+  (0.1ms) begin transaction
559
+ ---------------------------
560
+ EasyContactTest: test_truth
561
+ ---------------------------
562
+  (0.1ms) rollback transaction
563
+  (0.0ms) begin transaction
564
+ ---------------------------
565
+ EasyContactTest: test_works
566
+ ---------------------------
567
+  (0.0ms) rollback transaction
568
+  (0.4ms) begin transaction
569
+ -------------------------------------------------------------
570
+ EasyContact::Entry::Basic: test_0001_create nested attributes
571
+ -------------------------------------------------------------
572
+  (0.1ms) SAVEPOINT active_record_1
573
+ SQL (2.3ms) INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Tue, 16 Jul 2013 04:15:01 UTC +00:00], ["updated_at", Tue, 16 Jul 2013 04:15:01 UTC +00:00]]
574
+ SQL (0.3ms) INSERT INTO "easy_contact_entries" ("contactable_id", "content", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["contactable_id", 1], ["content", "first entry"], ["created_at", Tue, 16 Jul 2013 04:15:01 UTC +00:00], ["updated_at", Tue, 16 Jul 2013 04:15:01 UTC +00:00]]
575
+ SQL (0.1ms) INSERT INTO "easy_contact_entries" ("contactable_id", "content", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["contactable_id", 1], ["content", "second entry"], ["created_at", Tue, 16 Jul 2013 04:15:01 UTC +00:00], ["updated_at", Tue, 16 Jul 2013 04:15:01 UTC +00:00]]
576
+  (0.1ms) RELEASE SAVEPOINT active_record_1
577
+  (0.1ms) SELECT COUNT(*) FROM "easy_contact_entries" WHERE "easy_contact_entries"."contactable_id" = ? [["contactable_id", 1]]
578
+  (2.5ms) rollback transaction
579
+  (0.1ms) begin transaction
580
+ --------------------------------------------------------
581
+ EasyContact::Entry::Basic: test_0002_create nested names
582
+ --------------------------------------------------------
583
+  (0.1ms) SAVEPOINT active_record_1
584
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Tue, 16 Jul 2013 04:15:01 UTC +00:00], ["updated_at", Tue, 16 Jul 2013 04:15:01 UTC +00:00]]
585
+ SQL (0.3ms) INSERT INTO "easy_contact_entries" ("contactable_id", "content", "created_at", "type", "updated_at") VALUES (?, ?, ?, ?, ?) [["contactable_id", 1], ["content", "first name"], ["created_at", Tue, 16 Jul 2013 04:15:01 UTC +00:00], ["type", "EasyContact::Name"], ["updated_at", Tue, 16 Jul 2013 04:15:01 UTC +00:00]]
586
+ SQL (0.2ms) INSERT INTO "easy_contact_entries" ("contactable_id", "content", "created_at", "type", "updated_at") VALUES (?, ?, ?, ?, ?) [["contactable_id", 1], ["content", "second name"], ["created_at", Tue, 16 Jul 2013 04:15:01 UTC +00:00], ["type", "EasyContact::Name"], ["updated_at", Tue, 16 Jul 2013 04:15:01 UTC +00:00]]
587
+  (0.1ms) RELEASE SAVEPOINT active_record_1
588
+  (0.2ms) SELECT COUNT(*) FROM "easy_contact_entries" WHERE "easy_contact_entries"."type" IN ('EasyContact::Name') AND "easy_contact_entries"."contactable_id" = ? [["contactable_id", 1]]
589
+  (0.0ms) SELECT COUNT(*) FROM "easy_contact_entries" WHERE "easy_contact_entries"."contactable_id" = ? [["contactable_id", 1]]
590
+  (0.9ms) rollback transaction
591
+  (0.1ms) begin transaction
592
+ -------------------------------------------------------
593
+ EasyContact::Entry::Basic: test_0003_reject blank field
594
+ -------------------------------------------------------
595
+  (0.1ms) SAVEPOINT active_record_1
596
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Tue, 16 Jul 2013 04:15:01 UTC +00:00], ["updated_at", Tue, 16 Jul 2013 04:15:01 UTC +00:00]]
597
+ SQL (0.2ms) INSERT INTO "easy_contact_entries" ("contactable_id", "content", "created_at", "type", "updated_at") VALUES (?, ?, ?, ?, ?) [["contactable_id", 1], ["content", "second name"], ["created_at", Tue, 16 Jul 2013 04:15:01 UTC +00:00], ["type", "EasyContact::Name"], ["updated_at", Tue, 16 Jul 2013 04:15:01 UTC +00:00]]
598
+  (0.0ms) RELEASE SAVEPOINT active_record_1
599
+  (0.1ms) SELECT COUNT(*) FROM "easy_contact_entries" WHERE "easy_contact_entries"."type" IN ('EasyContact::Name') AND "easy_contact_entries"."contactable_id" = ? [["contactable_id", 1]]
600
+  (0.9ms) rollback transaction
601
+  (0.1ms) begin transaction
602
+ ---------------------------
603
+ EasyContactTest: test_truth
604
+ ---------------------------
605
+  (0.1ms) rollback transaction
606
+  (0.0ms) begin transaction
607
+ ---------------------------
608
+ EasyContactTest: test_works
609
+ ---------------------------
610
+  (0.0ms) rollback transaction
611
+  (0.5ms) begin transaction
612
+ -------------------------------------------------------------
613
+ EasyContact::Entry::Basic: test_0001_create nested attributes
614
+ -------------------------------------------------------------
615
+  (0.1ms) SAVEPOINT active_record_1
616
+ SQL (2.3ms) INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Tue, 16 Jul 2013 04:15:19 UTC +00:00], ["updated_at", Tue, 16 Jul 2013 04:15:19 UTC +00:00]]
617
+ SQL (0.3ms) INSERT INTO "easy_contact_entries" ("contactable_id", "content", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["contactable_id", 1], ["content", "first entry"], ["created_at", Tue, 16 Jul 2013 04:15:19 UTC +00:00], ["updated_at", Tue, 16 Jul 2013 04:15:19 UTC +00:00]]
618
+ SQL (0.1ms) INSERT INTO "easy_contact_entries" ("contactable_id", "content", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["contactable_id", 1], ["content", "second entry"], ["created_at", Tue, 16 Jul 2013 04:15:19 UTC +00:00], ["updated_at", Tue, 16 Jul 2013 04:15:19 UTC +00:00]]
619
+  (0.1ms) RELEASE SAVEPOINT active_record_1
620
+  (0.1ms) SELECT COUNT(*) FROM "easy_contact_entries" WHERE "easy_contact_entries"."contactable_id" = ? [["contactable_id", 1]]
621
+  (2.6ms) rollback transaction
622
+  (0.1ms) begin transaction
623
+ --------------------------------------------------------
624
+ EasyContact::Entry::Basic: test_0002_create nested names
625
+ --------------------------------------------------------
626
+  (0.1ms) SAVEPOINT active_record_1
627
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Tue, 16 Jul 2013 04:15:19 UTC +00:00], ["updated_at", Tue, 16 Jul 2013 04:15:19 UTC +00:00]]
628
+ SQL (0.3ms) INSERT INTO "easy_contact_entries" ("contactable_id", "content", "created_at", "type", "updated_at") VALUES (?, ?, ?, ?, ?) [["contactable_id", 1], ["content", "first name"], ["created_at", Tue, 16 Jul 2013 04:15:19 UTC +00:00], ["type", "EasyContact::Name"], ["updated_at", Tue, 16 Jul 2013 04:15:19 UTC +00:00]]
629
+ SQL (0.1ms) INSERT INTO "easy_contact_entries" ("contactable_id", "content", "created_at", "type", "updated_at") VALUES (?, ?, ?, ?, ?) [["contactable_id", 1], ["content", "second name"], ["created_at", Tue, 16 Jul 2013 04:15:19 UTC +00:00], ["type", "EasyContact::Name"], ["updated_at", Tue, 16 Jul 2013 04:15:19 UTC +00:00]]
630
+  (0.1ms) RELEASE SAVEPOINT active_record_1
631
+  (0.2ms) SELECT COUNT(*) FROM "easy_contact_entries" WHERE "easy_contact_entries"."type" IN ('EasyContact::Name') AND "easy_contact_entries"."contactable_id" = ? [["contactable_id", 1]]
632
+  (0.0ms) SELECT COUNT(*) FROM "easy_contact_entries" WHERE "easy_contact_entries"."contactable_id" = ? [["contactable_id", 1]]
633
+  (1.0ms) rollback transaction
634
+  (0.1ms) begin transaction
635
+ -------------------------------------------------------
636
+ EasyContact::Entry::Basic: test_0003_reject blank field
637
+ -------------------------------------------------------
638
+  (0.1ms) SAVEPOINT active_record_1
639
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Tue, 16 Jul 2013 04:15:19 UTC +00:00], ["updated_at", Tue, 16 Jul 2013 04:15:19 UTC +00:00]]
640
+ SQL (0.2ms) INSERT INTO "easy_contact_entries" ("contactable_id", "content", "created_at", "type", "updated_at") VALUES (?, ?, ?, ?, ?) [["contactable_id", 1], ["content", "second name"], ["created_at", Tue, 16 Jul 2013 04:15:19 UTC +00:00], ["type", "EasyContact::Name"], ["updated_at", Tue, 16 Jul 2013 04:15:19 UTC +00:00]]
641
+  (0.1ms) RELEASE SAVEPOINT active_record_1
642
+  (0.1ms) SELECT COUNT(*) FROM "easy_contact_entries" WHERE "easy_contact_entries"."type" IN ('EasyContact::Name') AND "easy_contact_entries"."contactable_id" = ? [["contactable_id", 1]]
643
+  (1.0ms) rollback transaction
644
+  (0.1ms) begin transaction
645
+ ---------------------------
646
+ EasyContactTest: test_truth
647
+ ---------------------------
648
+  (0.1ms) rollback transaction
649
+  (0.0ms) begin transaction
650
+ ---------------------------
651
+ EasyContactTest: test_works
652
+ ---------------------------
653
+  (0.0ms) rollback transaction
654
+  (0.3ms) begin transaction
655
+ ---------------------------
656
+ EasyContactTest: test_truth
657
+ ---------------------------
658
+  (0.1ms) rollback transaction
659
+  (0.1ms) begin transaction
660
+ ---------------------------
661
+ EasyContactTest: test_works
662
+ ---------------------------
663
+  (0.0ms) rollback transaction
664
+  (0.1ms) begin transaction
665
+ SQL (2.4ms) INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Tue, 16 Jul 2013 04:19:42 UTC +00:00], ["updated_at", Tue, 16 Jul 2013 04:19:42 UTC +00:00]]
666
+ SQL (0.3ms) INSERT INTO "easy_contact_entries" ("contactable_id", "content", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["contactable_id", 1], ["content", "first entry"], ["created_at", Tue, 16 Jul 2013 04:19:42 UTC +00:00], ["updated_at", Tue, 16 Jul 2013 04:19:42 UTC +00:00]]
667
+ SQL (0.1ms) INSERT INTO "easy_contact_entries" ("contactable_id", "content", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["contactable_id", 1], ["content", "second entry"], ["created_at", Tue, 16 Jul 2013 04:19:42 UTC +00:00], ["updated_at", Tue, 16 Jul 2013 04:19:42 UTC +00:00]]
668
+  (71.2ms) commit transaction
669
+  (0.4ms) SELECT COUNT(*) FROM "easy_contact_entries" WHERE "easy_contact_entries"."contactable_id" = ? [["contactable_id", 1]]
670
+  (0.1ms) begin transaction
671
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Tue, 16 Jul 2013 04:19:42 UTC +00:00], ["updated_at", Tue, 16 Jul 2013 04:19:42 UTC +00:00]]
672
+ SQL (0.4ms) INSERT INTO "easy_contact_entries" ("contactable_id", "content", "created_at", "type", "updated_at") VALUES (?, ?, ?, ?, ?) [["contactable_id", 2], ["content", "first name"], ["created_at", Tue, 16 Jul 2013 04:19:42 UTC +00:00], ["type", "EasyContact::Name"], ["updated_at", Tue, 16 Jul 2013 04:19:42 UTC +00:00]]
673
+ SQL (0.2ms) INSERT INTO "easy_contact_entries" ("contactable_id", "content", "created_at", "type", "updated_at") VALUES (?, ?, ?, ?, ?) [["contactable_id", 2], ["content", "second name"], ["created_at", Tue, 16 Jul 2013 04:19:42 UTC +00:00], ["type", "EasyContact::Name"], ["updated_at", Tue, 16 Jul 2013 04:19:42 UTC +00:00]]
674
+  (3.5ms) commit transaction
675
+  (0.3ms) SELECT COUNT(*) FROM "easy_contact_entries" WHERE "easy_contact_entries"."type" IN ('EasyContact::Name') AND "easy_contact_entries"."contactable_id" = ? [["contactable_id", 2]]
676
+  (0.1ms) SELECT COUNT(*) FROM "easy_contact_entries" WHERE "easy_contact_entries"."contactable_id" = ? [["contactable_id", 2]]
677
+  (0.1ms) begin transaction
678
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Tue, 16 Jul 2013 04:19:42 UTC +00:00], ["updated_at", Tue, 16 Jul 2013 04:19:42 UTC +00:00]]
679
+ SQL (0.2ms) INSERT INTO "easy_contact_entries" ("contactable_id", "content", "created_at", "type", "updated_at") VALUES (?, ?, ?, ?, ?) [["contactable_id", 3], ["content", "second name"], ["created_at", Tue, 16 Jul 2013 04:19:42 UTC +00:00], ["type", "EasyContact::Name"], ["updated_at", Tue, 16 Jul 2013 04:19:42 UTC +00:00]]
680
+  (2.6ms) commit transaction
681
+  (0.2ms) SELECT COUNT(*) FROM "easy_contact_entries" WHERE "easy_contact_entries"."type" IN ('EasyContact::Name') AND "easy_contact_entries"."contactable_id" = ? [["contactable_id", 3]]
682
+  (0.1ms) begin transaction
683
+ ---------------------------
684
+ EasyContactTest: test_truth
685
+ ---------------------------
686
+  (0.1ms) rollback transaction
687
+  (0.1ms) begin transaction
688
+ ---------------------------
689
+ EasyContactTest: test_works
690
+ ---------------------------
691
+  (0.0ms) rollback transaction
692
+  (0.3ms) begin transaction
693
+ ---------------------------
694
+ EasyContactTest: test_truth
695
+ ---------------------------
696
+  (0.1ms) rollback transaction
697
+  (0.1ms) begin transaction
698
+ ---------------------------
699
+ EasyContactTest: test_works
700
+ ---------------------------
701
+  (0.0ms) rollback transaction
702
+  (0.1ms) begin transaction
703
+ SQL (2.5ms) INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Tue, 16 Jul 2013 04:20:33 UTC +00:00], ["updated_at", Tue, 16 Jul 2013 04:20:33 UTC +00:00]]
704
+ SQL (0.3ms) INSERT INTO "easy_contact_entries" ("contactable_id", "content", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["contactable_id", 4], ["content", "first entry"], ["created_at", Tue, 16 Jul 2013 04:20:33 UTC +00:00], ["updated_at", Tue, 16 Jul 2013 04:20:33 UTC +00:00]]
705
+ SQL (0.1ms) INSERT INTO "easy_contact_entries" ("contactable_id", "content", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["contactable_id", 4], ["content", "second entry"], ["created_at", Tue, 16 Jul 2013 04:20:33 UTC +00:00], ["updated_at", Tue, 16 Jul 2013 04:20:33 UTC +00:00]]
706
+  (33.0ms) commit transaction
707
+  (0.4ms) SELECT COUNT(*) FROM "easy_contact_entries" WHERE "easy_contact_entries"."contactable_id" = ? [["contactable_id", 4]]
708
+  (0.1ms) begin transaction
709
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Tue, 16 Jul 2013 04:20:33 UTC +00:00], ["updated_at", Tue, 16 Jul 2013 04:20:33 UTC +00:00]]
710
+ SQL (0.3ms) INSERT INTO "easy_contact_entries" ("contactable_id", "content", "created_at", "type", "updated_at") VALUES (?, ?, ?, ?, ?) [["contactable_id", 5], ["content", "first name"], ["created_at", Tue, 16 Jul 2013 04:20:33 UTC +00:00], ["type", "EasyContact::Name"], ["updated_at", Tue, 16 Jul 2013 04:20:33 UTC +00:00]]
711
+ SQL (0.2ms) INSERT INTO "easy_contact_entries" ("contactable_id", "content", "created_at", "type", "updated_at") VALUES (?, ?, ?, ?, ?) [["contactable_id", 5], ["content", "second name"], ["created_at", Tue, 16 Jul 2013 04:20:33 UTC +00:00], ["type", "EasyContact::Name"], ["updated_at", Tue, 16 Jul 2013 04:20:33 UTC +00:00]]
712
+  (19.3ms) commit transaction
713
+  (0.3ms) SELECT COUNT(*) FROM "easy_contact_entries" WHERE "easy_contact_entries"."type" IN ('EasyContact::Name') AND "easy_contact_entries"."contactable_id" = ? [["contactable_id", 5]]
714
+  (0.1ms) SELECT COUNT(*) FROM "easy_contact_entries" WHERE "easy_contact_entries"."contactable_id" = ? [["contactable_id", 5]]
715
+  (0.1ms) begin transaction
716
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Tue, 16 Jul 2013 04:20:33 UTC +00:00], ["updated_at", Tue, 16 Jul 2013 04:20:33 UTC +00:00]]
717
+ SQL (0.2ms) INSERT INTO "easy_contact_entries" ("contactable_id", "content", "created_at", "type", "updated_at") VALUES (?, ?, ?, ?, ?) [["contactable_id", 6], ["content", "second name"], ["created_at", Tue, 16 Jul 2013 04:20:33 UTC +00:00], ["type", "EasyContact::Name"], ["updated_at", Tue, 16 Jul 2013 04:20:33 UTC +00:00]]
718
+  (11.9ms) commit transaction
719
+  (0.2ms) SELECT COUNT(*) FROM "easy_contact_entries" WHERE "easy_contact_entries"."type" IN ('EasyContact::Name') AND "easy_contact_entries"."contactable_id" = ? [["contactable_id", 6]]
720
+  (0.1ms) begin transaction
721
+ ---------------------------
722
+ EasyContactTest: test_truth
723
+ ---------------------------
724
+  (0.1ms) rollback transaction
725
+  (0.1ms) begin transaction
726
+ ---------------------------
727
+ EasyContactTest: test_works
728
+ ---------------------------
729
+  (0.0ms) rollback transaction
730
+  (0.3ms) begin transaction
731
+ ---------------------------
732
+ EasyContactTest: test_truth
733
+ ---------------------------
734
+  (0.0ms) rollback transaction
735
+  (0.1ms) begin transaction
736
+ ---------------------------
737
+ EasyContactTest: test_works
738
+ ---------------------------
739
+  (0.0ms) rollback transaction
740
+  (0.3ms) begin transaction
741
+ -------------------------------------------------------------
742
+ EasyContact::Entry::Basic: test_0001_create nested attributes
743
+ -------------------------------------------------------------
744
+  (0.1ms) SAVEPOINT active_record_1
745
+ SQL (2.4ms) INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Tue, 16 Jul 2013 04:21:44 UTC +00:00], ["updated_at", Tue, 16 Jul 2013 04:21:44 UTC +00:00]]
746
+ SQL (0.3ms) INSERT INTO "easy_contact_entries" ("contactable_id", "content", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["contactable_id", 7], ["content", "first entry"], ["created_at", Tue, 16 Jul 2013 04:21:44 UTC +00:00], ["updated_at", Tue, 16 Jul 2013 04:21:44 UTC +00:00]]
747
+ SQL (0.1ms) INSERT INTO "easy_contact_entries" ("contactable_id", "content", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["contactable_id", 7], ["content", "second entry"], ["created_at", Tue, 16 Jul 2013 04:21:44 UTC +00:00], ["updated_at", Tue, 16 Jul 2013 04:21:44 UTC +00:00]]
748
+  (0.1ms) RELEASE SAVEPOINT active_record_1
749
+  (0.1ms) SELECT COUNT(*) FROM "easy_contact_entries" WHERE "easy_contact_entries"."contactable_id" = ? [["contactable_id", 7]]
750
+  (50.9ms) rollback transaction
751
+  (0.2ms) begin transaction
752
+ --------------------------------------------------------
753
+ EasyContact::Entry::Basic: test_0002_create nested names
754
+ --------------------------------------------------------
755
+  (0.1ms) SAVEPOINT active_record_1
756
+ SQL (0.5ms) INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Tue, 16 Jul 2013 04:21:44 UTC +00:00], ["updated_at", Tue, 16 Jul 2013 04:21:44 UTC +00:00]]
757
+ SQL (0.3ms) INSERT INTO "easy_contact_entries" ("contactable_id", "content", "created_at", "type", "updated_at") VALUES (?, ?, ?, ?, ?) [["contactable_id", 7], ["content", "first name"], ["created_at", Tue, 16 Jul 2013 04:21:44 UTC +00:00], ["type", "EasyContact::Name"], ["updated_at", Tue, 16 Jul 2013 04:21:44 UTC +00:00]]
758
+ SQL (0.2ms) INSERT INTO "easy_contact_entries" ("contactable_id", "content", "created_at", "type", "updated_at") VALUES (?, ?, ?, ?, ?) [["contactable_id", 7], ["content", "second name"], ["created_at", Tue, 16 Jul 2013 04:21:44 UTC +00:00], ["type", "EasyContact::Name"], ["updated_at", Tue, 16 Jul 2013 04:21:44 UTC +00:00]]
759
+  (0.1ms) RELEASE SAVEPOINT active_record_1
760
+  (0.2ms) SELECT COUNT(*) FROM "easy_contact_entries" WHERE "easy_contact_entries"."type" IN ('EasyContact::Name') AND "easy_contact_entries"."contactable_id" = ? [["contactable_id", 7]]
761
+  (0.0ms) SELECT COUNT(*) FROM "easy_contact_entries" WHERE "easy_contact_entries"."contactable_id" = ? [["contactable_id", 7]]
762
+  (156.9ms) rollback transaction
763
+  (0.1ms) begin transaction
764
+ -------------------------------------------------------
765
+ EasyContact::Entry::Basic: test_0003_reject blank field
766
+ -------------------------------------------------------
767
+  (0.1ms) SAVEPOINT active_record_1
768
+ SQL (0.6ms) INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Tue, 16 Jul 2013 04:21:44 UTC +00:00], ["updated_at", Tue, 16 Jul 2013 04:21:44 UTC +00:00]]
769
+ SQL (0.3ms) INSERT INTO "easy_contact_entries" ("contactable_id", "content", "created_at", "type", "updated_at") VALUES (?, ?, ?, ?, ?) [["contactable_id", 7], ["content", "second name"], ["created_at", Tue, 16 Jul 2013 04:21:44 UTC +00:00], ["type", "EasyContact::Name"], ["updated_at", Tue, 16 Jul 2013 04:21:44 UTC +00:00]]
770
+  (0.1ms) RELEASE SAVEPOINT active_record_1
771
+  (0.2ms) SELECT COUNT(*) FROM "easy_contact_entries" WHERE "easy_contact_entries"."type" IN ('EasyContact::Name') AND "easy_contact_entries"."contactable_id" = ? [["contactable_id", 7]]
772
+  (61.9ms) rollback transaction
773
+  (0.1ms) begin transaction
774
+ ---------------------------
775
+ EasyContactTest: test_truth
776
+ ---------------------------
777
+  (0.1ms) rollback transaction
778
+  (0.1ms) begin transaction
779
+ ---------------------------
780
+ EasyContactTest: test_works
781
+ ---------------------------
782
+  (0.1ms) rollback transaction
783
+  (0.3ms) begin transaction
784
+ -------------------------------------------------------------
785
+ EasyContact::Entry::Basic: test_0001_create nested attributes
786
+ -------------------------------------------------------------
787
+  (0.1ms) SAVEPOINT active_record_1
788
+ SQL (2.3ms) INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Tue, 16 Jul 2013 04:24:19 UTC +00:00], ["updated_at", Tue, 16 Jul 2013 04:24:19 UTC +00:00]]
789
+ SQL (0.3ms) INSERT INTO "easy_contact_entries" ("contactable_id", "content", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["contactable_id", 7], ["content", "first entry"], ["created_at", Tue, 16 Jul 2013 04:24:19 UTC +00:00], ["updated_at", Tue, 16 Jul 2013 04:24:19 UTC +00:00]]
790
+ SQL (0.1ms) INSERT INTO "easy_contact_entries" ("contactable_id", "content", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["contactable_id", 7], ["content", "second entry"], ["created_at", Tue, 16 Jul 2013 04:24:19 UTC +00:00], ["updated_at", Tue, 16 Jul 2013 04:24:19 UTC +00:00]]
791
+  (0.1ms) RELEASE SAVEPOINT active_record_1
792
+  (0.1ms) SELECT COUNT(*) FROM "easy_contact_entries" WHERE "easy_contact_entries"."contactable_id" = ? [["contactable_id", 7]]
793
+  (2.5ms) rollback transaction
794
+  (0.1ms) begin transaction
795
+ --------------------------------------------------------
796
+ EasyContact::Entry::Basic: test_0002_create nested names
797
+ --------------------------------------------------------
798
+  (0.1ms) SAVEPOINT active_record_1
799
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Tue, 16 Jul 2013 04:24:19 UTC +00:00], ["updated_at", Tue, 16 Jul 2013 04:24:19 UTC +00:00]]
800
+ SQL (0.3ms) INSERT INTO "easy_contact_entries" ("contactable_id", "content", "created_at", "type", "updated_at") VALUES (?, ?, ?, ?, ?) [["contactable_id", 7], ["content", "first name"], ["created_at", Tue, 16 Jul 2013 04:24:19 UTC +00:00], ["type", "EasyContact::Name"], ["updated_at", Tue, 16 Jul 2013 04:24:19 UTC +00:00]]
801
+ SQL (0.2ms) INSERT INTO "easy_contact_entries" ("contactable_id", "content", "created_at", "type", "updated_at") VALUES (?, ?, ?, ?, ?) [["contactable_id", 7], ["content", "second name"], ["created_at", Tue, 16 Jul 2013 04:24:19 UTC +00:00], ["type", "EasyContact::Name"], ["updated_at", Tue, 16 Jul 2013 04:24:19 UTC +00:00]]
802
+  (0.1ms) RELEASE SAVEPOINT active_record_1
803
+  (0.2ms) SELECT COUNT(*) FROM "easy_contact_entries" WHERE "easy_contact_entries"."type" IN ('EasyContact::Name') AND "easy_contact_entries"."contactable_id" = ? [["contactable_id", 7]]
804
+  (0.0ms) SELECT COUNT(*) FROM "easy_contact_entries" WHERE "easy_contact_entries"."contactable_id" = ? [["contactable_id", 7]]
805
+  (0.9ms) rollback transaction
806
+  (0.1ms) begin transaction
807
+ -------------------------------------------------------
808
+ EasyContact::Entry::Basic: test_0003_reject blank field
809
+ -------------------------------------------------------
810
+  (0.1ms) SAVEPOINT active_record_1
811
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Tue, 16 Jul 2013 04:24:19 UTC +00:00], ["updated_at", Tue, 16 Jul 2013 04:24:19 UTC +00:00]]
812
+ SQL (0.2ms) INSERT INTO "easy_contact_entries" ("contactable_id", "content", "created_at", "type", "updated_at") VALUES (?, ?, ?, ?, ?) [["contactable_id", 7], ["content", "second name"], ["created_at", Tue, 16 Jul 2013 04:24:19 UTC +00:00], ["type", "EasyContact::Name"], ["updated_at", Tue, 16 Jul 2013 04:24:19 UTC +00:00]]
813
+  (0.1ms) RELEASE SAVEPOINT active_record_1
814
+  (0.1ms) SELECT COUNT(*) FROM "easy_contact_entries" WHERE "easy_contact_entries"."type" IN ('EasyContact::Name') AND "easy_contact_entries"."contactable_id" = ? [["contactable_id", 7]]
815
+  (1.1ms) rollback transaction
816
+  (0.1ms) begin transaction
817
+ ---------------------------
818
+ EasyContactTest: test_truth
819
+ ---------------------------
820
+  (0.1ms) rollback transaction
821
+  (0.0ms) begin transaction
822
+ ---------------------------
823
+ EasyContactTest: test_works
824
+ ---------------------------
825
+  (0.0ms) rollback transaction