ix 0.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (52) hide show
  1. checksums.yaml +7 -0
  2. data/MIT-LICENSE +20 -0
  3. data/Rakefile +32 -0
  4. data/lib/ix.rb +4 -0
  5. data/lib/ix/has_ix.rb +39 -0
  6. data/lib/ix/version.rb +3 -0
  7. data/lib/tasks/ix_tasks.rake +4 -0
  8. data/test/dummy/README.rdoc +28 -0
  9. data/test/dummy/Rakefile +6 -0
  10. data/test/dummy/app/assets/javascripts/application.js +13 -0
  11. data/test/dummy/app/assets/stylesheets/application.css +15 -0
  12. data/test/dummy/app/controllers/application_controller.rb +5 -0
  13. data/test/dummy/app/helpers/application_helper.rb +2 -0
  14. data/test/dummy/app/models/user.rb +3 -0
  15. data/test/dummy/app/views/layouts/application.html.erb +14 -0
  16. data/test/dummy/bin/bundle +3 -0
  17. data/test/dummy/bin/rails +4 -0
  18. data/test/dummy/bin/rake +4 -0
  19. data/test/dummy/config.ru +4 -0
  20. data/test/dummy/config/application.rb +23 -0
  21. data/test/dummy/config/boot.rb +5 -0
  22. data/test/dummy/config/database.yml +25 -0
  23. data/test/dummy/config/environment.rb +5 -0
  24. data/test/dummy/config/environments/development.rb +37 -0
  25. data/test/dummy/config/environments/production.rb +83 -0
  26. data/test/dummy/config/environments/test.rb +39 -0
  27. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  28. data/test/dummy/config/initializers/cookies_serializer.rb +3 -0
  29. data/test/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  30. data/test/dummy/config/initializers/inflections.rb +16 -0
  31. data/test/dummy/config/initializers/mime_types.rb +4 -0
  32. data/test/dummy/config/initializers/session_store.rb +3 -0
  33. data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
  34. data/test/dummy/config/locales/en.yml +23 -0
  35. data/test/dummy/config/routes.rb +56 -0
  36. data/test/dummy/config/secrets.yml +22 -0
  37. data/test/dummy/db/development.sqlite3 +0 -0
  38. data/test/dummy/db/migrate/20140603164419_create_users.rb +9 -0
  39. data/test/dummy/db/schema.rb +22 -0
  40. data/test/dummy/db/test.sqlite3 +0 -0
  41. data/test/dummy/log/development.log +56 -0
  42. data/test/dummy/log/test.log +554 -0
  43. data/test/dummy/public/404.html +67 -0
  44. data/test/dummy/public/422.html +67 -0
  45. data/test/dummy/public/500.html +66 -0
  46. data/test/dummy/public/favicon.ico +0 -0
  47. data/test/dummy/test/fixtures/users.yml +7 -0
  48. data/test/dummy/test/models/user_test.rb +7 -0
  49. data/test/has_ix_test.rb +22 -0
  50. data/test/ix_test.rb +7 -0
  51. data/test/test_helper.rb +15 -0
  52. metadata +169 -0
@@ -0,0 +1,7 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # You can add backtrace silencers for libraries that you're using but don't wish to see in your backtraces.
4
+ # Rails.backtrace_cleaner.add_silencer { |line| line =~ /my_noisy_library/ }
5
+
6
+ # You can also remove all the silencers if you're trying to debug a problem that might stem from framework code.
7
+ # Rails.backtrace_cleaner.remove_silencers!
@@ -0,0 +1,3 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ Rails.application.config.action_dispatch.cookies_serializer = :json
@@ -0,0 +1,4 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Configure sensitive parameters which will be filtered from the log file.
4
+ Rails.application.config.filter_parameters += [:password]
@@ -0,0 +1,16 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Add new inflection rules using the following format. Inflections
4
+ # are locale specific, and you may define rules for as many different
5
+ # locales as you wish. All of these examples are active by default:
6
+ # ActiveSupport::Inflector.inflections(:en) do |inflect|
7
+ # inflect.plural /^(ox)$/i, '\1en'
8
+ # inflect.singular /^(ox)en/i, '\1'
9
+ # inflect.irregular 'person', 'people'
10
+ # inflect.uncountable %w( fish sheep )
11
+ # end
12
+
13
+ # These inflection rules are supported but not enabled by default:
14
+ # ActiveSupport::Inflector.inflections(:en) do |inflect|
15
+ # inflect.acronym 'RESTful'
16
+ # end
@@ -0,0 +1,4 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Add new mime types for use in respond_to blocks:
4
+ # Mime::Type.register "text/richtext", :rtf
@@ -0,0 +1,3 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ Rails.application.config.session_store :cookie_store, key: '_dummy_session'
@@ -0,0 +1,14 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # This file contains settings for ActionController::ParamsWrapper which
4
+ # is enabled by default.
5
+
6
+ # Enable parameter wrapping for JSON. You can disable this by setting :format to an empty array.
7
+ ActiveSupport.on_load(:action_controller) do
8
+ wrap_parameters format: [:json] if respond_to?(:wrap_parameters)
9
+ end
10
+
11
+ # To enable root element in JSON for ActiveRecord objects.
12
+ # ActiveSupport.on_load(:active_record) do
13
+ # self.include_root_in_json = true
14
+ # end
@@ -0,0 +1,23 @@
1
+ # Files in the config/locales directory are used for internationalization
2
+ # and are automatically loaded by Rails. If you want to use locales other
3
+ # than English, add the necessary files in this directory.
4
+ #
5
+ # To use the locales, use `I18n.t`:
6
+ #
7
+ # I18n.t 'hello'
8
+ #
9
+ # In views, this is aliased to just `t`:
10
+ #
11
+ # <%= t('hello') %>
12
+ #
13
+ # To use a different locale, set it with `I18n.locale`:
14
+ #
15
+ # I18n.locale = :es
16
+ #
17
+ # This would use the information in config/locales/es.yml.
18
+ #
19
+ # To learn more, please read the Rails Internationalization guide
20
+ # available at http://guides.rubyonrails.org/i18n.html.
21
+
22
+ en:
23
+ hello: "Hello world"
@@ -0,0 +1,56 @@
1
+ Rails.application.routes.draw do
2
+ # The priority is based upon order of creation: first created -> highest priority.
3
+ # See how all your routes lay out with "rake routes".
4
+
5
+ # You can have the root of your site routed with "root"
6
+ # root 'welcome#index'
7
+
8
+ # Example of regular route:
9
+ # get 'products/:id' => 'catalog#view'
10
+
11
+ # Example of named route that can be invoked with purchase_url(id: product.id)
12
+ # get 'products/:id/purchase' => 'catalog#purchase', as: :purchase
13
+
14
+ # Example resource route (maps HTTP verbs to controller actions automatically):
15
+ # resources :products
16
+
17
+ # Example resource route with options:
18
+ # resources :products do
19
+ # member do
20
+ # get 'short'
21
+ # post 'toggle'
22
+ # end
23
+ #
24
+ # collection do
25
+ # get 'sold'
26
+ # end
27
+ # end
28
+
29
+ # Example resource route with sub-resources:
30
+ # resources :products do
31
+ # resources :comments, :sales
32
+ # resource :seller
33
+ # end
34
+
35
+ # Example resource route with more complex sub-resources:
36
+ # resources :products do
37
+ # resources :comments
38
+ # resources :sales do
39
+ # get 'recent', on: :collection
40
+ # end
41
+ # end
42
+
43
+ # Example resource route with concerns:
44
+ # concern :toggleable do
45
+ # post 'toggle'
46
+ # end
47
+ # resources :posts, concerns: :toggleable
48
+ # resources :photos, concerns: :toggleable
49
+
50
+ # Example resource route within a namespace:
51
+ # namespace :admin do
52
+ # # Directs /admin/products/* to Admin::ProductsController
53
+ # # (app/controllers/admin/products_controller.rb)
54
+ # resources :products
55
+ # end
56
+ end
@@ -0,0 +1,22 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Your secret key is used for verifying the integrity of signed cookies.
4
+ # If you change this key, all old signed cookies will become invalid!
5
+
6
+ # Make sure the secret is at least 30 characters and all random,
7
+ # no regular words or you'll be exposed to dictionary attacks.
8
+ # You can use `rake secret` to generate a secure secret key.
9
+
10
+ # Make sure the secrets in this file are kept private
11
+ # if you're sharing your code publicly.
12
+
13
+ development:
14
+ secret_key_base: 20dcaf9f85cdbf8c5ece2170e6aba40ab37c9ba9d86c74f59048e8dd18b557257725f7b42c390287faf5435b43893936503b38e9b0653ae23a814134164883b2
15
+
16
+ test:
17
+ secret_key_base: 4bf4e19b86a36d7ecbb0a62fce0ff7d1bf26221d263febf001b2390660d7a94ae1a5f813ab42b8589a7417be02dc8d2529bbeeef41f83baae9c7ce59a6968e55
18
+
19
+ # Do not keep production secrets in the repository,
20
+ # instead read values from the environment.
21
+ production:
22
+ secret_key_base: <%= ENV["SECRET_KEY_BASE"] %>
Binary file
@@ -0,0 +1,9 @@
1
+ class CreateUsers < ActiveRecord::Migration
2
+ def change
3
+ create_table :users do |t|
4
+ t.string :ix
5
+
6
+ t.timestamps
7
+ end
8
+ end
9
+ end
@@ -0,0 +1,22 @@
1
+ # encoding: UTF-8
2
+ # This file is auto-generated from the current state of the database. Instead
3
+ # of editing this file, please use the migrations feature of Active Record to
4
+ # incrementally modify your database, and then regenerate this schema definition.
5
+ #
6
+ # Note that this schema.rb definition is the authoritative source for your
7
+ # database schema. If you need to create the application database on another
8
+ # system, you should be using db:schema:load, not running all the migrations
9
+ # from scratch. The latter is a flawed and unsustainable approach (the more migrations
10
+ # you'll amass, the slower it'll run and the greater likelihood for issues).
11
+ #
12
+ # It's strongly recommended that you check this file into your version control system.
13
+
14
+ ActiveRecord::Schema.define(version: 20140603164419) do
15
+
16
+ create_table "users", force: true do |t|
17
+ t.string "ix"
18
+ t.datetime "created_at"
19
+ t.datetime "updated_at"
20
+ end
21
+
22
+ end
Binary file
@@ -0,0 +1,56 @@
1
+  (1.6ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
2
+  (0.1ms) select sqlite_version(*)
3
+  (1.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
4
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
5
+ Migrating to CreateUsers (20140602174334)
6
+  (0.1ms) begin transaction
7
+  (0.4ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "ix" varchar(255), "created_at" datetime, "updated_at" datetime)
8
+ SQL (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140602174334"]]
9
+  (1.5ms) commit transaction
10
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
11
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
12
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
13
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
14
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
15
+  (2.0ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "ix" varchar(255), "created_at" datetime, "updated_at" datetime) 
16
+  (1.7ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
17
+  (0.1ms) select sqlite_version(*)
18
+  (1.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
19
+  (0.2ms) SELECT version FROM "schema_migrations"
20
+  (1.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20140602174334')
21
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
22
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
23
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
24
+ ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
25
+  (2.1ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "ix" varchar(255), "created_at" datetime, "updated_at" datetime) 
26
+  (1.7ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
27
+  (0.1ms) select sqlite_version(*)
28
+  (1.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
29
+  (0.1ms) SELECT version FROM "schema_migrations"
30
+  (1.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20140602174334')
31
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
32
+  (2.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
33
+  (0.1ms) select sqlite_version(*)
34
+  (1.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
35
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
36
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
37
+ Migrating to CreateUsers (20140603164419)
38
+  (0.1ms) begin transaction
39
+  (0.5ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "ix" varchar(255), "created_at" datetime, "updated_at" datetime) 
40
+ SQL (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140603164419"]]
41
+  (1.8ms) commit transaction
42
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
43
+  (0.1ms) begin transaction
44
+ SQL (0.7ms) INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-06-03 16:49:32.523794"], ["updated_at", "2014-06-03 16:49:32.523794"]]
45
+  (1.7ms) commit transaction
46
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
47
+  (1.5ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "ix" varchar(255), "created_at" datetime, "updated_at" datetime) 
48
+  (1.6ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
49
+  (0.1ms) select sqlite_version(*)
50
+  (1.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
51
+  (0.1ms) SELECT version FROM "schema_migrations"
52
+  (1.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20140603164419')
53
+  (0.2ms) begin transaction
54
+ User Exists (0.3ms) SELECT 1 AS one FROM "users" WHERE "users"."ix" = '1736579b187a' LIMIT 1
55
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "ix", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-06-03 17:56:08.882581"], ["ix", "1736579b187a"], ["updated_at", "2014-06-03 17:56:08.882581"]]
56
+  (2.0ms) commit transaction
@@ -0,0 +1,554 @@
1
+  (0.1ms) begin transaction
2
+ ------------------------------------
3
+ HasIxTest: test_set_ix_generates_hex
4
+ ------------------------------------
5
+  (0.1ms) rollback transaction
6
+  (0.1ms) begin transaction
7
+ ------------------
8
+ IxTest: test_truth
9
+ ------------------
10
+  (0.0ms) rollback transaction
11
+  (0.1ms) begin transaction
12
+ ------------------
13
+ IxTest: test_truth
14
+ ------------------
15
+  (0.0ms) rollback transaction
16
+  (0.0ms) begin transaction
17
+ ------------------------------------
18
+ HasIxTest: test_set_ix_generates_hex
19
+ ------------------------------------
20
+  (0.0ms) rollback transaction
21
+  (0.1ms) begin transaction
22
+ ------------------------------------
23
+ HasIxTest: test_set_ix_generates_hex
24
+ ------------------------------------
25
+  (0.1ms) rollback transaction
26
+  (0.1ms) begin transaction
27
+ ------------------
28
+ IxTest: test_truth
29
+ ------------------
30
+  (0.0ms) rollback transaction
31
+  (0.1ms) begin transaction
32
+ ------------------
33
+ IxTest: test_truth
34
+ ------------------
35
+  (0.0ms) rollback transaction
36
+  (0.0ms) begin transaction
37
+ ------------------------------------
38
+ HasIxTest: test_set_ix_generates_hex
39
+ ------------------------------------
40
+  (0.0ms) rollback transaction
41
+  (0.1ms) begin transaction
42
+ ------------------
43
+ IxTest: test_truth
44
+ ------------------
45
+  (0.0ms) rollback transaction
46
+  (0.0ms) begin transaction
47
+ ------------------------------------------
48
+ HasIxTest: test_set_ix_should_generate_hex
49
+ ------------------------------------------
50
+  (0.1ms) rollback transaction
51
+  (0.1ms) begin transaction
52
+ ------------------------------------------
53
+ HasIxTest: test_set_ix_should_generate_hex
54
+ ------------------------------------------
55
+  (0.0ms) rollback transaction
56
+  (0.0ms) begin transaction
57
+ ------------------
58
+ IxTest: test_truth
59
+ ------------------
60
+  (0.0ms) rollback transaction
61
+  (0.1ms) begin transaction
62
+ ------------------------------------------
63
+ HasIxTest: test_set_ix_should_generate_hex
64
+ ------------------------------------------
65
+  (0.1ms) rollback transaction
66
+  (0.0ms) begin transaction
67
+ ------------------
68
+ IxTest: test_truth
69
+ ------------------
70
+  (0.0ms) rollback transaction
71
+  (0.1ms) begin transaction
72
+ ------------------------------------------
73
+ HasIxTest: test_set_ix_should_generate_hex
74
+ ------------------------------------------
75
+  (0.0ms) rollback transaction
76
+  (0.1ms) begin transaction
77
+ ------------------
78
+ IxTest: test_truth
79
+ ------------------
80
+  (0.0ms) rollback transaction
81
+  (0.1ms) begin transaction
82
+ ------------------
83
+ IxTest: test_truth
84
+ ------------------
85
+  (0.0ms) rollback transaction
86
+  (0.0ms) begin transaction
87
+ ------------------------------------------
88
+ HasIxTest: test_set_ix_should_generate_hex
89
+ ------------------------------------------
90
+  (0.1ms) rollback transaction
91
+  (0.1ms) begin transaction
92
+ ------------------------------------------
93
+ HasIxTest: test_set_ix_should_generate_hex
94
+ ------------------------------------------
95
+  (0.0ms) rollback transaction
96
+  (0.0ms) begin transaction
97
+ ------------------
98
+ IxTest: test_truth
99
+ ------------------
100
+  (0.0ms) rollback transaction
101
+  (0.1ms) begin transaction
102
+ ------------------
103
+ IxTest: test_truth
104
+ ------------------
105
+  (0.1ms) rollback transaction
106
+  (0.1ms) begin transaction
107
+ ------------------------------------------
108
+ HasIxTest: test_set_ix_should_generate_hex
109
+ ------------------------------------------
110
+  (0.1ms) rollback transaction
111
+  (0.1ms) begin transaction
112
+ ------------------------------------------
113
+ HasIxTest: test_set_ix_should_generate_hex
114
+ ------------------------------------------
115
+  (0.0ms) rollback transaction
116
+  (0.0ms) begin transaction
117
+ ------------------
118
+ IxTest: test_truth
119
+ ------------------
120
+  (0.0ms) rollback transaction
121
+  (0.1ms) begin transaction
122
+ ------------------
123
+ IxTest: test_truth
124
+ ------------------
125
+  (0.0ms) rollback transaction
126
+  (0.0ms) begin transaction
127
+ ------------------------------------------
128
+ HasIxTest: test_set_ix_should_generate_hex
129
+ ------------------------------------------
130
+  (0.0ms) rollback transaction
131
+  (0.1ms) begin transaction
132
+ ------------------
133
+ IxTest: test_truth
134
+ ------------------
135
+  (0.0ms) rollback transaction
136
+  (0.0ms) begin transaction
137
+ ------------------------------------------
138
+ HasIxTest: test_set_ix_should_generate_hex
139
+ ------------------------------------------
140
+  (0.0ms) rollback transaction
141
+  (0.1ms) begin transaction
142
+ ------------------------------------------
143
+ HasIxTest: test_set_ix_should_generate_hex
144
+ ------------------------------------------
145
+  (0.0ms) rollback transaction
146
+  (0.0ms) begin transaction
147
+ ------------------
148
+ IxTest: test_truth
149
+ ------------------
150
+  (0.0ms) rollback transaction
151
+  (0.1ms) begin transaction
152
+ ------------------------------------------
153
+ HasIxTest: test_set_ix_should_generate_hex
154
+ ------------------------------------------
155
+  (0.0ms) rollback transaction
156
+  (0.0ms) begin transaction
157
+ ------------------
158
+ IxTest: test_truth
159
+ ------------------
160
+  (0.0ms) rollback transaction
161
+  (0.1ms) begin transaction
162
+ ------------------
163
+ IxTest: test_truth
164
+ ------------------
165
+  (0.0ms) rollback transaction
166
+  (0.0ms) begin transaction
167
+ ------------------------------------------
168
+ HasIxTest: test_set_ix_should_generate_hex
169
+ ------------------------------------------
170
+  (0.0ms) rollback transaction
171
+  (0.1ms) begin transaction
172
+ ------------------
173
+ IxTest: test_truth
174
+ ------------------
175
+  (0.0ms) rollback transaction
176
+  (0.0ms) begin transaction
177
+ ------------------------------------------
178
+ HasIxTest: test_set_ix_should_generate_hex
179
+ ------------------------------------------
180
+  (0.0ms) rollback transaction
181
+  (0.1ms) begin transaction
182
+ ------------------
183
+ IxTest: test_truth
184
+ ------------------
185
+  (0.0ms) rollback transaction
186
+  (0.0ms) begin transaction
187
+ ------------------------------------------
188
+ HasIxTest: test_set_ix_should_generate_hex
189
+ ------------------------------------------
190
+  (0.0ms) rollback transaction
191
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
192
+  (0.1ms) begin transaction
193
+ ------------------
194
+ IxTest: test_truth
195
+ ------------------
196
+  (0.0ms) rollback transaction
197
+  (0.0ms) begin transaction
198
+ ------------------------------------------
199
+ HasIxTest: test_set_ix_should_generate_hex
200
+ ------------------------------------------
201
+  (0.1ms) SAVEPOINT active_record_1
202
+ SQL (0.6ms) INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-06-03 17:37:08.860476"], ["updated_at", "2014-06-03 17:37:08.860476"]]
203
+  (0.1ms) RELEASE SAVEPOINT active_record_1
204
+  (0.7ms) rollback transaction
205
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
206
+  (0.1ms) begin transaction
207
+ ------------------
208
+ IxTest: test_truth
209
+ ------------------
210
+  (0.0ms) rollback transaction
211
+  (0.0ms) begin transaction
212
+ ------------------------------------------
213
+ HasIxTest: test_set_ix_should_generate_hex
214
+ ------------------------------------------
215
+  (0.0ms) SAVEPOINT active_record_1
216
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-06-03 17:37:49.177040"], ["updated_at", "2014-06-03 17:37:49.177040"]]
217
+  (0.1ms) RELEASE SAVEPOINT active_record_1
218
+  (1.2ms) rollback transaction
219
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
220
+  (0.1ms) begin transaction
221
+ ------------------------------------------
222
+ HasIxTest: test_set_ix_should_generate_hex
223
+ ------------------------------------------
224
+  (0.0ms) SAVEPOINT active_record_1
225
+ SQL (0.7ms) INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-06-03 17:38:12.032762"], ["updated_at", "2014-06-03 17:38:12.032762"]]
226
+  (0.1ms) RELEASE SAVEPOINT active_record_1
227
+  (1.5ms) rollback transaction
228
+  (0.1ms) begin transaction
229
+ ------------------
230
+ IxTest: test_truth
231
+ ------------------
232
+  (0.1ms) rollback transaction
233
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
234
+  (0.1ms) begin transaction
235
+ ------------------
236
+ IxTest: test_truth
237
+ ------------------
238
+  (0.0ms) rollback transaction
239
+  (0.0ms) begin transaction
240
+ ------------------------------------------
241
+ HasIxTest: test_set_ix_should_generate_hex
242
+ ------------------------------------------
243
+  (0.0ms) SAVEPOINT active_record_1
244
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-06-03 17:38:25.256512"], ["updated_at", "2014-06-03 17:38:25.256512"]]
245
+  (0.0ms) RELEASE SAVEPOINT active_record_1
246
+  (1.4ms) rollback transaction
247
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
248
+  (0.1ms) begin transaction
249
+ ------------------------------------------
250
+ HasIxTest: test_set_ix_should_generate_hex
251
+ ------------------------------------------
252
+  (0.0ms) SAVEPOINT active_record_1
253
+ User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."ix" = '8c0206b9dba0f996' LIMIT 1
254
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "ix", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-06-03 17:40:10.544138"], ["ix", "8c0206b9dba0f996"], ["updated_at", "2014-06-03 17:40:10.544138"]]
255
+  (0.1ms) RELEASE SAVEPOINT active_record_1
256
+  (0.7ms) rollback transaction
257
+  (0.1ms) begin transaction
258
+ ------------------
259
+ IxTest: test_truth
260
+ ------------------
261
+  (0.0ms) rollback transaction
262
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
263
+  (0.1ms) begin transaction
264
+ ------------------------------------------
265
+ HasIxTest: test_set_ix_should_generate_hex
266
+ ------------------------------------------
267
+  (0.1ms) rollback transaction
268
+  (0.0ms) begin transaction
269
+ ------------------
270
+ IxTest: test_truth
271
+ ------------------
272
+  (0.0ms) rollback transaction
273
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
274
+  (0.1ms) begin transaction
275
+ ------------------------------------------
276
+ HasIxTest: test_set_ix_should_generate_hex
277
+ ------------------------------------------
278
+  (0.0ms) SAVEPOINT active_record_1
279
+ User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."ix" = '8c12c7f3b2fdf199' LIMIT 1
280
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "ix", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-06-03 17:43:13.704069"], ["ix", "8c12c7f3b2fdf199"], ["updated_at", "2014-06-03 17:43:13.704069"]]
281
+  (0.1ms) RELEASE SAVEPOINT active_record_1
282
+  (1.4ms) rollback transaction
283
+  (0.1ms) begin transaction
284
+ ------------------
285
+ IxTest: test_truth
286
+ ------------------
287
+  (0.0ms) rollback transaction
288
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
289
+  (0.1ms) begin transaction
290
+ ------------------
291
+ IxTest: test_truth
292
+ ------------------
293
+  (0.0ms) rollback transaction
294
+  (0.0ms) begin transaction
295
+ --------------------------------------------
296
+ HasIxTest: test_find_ix_should_recall_object
297
+ --------------------------------------------
298
+  (0.0ms) rollback transaction
299
+  (0.0ms) begin transaction
300
+ ------------------------------------------
301
+ HasIxTest: test_set_ix_should_generate_hex
302
+ ------------------------------------------
303
+  (0.0ms) SAVEPOINT active_record_1
304
+ User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."ix" = 'b5bd11ad7766e1a5' LIMIT 1
305
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "ix", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-06-03 17:46:15.831003"], ["ix", "b5bd11ad7766e1a5"], ["updated_at", "2014-06-03 17:46:15.831003"]]
306
+  (0.1ms) RELEASE SAVEPOINT active_record_1
307
+  (1.5ms) rollback transaction
308
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
309
+  (0.1ms) begin transaction
310
+ --------------------------------------------
311
+ HasIxTest: test_find_ix_should_recall_object
312
+ --------------------------------------------
313
+  (0.0ms) SAVEPOINT active_record_1
314
+ User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."ix" = 'b7f3ffb66dd0ba81' LIMIT 1
315
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "ix", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-06-03 17:46:33.354290"], ["ix", "b7f3ffb66dd0ba81"], ["updated_at", "2014-06-03 17:46:33.354290"]]
316
+  (0.1ms) RELEASE SAVEPOINT active_record_1
317
+  (1.2ms) rollback transaction
318
+  (0.1ms) begin transaction
319
+ ------------------------------------------
320
+ HasIxTest: test_set_ix_should_generate_hex
321
+ ------------------------------------------
322
+  (0.0ms) SAVEPOINT active_record_1
323
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."ix" = 'b20b3f1b876660d5' LIMIT 1
324
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "ix", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-06-03 17:46:33.369200"], ["ix", "b20b3f1b876660d5"], ["updated_at", "2014-06-03 17:46:33.369200"]]
325
+  (0.0ms) RELEASE SAVEPOINT active_record_1
326
+  (0.5ms) rollback transaction
327
+  (0.0ms) begin transaction
328
+ ------------------
329
+ IxTest: test_truth
330
+ ------------------
331
+  (0.0ms) rollback transaction
332
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
333
+  (0.1ms) begin transaction
334
+ --------------------------------------------
335
+ HasIxTest: test_find_ix_should_recall_object
336
+ --------------------------------------------
337
+  (0.0ms) SAVEPOINT active_record_1
338
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."ix" = 'e5c9fbe34d4c62a5' LIMIT 1
339
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "ix", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-06-03 17:47:10.490707"], ["ix", "e5c9fbe34d4c62a5"], ["updated_at", "2014-06-03 17:47:10.490707"]]
340
+  (0.1ms) RELEASE SAVEPOINT active_record_1
341
+  (1.5ms) rollback transaction
342
+  (0.1ms) begin transaction
343
+ ------------------------------------------
344
+ HasIxTest: test_set_ix_should_generate_hex
345
+ ------------------------------------------
346
+  (0.1ms) SAVEPOINT active_record_1
347
+ User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."ix" = 'ce7a44ec17577766' LIMIT 1
348
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "ix", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-06-03 17:47:10.506668"], ["ix", "ce7a44ec17577766"], ["updated_at", "2014-06-03 17:47:10.506668"]]
349
+  (0.1ms) RELEASE SAVEPOINT active_record_1
350
+  (0.6ms) rollback transaction
351
+  (0.1ms) begin transaction
352
+ ------------------
353
+ IxTest: test_truth
354
+ ------------------
355
+  (0.0ms) rollback transaction
356
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
357
+  (0.1ms) begin transaction
358
+ ------------------
359
+ IxTest: test_truth
360
+ ------------------
361
+  (0.0ms) rollback transaction
362
+  (0.0ms) begin transaction
363
+ --------------------------------------------
364
+ HasIxTest: test_find_ix_should_recall_object
365
+ --------------------------------------------
366
+  (0.0ms) SAVEPOINT active_record_1
367
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."ix" = 'eaf3b4862e913155' LIMIT 1
368
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "ix", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-06-03 17:47:56.389378"], ["ix", "eaf3b4862e913155"], ["updated_at", "2014-06-03 17:47:56.389378"]]
369
+  (0.1ms) RELEASE SAVEPOINT active_record_1
370
+  (1.5ms) rollback transaction
371
+  (0.1ms) begin transaction
372
+ ------------------------------------------
373
+ HasIxTest: test_set_ix_should_generate_hex
374
+ ------------------------------------------
375
+  (0.1ms) SAVEPOINT active_record_1
376
+ User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."ix" = '4b81396f522e5597' LIMIT 1
377
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "ix", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-06-03 17:47:56.405182"], ["ix", "4b81396f522e5597"], ["updated_at", "2014-06-03 17:47:56.405182"]]
378
+  (0.1ms) RELEASE SAVEPOINT active_record_1
379
+  (0.5ms) rollback transaction
380
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
381
+  (0.1ms) begin transaction
382
+ ------------------
383
+ IxTest: test_truth
384
+ ------------------
385
+  (0.0ms) rollback transaction
386
+  (0.0ms) begin transaction
387
+ --------------------------------------------
388
+ HasIxTest: test_find_ix_should_recall_object
389
+ --------------------------------------------
390
+  (0.0ms) SAVEPOINT active_record_1
391
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."ix" = '0fbff1135d2b1a3d' LIMIT 1
392
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "ix", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-06-03 17:48:41.513855"], ["ix", "0fbff1135d2b1a3d"], ["updated_at", "2014-06-03 17:48:41.513855"]]
393
+  (0.1ms) RELEASE SAVEPOINT active_record_1
394
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."ix" = '0fbff1135d2b1a3d' LIMIT 1
395
+  (1.4ms) rollback transaction
396
+  (0.1ms) begin transaction
397
+ ------------------------------------------
398
+ HasIxTest: test_set_ix_should_generate_hex
399
+ ------------------------------------------
400
+  (0.1ms) SAVEPOINT active_record_1
401
+ User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."ix" = 'c1233a0c27509136' LIMIT 1
402
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "ix", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-06-03 17:48:41.530866"], ["ix", "c1233a0c27509136"], ["updated_at", "2014-06-03 17:48:41.530866"]]
403
+  (0.1ms) RELEASE SAVEPOINT active_record_1
404
+  (0.5ms) rollback transaction
405
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
406
+  (0.1ms) begin transaction
407
+ ------------------
408
+ IxTest: test_truth
409
+ ------------------
410
+  (0.0ms) rollback transaction
411
+  (0.0ms) begin transaction
412
+ --------------------------------------------
413
+ HasIxTest: test_find_ix_should_recall_object
414
+ --------------------------------------------
415
+  (0.0ms) SAVEPOINT active_record_1
416
+ User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."ix" = '3c79adf8611a' LIMIT 1
417
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "ix", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-06-03 17:52:51.008620"], ["ix", "3c79adf8611a"], ["updated_at", "2014-06-03 17:52:51.008620"]]
418
+  (0.1ms) RELEASE SAVEPOINT active_record_1
419
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."ix" = '3c79adf8611a' LIMIT 1
420
+  (1.5ms) rollback transaction
421
+  (0.1ms) begin transaction
422
+ ------------------------------------------
423
+ HasIxTest: test_set_ix_should_generate_hex
424
+ ------------------------------------------
425
+  (0.1ms) SAVEPOINT active_record_1
426
+ User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."ix" = '73903c58ccf7' LIMIT 1
427
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "ix", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-06-03 17:52:51.025944"], ["ix", "73903c58ccf7"], ["updated_at", "2014-06-03 17:52:51.025944"]]
428
+  (0.1ms) RELEASE SAVEPOINT active_record_1
429
+  (0.7ms) rollback transaction
430
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
431
+  (0.1ms) begin transaction
432
+ --------------------------------------------
433
+ HasIxTest: test_find_ix_should_recall_object
434
+ --------------------------------------------
435
+  (0.0ms) SAVEPOINT active_record_1
436
+ User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."ix" = 'ea1e9b0abd76' LIMIT 1
437
+ SQL (0.5ms) INSERT INTO "users" ("created_at", "ix", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-06-03 17:53:47.753691"], ["ix", "ea1e9b0abd76"], ["updated_at", "2014-06-03 17:53:47.753691"]]
438
+  (0.2ms) RELEASE SAVEPOINT active_record_1
439
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."ix" = 'ea1e9b0abd76' LIMIT 1
440
+  (1.5ms) rollback transaction
441
+  (0.1ms) begin transaction
442
+ ------------------------------------------
443
+ HasIxTest: test_set_ix_should_generate_hex
444
+ ------------------------------------------
445
+  (0.1ms) SAVEPOINT active_record_1
446
+ User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."ix" = '5e8db777d790' LIMIT 1
447
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "ix", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-06-03 17:53:47.776327"], ["ix", "5e8db777d790"], ["updated_at", "2014-06-03 17:53:47.776327"]]
448
+  (0.1ms) RELEASE SAVEPOINT active_record_1
449
+  (0.5ms) rollback transaction
450
+  (0.1ms) begin transaction
451
+ ------------------
452
+ IxTest: test_truth
453
+ ------------------
454
+  (0.1ms) rollback transaction
455
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
456
+  (0.1ms) begin transaction
457
+ --------------------------------------------
458
+ HasIxTest: test_find_ix_should_recall_object
459
+ --------------------------------------------
460
+  (0.0ms) SAVEPOINT active_record_1
461
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."ix" = 'af409894fdb2' LIMIT 1
462
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "ix", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-06-03 17:55:19.044476"], ["ix", "af409894fdb2"], ["updated_at", "2014-06-03 17:55:19.044476"]]
463
+  (0.1ms) RELEASE SAVEPOINT active_record_1
464
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."ix" = 'af409894fdb2' LIMIT 1
465
+  (1.2ms) rollback transaction
466
+  (0.1ms) begin transaction
467
+ ------------------------------------------
468
+ HasIxTest: test_set_ix_should_generate_hex
469
+ ------------------------------------------
470
+  (0.1ms) SAVEPOINT active_record_1
471
+ User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."ix" = 'a2e23f00682f' LIMIT 1
472
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "ix", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-06-03 17:55:19.060783"], ["ix", "a2e23f00682f"], ["updated_at", "2014-06-03 17:55:19.060783"]]
473
+  (0.1ms) RELEASE SAVEPOINT active_record_1
474
+  (0.6ms) rollback transaction
475
+  (0.1ms) begin transaction
476
+ ------------------
477
+ IxTest: test_truth
478
+ ------------------
479
+  (0.1ms) rollback transaction
480
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
481
+  (0.1ms) begin transaction
482
+ ------------------
483
+ IxTest: test_truth
484
+ ------------------
485
+  (0.0ms) rollback transaction
486
+  (0.0ms) begin transaction
487
+ --------------------------------------------
488
+ HasIxTest: test_find_ix_should_recall_object
489
+ --------------------------------------------
490
+  (0.0ms) SAVEPOINT active_record_1
491
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."ix" = 'c02df4958f43' LIMIT 1
492
+ SQL (0.6ms) INSERT INTO "users" ("created_at", "ix", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-06-03 17:55:51.462389"], ["ix", "c02df4958f43"], ["updated_at", "2014-06-03 17:55:51.462389"]]
493
+  (0.1ms) RELEASE SAVEPOINT active_record_1
494
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."ix" = 'c02df4958f43' LIMIT 1
495
+  (1.4ms) rollback transaction
496
+  (0.1ms) begin transaction
497
+ ------------------------------------------
498
+ HasIxTest: test_set_ix_should_generate_hex
499
+ ------------------------------------------
500
+  (0.0ms) SAVEPOINT active_record_1
501
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."ix" = '8c7c4bd2ff89' LIMIT 1
502
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "ix", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-06-03 17:55:51.478378"], ["ix", "8c7c4bd2ff89"], ["updated_at", "2014-06-03 17:55:51.478378"]]
503
+  (0.0ms) RELEASE SAVEPOINT active_record_1
504
+  (0.5ms) rollback transaction
505
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
506
+  (0.1ms) begin transaction
507
+ --------------------------------------------
508
+ HasIxTest: test_find_ix_should_recall_object
509
+ --------------------------------------------
510
+  (0.0ms) SAVEPOINT active_record_1
511
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."ix" = 'd24566' LIMIT 1
512
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "ix", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-06-03 17:58:57.553507"], ["ix", "d24566"], ["updated_at", "2014-06-03 17:58:57.553507"]]
513
+  (0.1ms) RELEASE SAVEPOINT active_record_1
514
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."ix" = 'd24566' LIMIT 1
515
+  (7.6ms) rollback transaction
516
+  (0.1ms) begin transaction
517
+ ------------------------------------------
518
+ HasIxTest: test_set_ix_should_generate_hex
519
+ ------------------------------------------
520
+  (0.1ms) SAVEPOINT active_record_1
521
+ User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."ix" = 'c8108d' LIMIT 1
522
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "ix", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-06-03 17:58:57.576723"], ["ix", "c8108d"], ["updated_at", "2014-06-03 17:58:57.576723"]]
523
+  (0.1ms) RELEASE SAVEPOINT active_record_1
524
+  (0.6ms) rollback transaction
525
+  (0.1ms) begin transaction
526
+ ------------------
527
+ IxTest: test_truth
528
+ ------------------
529
+  (0.0ms) rollback transaction
530
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
531
+  (0.1ms) begin transaction
532
+ --------------------------------------------
533
+ HasIxTest: test_find_ix_should_recall_object
534
+ --------------------------------------------
535
+  (0.0ms) SAVEPOINT active_record_1
536
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."ix" = '5c8f0445' LIMIT 1
537
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "ix", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-06-03 17:59:10.166464"], ["ix", "5c8f0445"], ["updated_at", "2014-06-03 17:59:10.166464"]]
538
+  (0.0ms) RELEASE SAVEPOINT active_record_1
539
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."ix" = '5c8f0445' LIMIT 1
540
+  (1.3ms) rollback transaction
541
+  (0.1ms) begin transaction
542
+ ------------------------------------------
543
+ HasIxTest: test_set_ix_should_generate_hex
544
+ ------------------------------------------
545
+  (0.0ms) SAVEPOINT active_record_1
546
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."ix" = 'afaeaf52' LIMIT 1
547
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "ix", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-06-03 17:59:10.182198"], ["ix", "afaeaf52"], ["updated_at", "2014-06-03 17:59:10.182198"]]
548
+  (0.0ms) RELEASE SAVEPOINT active_record_1
549
+  (0.5ms) rollback transaction
550
+  (0.0ms) begin transaction
551
+ ------------------
552
+ IxTest: test_truth
553
+ ------------------
554
+  (0.0ms) rollback transaction