fabricators 0.0.4 → 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 (37) hide show
  1. checksums.yaml +4 -4
  2. data/README.rdoc +34 -26
  3. data/lib/fabricators.rb +26 -12
  4. data/lib/fabricators/callbacks.rb +1 -1
  5. data/lib/fabricators/configuration.rb +10 -0
  6. data/lib/fabricators/definitions.rb +5 -20
  7. data/lib/fabricators/fabricator.rb +13 -4
  8. data/lib/fabricators/{reader.rb → fetcher.rb} +2 -2
  9. data/lib/fabricators/methods.rb +1 -1
  10. data/lib/fabricators/proxy.rb +12 -5
  11. data/lib/fabricators/railtie.rb +1 -1
  12. data/lib/fabricators/{attribute.rb → sequence.rb} +3 -3
  13. data/lib/fabricators/version.rb +1 -1
  14. data/test/aliases_test.rb +4 -10
  15. data/test/associations_test.rb +2 -2
  16. data/test/attributes_test.rb +6 -16
  17. data/test/callbacks_test.rb +5 -3
  18. data/test/dependent_test.rb +9 -5
  19. data/test/dummy/db/migrate/20140613221835_create_users.rb +3 -0
  20. data/test/dummy/db/migrate/20140615180954_create_posts.rb +1 -0
  21. data/test/dummy/db/schema.rb +5 -11
  22. data/test/dummy/log/development.log +15 -0
  23. data/test/dummy/log/test.log +2711 -0
  24. data/test/dummy/test/fabricators/people.rb +2 -0
  25. data/test/fabricators_test.rb +2 -2
  26. data/test/generators_test.rb +2 -2
  27. data/test/inheritance_test.rb +1 -1
  28. data/test/lists_test.rb +2 -2
  29. data/test/load_test.rb +1 -1
  30. data/test/merges_test.rb +3 -3
  31. data/test/test_helper.rb +1 -1
  32. metadata +8 -15
  33. data/test/dummy/db/migrate/20140615152257_add_age_to_users.rb +0 -5
  34. data/test/dummy/db/migrate/20140615175509_add_phone_to_users.rb +0 -5
  35. data/test/dummy/db/migrate/20140615180938_create_groups.rb +0 -9
  36. data/test/dummy/db/migrate/20140615181030_add_group_id_to_users.rb +0 -5
  37. data/test/dummy/db/migrate/20140615181051_add_user_id_to_posts.rb +0 -5
@@ -27,7 +27,7 @@ class AssociationsTest < ActiveSupport::TestCase
27
27
  user = build(:post_with_built_user).user
28
28
  assert_kind_of User, user
29
29
  assert user.new_record?
30
-
30
+
31
31
  user = build(:post_with_created_user).user
32
32
  assert_kind_of User, user
33
33
  assert user.persisted?
@@ -39,7 +39,7 @@ class AssociationsTest < ActiveSupport::TestCase
39
39
  post = posts.first
40
40
  assert_kind_of Post, post
41
41
  assert post.new_record?
42
-
42
+
43
43
  posts = build(:user_with_created_posts).posts
44
44
  assert_equal 2, posts.size
45
45
  post = posts.first
@@ -1,36 +1,26 @@
1
1
  require 'test_helper'
2
2
 
3
3
  class AttributesTest < ActiveSupport::TestCase
4
-
4
+
5
5
  setup do
6
6
  Fabricators.define do
7
- attribute(:name) { 'name' }
8
- attribute(:email) { |n| "mail#{n}@example.com" }
9
- attribute(:age)
10
7
  fabricator :user do
11
- name
12
- age
13
- email
8
+ sequence(:email) { |n| "mail#{n}@example.com" }
9
+ sequence(:age)
14
10
  end
15
11
  end
16
12
  end
17
13
 
18
- test "static generator" do
19
- assert_equal 'name', attributes_for(:user)[:name]
20
- assert_equal 'name', build(:user).name
21
- assert_equal 'name', create(:user).name
22
- end
23
-
24
- test "block generator" do
14
+ test "block sequence" do
25
15
  assert_equal 'mail1@example.com', attributes_for(:user)[:email]
26
16
  assert_equal 'mail2@example.com', build(:user).email
27
17
  assert_equal 'mail3@example.com', create(:user).email
28
18
  end
29
19
 
30
- test "number generator" do
20
+ test "numeric sequence" do
31
21
  assert_equal 1, attributes_for(:user)[:age]
32
22
  assert_equal 2, build(:user).age
33
23
  assert_equal 3, create(:user).age
34
24
  end
35
-
25
+
36
26
  end
@@ -3,11 +3,13 @@ require 'test_helper'
3
3
  class CallbacksTest < ActiveSupport::TestCase
4
4
 
5
5
  setup do
6
- Fabricators.define do
6
+ Fabricators.configure do
7
7
  before(:build) { |u| u.email = 'build@example.com' }
8
8
  after(:build) { |u| u.phone = 1 }
9
9
  before(:create) { |u| u.email = 'create@example.com' }
10
10
  after(:create) { |u| u.phone = 2 }
11
+ end
12
+ Fabricators.define do
11
13
  fabricator :user do
12
14
  before(:build) { |u| u.name = 'build' }
13
15
  after(:build) { |u| u.age = 1 }
@@ -16,7 +18,7 @@ class CallbacksTest < ActiveSupport::TestCase
16
18
  end
17
19
  end
18
20
  end
19
-
21
+
20
22
  test "build callbacks" do
21
23
  user = build(:user)
22
24
  assert_equal 'build@example.com', user.email
@@ -24,7 +26,7 @@ class CallbacksTest < ActiveSupport::TestCase
24
26
  assert_equal 'build', user.name
25
27
  assert_equal 1, user.age
26
28
  end
27
-
29
+
28
30
  test "create callbacks" do
29
31
  user = create(:user)
30
32
  assert_equal 'create@example.com', user.email
@@ -1,25 +1,29 @@
1
1
  require 'test_helper'
2
2
 
3
3
  class DependentTest < ActiveSupport::TestCase
4
-
4
+
5
5
  setup do
6
6
  Fabricators.define do
7
7
  fabricator :user do
8
- name 'name'
9
8
  email { "#{name}@example.com" }
9
+ sequence(:username) { |n| "#{name}-#{n}" }
10
+ name 'name'
10
11
  end
11
12
  end
12
13
  end
13
-
14
+
14
15
  test "return attributes" do
16
+ assert_equal 'name-1', attributes_for(:user)[:username]
15
17
  assert_equal 'name@example.com', attributes_for(:user)[:email]
16
18
  end
17
-
19
+
18
20
  test "build instance" do
21
+ assert_equal 'name-1', build(:user).username
19
22
  assert_equal 'name@example.com', build(:user).email
20
23
  end
21
-
24
+
22
25
  test "create instance" do
26
+ assert_equal 'name-1', create(:user).username
23
27
  assert_equal 'name@example.com', create(:user).email
24
28
  end
25
29
 
@@ -1,8 +1,11 @@
1
1
  class CreateUsers < ActiveRecord::Migration
2
2
  def change
3
3
  create_table :users do |t|
4
+ t.string :username
4
5
  t.string :name
5
6
  t.string :email
7
+ t.integer :age
8
+ t.integer :phone
6
9
 
7
10
  t.timestamps
8
11
  end
@@ -2,6 +2,7 @@ class CreatePosts < ActiveRecord::Migration
2
2
  def change
3
3
  create_table :posts do |t|
4
4
  t.string :content
5
+ t.integer :user_id
5
6
 
6
7
  t.timestamps
7
8
  end
@@ -11,29 +11,23 @@
11
11
  #
12
12
  # It's strongly recommended that you check this file into your version control system.
13
13
 
14
- ActiveRecord::Schema.define(version: 20140615181051) do
15
-
16
- create_table "groups", force: true do |t|
17
- t.string "name"
18
- t.datetime "created_at"
19
- t.datetime "updated_at"
20
- end
14
+ ActiveRecord::Schema.define(version: 20140615180954) do
21
15
 
22
16
  create_table "posts", force: true do |t|
23
17
  t.string "content"
18
+ t.integer "user_id"
24
19
  t.datetime "created_at"
25
20
  t.datetime "updated_at"
26
- t.integer "user_id"
27
21
  end
28
22
 
29
23
  create_table "users", force: true do |t|
24
+ t.string "username"
30
25
  t.string "name"
31
26
  t.string "email"
32
- t.datetime "created_at"
33
- t.datetime "updated_at"
34
27
  t.integer "age"
35
28
  t.integer "phone"
36
- t.integer "group_id"
29
+ t.datetime "created_at"
30
+ t.datetime "updated_at"
37
31
  end
38
32
 
39
33
  end
@@ -0,0 +1,15 @@
1
+  (2.6ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
2
+  (0.1ms) select sqlite_version(*)
3
+  (0.8ms) 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 (20140613221835)
6
+  (0.1ms) begin transaction
7
+  (0.4ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "username" varchar(255), "name" varchar(255), "email" varchar(255), "age" integer, "phone" integer, "created_at" datetime, "updated_at" datetime)
8
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140613221835"]]
9
+  (0.8ms) commit transaction
10
+ Migrating to CreatePosts (20140615180954)
11
+  (0.0ms) begin transaction
12
+  (0.3ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "content" varchar(255), "user_id" integer, "created_at" datetime, "updated_at" datetime)
13
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140615180954"]]
14
+  (1.1ms) commit transaction
15
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
@@ -19840,3 +19840,2714 @@ AliasesTest: test_fabricator_aliases
19840
19840
  AliasesTest: test_generator_aliases
19841
19841
  -----------------------------------
19842
19842
   (0.0ms) rollback transaction
19843
+  (0.3ms) CREATE TABLE "groups" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime, "updated_at" datetime) 
19844
+  (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "content" varchar(255), "created_at" datetime, "updated_at" datetime, "user_id" integer)
19845
+  (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "created_at" datetime, "updated_at" datetime, "age" integer, "phone" integer, "group_id" integer) 
19846
+  (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
19847
+  (0.1ms) select sqlite_version(*)
19848
+  (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
19849
+  (0.1ms) SELECT version FROM "schema_migrations"
19850
+  (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20140615181051')
19851
+  (0.1ms) begin transaction
19852
+ ---------------------------------------------
19853
+ AssociationsTest: test_belongs_to_association
19854
+ ---------------------------------------------
19855
+  (0.1ms) rollback transaction
19856
+  (0.0ms) begin transaction
19857
+ -------------------------------------------
19858
+ AssociationsTest: test_has_many_association
19859
+ -------------------------------------------
19860
+  (0.1ms) rollback transaction
19861
+  (0.0ms) begin transaction
19862
+ -----------------------------------
19863
+ CallbacksTest: test_build_callbacks
19864
+ -----------------------------------
19865
+  (0.0ms) rollback transaction
19866
+  (0.1ms) begin transaction
19867
+ ------------------------------------
19868
+ CallbacksTest: test_create_callbacks
19869
+ ------------------------------------
19870
+  (0.0ms) rollback transaction
19871
+  (0.0ms) begin transaction
19872
+ -------------------------
19873
+ LoadTest: test_find_files
19874
+ -------------------------
19875
+  (0.0ms) rollback transaction
19876
+  (0.1ms) begin transaction
19877
+ -------------------------------
19878
+ MergesTest: test_build_instance
19879
+ -------------------------------
19880
+  (0.0ms) rollback transaction
19881
+  (0.0ms) begin transaction
19882
+ --------------------------------
19883
+ MergesTest: test_create_instance
19884
+ --------------------------------
19885
+  (0.0ms) rollback transaction
19886
+  (0.1ms) begin transaction
19887
+ ----------------------------------
19888
+ MergesTest: test_return_attributes
19889
+ ----------------------------------
19890
+  (0.0ms) rollback transaction
19891
+  (0.0ms) begin transaction
19892
+ -------------------------------------
19893
+ CleanTest: test_clean_records_created
19894
+ -------------------------------------
19895
+  (0.0ms) rollback transaction
19896
+  (0.0ms) begin transaction
19897
+ ------------------------------------
19898
+ GeneratorsTest: test_file_generation
19899
+ ------------------------------------
19900
+  (0.1ms) rollback transaction
19901
+  (0.1ms) begin transaction
19902
+ ------------------------------------
19903
+ FabricatorsTest: test_build_instance
19904
+ ------------------------------------
19905
+  (0.0ms) rollback transaction
19906
+  (0.0ms) begin transaction
19907
+ -------------------------------------
19908
+ FabricatorsTest: test_create_instance
19909
+ -------------------------------------
19910
+  (0.1ms) rollback transaction
19911
+  (0.1ms) begin transaction
19912
+ ---------------------------------------
19913
+ FabricatorsTest: test_return_attributes
19914
+ ---------------------------------------
19915
+  (0.0ms) rollback transaction
19916
+  (0.0ms) begin transaction
19917
+ -------------------------
19918
+ AliasesTest: test_aliases
19919
+ -------------------------
19920
+  (0.0ms) rollback transaction
19921
+  (0.0ms) begin transaction
19922
+ ------------------------------------
19923
+ InheritanceTest: test_build_instance
19924
+ ------------------------------------
19925
+  (0.0ms) rollback transaction
19926
+  (0.0ms) begin transaction
19927
+ -------------------------------------
19928
+ InheritanceTest: test_create_instance
19929
+ -------------------------------------
19930
+  (0.0ms) rollback transaction
19931
+  (0.0ms) begin transaction
19932
+ ---------------------------------------
19933
+ InheritanceTest: test_return_attributes
19934
+ ---------------------------------------
19935
+  (0.0ms) rollback transaction
19936
+  (0.1ms) begin transaction
19937
+ --------------------------
19938
+ ListsTest: test_build_list
19939
+ --------------------------
19940
+  (0.0ms) rollback transaction
19941
+  (0.0ms) begin transaction
19942
+ ---------------------------
19943
+ ListsTest: test_create_list
19944
+ ---------------------------
19945
+  (0.0ms) rollback transaction
19946
+  (0.1ms) begin transaction
19947
+ ----------------------------------
19948
+ DependentTest: test_build_instance
19949
+ ----------------------------------
19950
+  (0.1ms) rollback transaction
19951
+  (0.0ms) begin transaction
19952
+ -----------------------------------
19953
+ DependentTest: test_create_instance
19954
+ -----------------------------------
19955
+  (0.0ms) rollback transaction
19956
+  (0.0ms) begin transaction
19957
+ -------------------------------------
19958
+ DependentTest: test_return_attributes
19959
+ -------------------------------------
19960
+  (0.0ms) rollback transaction
19961
+  (0.0ms) begin transaction
19962
+ -----------------------------------
19963
+ AttributesTest: test_block_sequence
19964
+ -----------------------------------
19965
+  (0.0ms) rollback transaction
19966
+  (0.0ms) begin transaction
19967
+ -------------------------------------
19968
+ AttributesTest: test_numeric_sequence
19969
+ -------------------------------------
19970
+  (0.0ms) rollback transaction
19971
+  (0.3ms) CREATE TABLE "groups" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime, "updated_at" datetime) 
19972
+  (0.1ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "content" varchar(255), "created_at" datetime, "updated_at" datetime, "user_id" integer)
19973
+  (0.1ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "created_at" datetime, "updated_at" datetime, "age" integer, "phone" integer, "group_id" integer) 
19974
+  (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
19975
+  (0.1ms) select sqlite_version(*)
19976
+  (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
19977
+  (0.0ms) SELECT version FROM "schema_migrations"
19978
+  (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20140615181051')
19979
+  (0.1ms) begin transaction
19980
+ ------------------------------------
19981
+ FabricatorsTest: test_build_instance
19982
+ ------------------------------------
19983
+  (0.1ms) rollback transaction
19984
+  (0.0ms) begin transaction
19985
+ -------------------------------------
19986
+ FabricatorsTest: test_create_instance
19987
+ -------------------------------------
19988
+  (0.0ms) SAVEPOINT active_record_1
19989
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-06-25 18:30:06.444112"], ["name", "name"], ["updated_at", "2014-06-25 18:30:06.444112"]]
19990
+  (0.0ms) RELEASE SAVEPOINT active_record_1
19991
+  (0.0ms) SAVEPOINT active_record_1
19992
+ SQL (0.1ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 1]]
19993
+  (0.0ms) RELEASE SAVEPOINT active_record_1
19994
+  (0.1ms) rollback transaction
19995
+  (0.0ms) begin transaction
19996
+ ---------------------------------------
19997
+ FabricatorsTest: test_return_attributes
19998
+ ---------------------------------------
19999
+  (0.1ms) rollback transaction
20000
+  (0.0ms) begin transaction
20001
+ -------------------------
20002
+ LoadTest: test_find_files
20003
+ -------------------------
20004
+  (0.0ms) rollback transaction
20005
+  (0.0ms) begin transaction
20006
+ ----------------------------------
20007
+ DependentTest: test_build_instance
20008
+ ----------------------------------
20009
+  (0.0ms) rollback transaction
20010
+  (0.1ms) begin transaction
20011
+ -----------------------------------
20012
+ DependentTest: test_create_instance
20013
+ -----------------------------------
20014
+  (0.0ms) SAVEPOINT active_record_1
20015
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", "2014-06-25 18:30:06.452822"], ["email", "name@example.com"], ["name", "name"], ["updated_at", "2014-06-25 18:30:06.452822"]]
20016
+  (0.0ms) RELEASE SAVEPOINT active_record_1
20017
+  (0.0ms) SAVEPOINT active_record_1
20018
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 1]]
20019
+  (0.0ms) RELEASE SAVEPOINT active_record_1
20020
+  (0.0ms) rollback transaction
20021
+  (0.0ms) begin transaction
20022
+ -------------------------------------
20023
+ DependentTest: test_return_attributes
20024
+ -------------------------------------
20025
+  (0.0ms) rollback transaction
20026
+  (0.0ms) begin transaction
20027
+ -----------------------------------
20028
+ AttributesTest: test_block_sequence
20029
+ -----------------------------------
20030
+  (0.0ms) SAVEPOINT active_record_1
20031
+ SQL (0.1ms) INSERT INTO "users" ("age", "created_at", "email", "updated_at") VALUES (?, ?, ?, ?) [["age", 3], ["created_at", "2014-06-25 18:30:06.456238"], ["email", "mail3@example.com"], ["updated_at", "2014-06-25 18:30:06.456238"]]
20032
+  (0.0ms) RELEASE SAVEPOINT active_record_1
20033
+  (0.0ms) SAVEPOINT active_record_1
20034
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 1]]
20035
+  (0.0ms) RELEASE SAVEPOINT active_record_1
20036
+  (0.0ms) rollback transaction
20037
+  (0.0ms) begin transaction
20038
+ -------------------------------------
20039
+ AttributesTest: test_numeric_sequence
20040
+ -------------------------------------
20041
+  (0.0ms) SAVEPOINT active_record_1
20042
+ SQL (0.0ms) INSERT INTO "users" ("age", "created_at", "email", "updated_at") VALUES (?, ?, ?, ?) [["age", 3], ["created_at", "2014-06-25 18:30:06.458287"], ["email", "mail3@example.com"], ["updated_at", "2014-06-25 18:30:06.458287"]]
20043
+  (0.0ms) RELEASE SAVEPOINT active_record_1
20044
+  (0.0ms) SAVEPOINT active_record_1
20045
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 1]]
20046
+  (0.0ms) RELEASE SAVEPOINT active_record_1
20047
+  (0.0ms) rollback transaction
20048
+  (0.0ms) begin transaction
20049
+ -------------------------------
20050
+ MergesTest: test_build_instance
20051
+ -------------------------------
20052
+  (0.0ms) rollback transaction
20053
+  (0.0ms) begin transaction
20054
+ --------------------------------
20055
+ MergesTest: test_create_instance
20056
+ --------------------------------
20057
+  (0.0ms) SAVEPOINT active_record_1
20058
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-06-25 18:30:06.461395"], ["name", "other"], ["updated_at", "2014-06-25 18:30:06.461395"]]
20059
+  (0.0ms) RELEASE SAVEPOINT active_record_1
20060
+  (0.0ms) SAVEPOINT active_record_1
20061
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-06-25 18:30:06.462318"], ["name", "other"], ["updated_at", "2014-06-25 18:30:06.462318"]]
20062
+  (0.0ms) RELEASE SAVEPOINT active_record_1
20063
+  (0.0ms) SAVEPOINT active_record_1
20064
+ SQL (0.0ms) INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-06-25 18:30:06.463216"], ["name", "other"], ["updated_at", "2014-06-25 18:30:06.463216"]]
20065
+  (0.0ms) RELEASE SAVEPOINT active_record_1
20066
+  (0.0ms) SAVEPOINT active_record_1
20067
+ SQL (0.0ms) INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-06-25 18:30:06.464042"], ["name", "other"], ["updated_at", "2014-06-25 18:30:06.464042"]]
20068
+  (0.0ms) RELEASE SAVEPOINT active_record_1
20069
+  (0.0ms) SAVEPOINT active_record_1
20070
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 4]]
20071
+  (0.0ms) RELEASE SAVEPOINT active_record_1
20072
+  (0.0ms) SAVEPOINT active_record_1
20073
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 3]]
20074
+  (0.0ms) RELEASE SAVEPOINT active_record_1
20075
+  (0.0ms) SAVEPOINT active_record_1
20076
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 2]]
20077
+  (0.1ms) RELEASE SAVEPOINT active_record_1
20078
+  (0.1ms) SAVEPOINT active_record_1
20079
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 1]]
20080
+  (0.0ms) RELEASE SAVEPOINT active_record_1
20081
+  (0.0ms) rollback transaction
20082
+  (0.1ms) begin transaction
20083
+ ----------------------------------
20084
+ MergesTest: test_return_attributes
20085
+ ----------------------------------
20086
+  (0.1ms) rollback transaction
20087
+  (0.0ms) begin transaction
20088
+ -----------------------------------
20089
+ CallbacksTest: test_build_callbacks
20090
+ -----------------------------------
20091
+  (0.0ms) rollback transaction
20092
+  (0.1ms) begin transaction
20093
+ ------------------------------------
20094
+ CallbacksTest: test_create_callbacks
20095
+ ------------------------------------
20096
+  (0.0ms) SAVEPOINT active_record_1
20097
+ SQL (0.1ms) INSERT INTO "users" ("age", "created_at", "email", "name", "phone", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["age", 1], ["created_at", "2014-06-25 18:30:06.469437"], ["email", "create@example.com"], ["name", "create"], ["phone", 1], ["updated_at", "2014-06-25 18:30:06.469437"]]
20098
+  (0.0ms) RELEASE SAVEPOINT active_record_1
20099
+  (0.0ms) SAVEPOINT active_record_1
20100
+ SQL (0.1ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 1]]
20101
+  (0.0ms) RELEASE SAVEPOINT active_record_1
20102
+  (0.0ms) rollback transaction
20103
+  (0.0ms) begin transaction
20104
+ ---------------------------------------------
20105
+ AssociationsTest: test_belongs_to_association
20106
+ ---------------------------------------------
20107
+  (0.1ms) rollback transaction
20108
+  (0.0ms) begin transaction
20109
+ -------------------------------------------
20110
+ AssociationsTest: test_has_many_association
20111
+ -------------------------------------------
20112
+  (0.0ms) rollback transaction
20113
+  (0.0ms) begin transaction
20114
+ ------------------------------------
20115
+ InheritanceTest: test_build_instance
20116
+ ------------------------------------
20117
+  (0.0ms) rollback transaction
20118
+  (0.0ms) begin transaction
20119
+ -------------------------------------
20120
+ InheritanceTest: test_create_instance
20121
+ -------------------------------------
20122
+  (0.0ms) SAVEPOINT active_record_1
20123
+ SQL (0.1ms) INSERT INTO "users" ("age", "created_at", "email", "name", "phone", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["age", 9], ["created_at", "2014-06-25 18:30:06.482657"], ["email", "create@example.com"], ["name", "name"], ["phone", 1], ["updated_at", "2014-06-25 18:30:06.482657"]]
20124
+  (0.0ms) RELEASE SAVEPOINT active_record_1
20125
+  (0.0ms) SAVEPOINT active_record_1
20126
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "phone", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", "2014-06-25 18:30:06.484205"], ["email", "create@example.com"], ["name", "name"], ["phone", 1], ["updated_at", "2014-06-25 18:30:06.484205"]]
20127
+  (0.0ms) RELEASE SAVEPOINT active_record_1
20128
+  (0.2ms) SAVEPOINT active_record_1
20129
+ SQL (0.1ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 2]]
20130
+  (0.1ms) RELEASE SAVEPOINT active_record_1
20131
+  (0.1ms) SAVEPOINT active_record_1
20132
+ SQL (0.1ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 1]]
20133
+  (0.1ms) RELEASE SAVEPOINT active_record_1
20134
+  (0.1ms) rollback transaction
20135
+  (0.1ms) begin transaction
20136
+ ---------------------------------------
20137
+ InheritanceTest: test_return_attributes
20138
+ ---------------------------------------
20139
+  (0.1ms) rollback transaction
20140
+  (0.0ms) begin transaction
20141
+ ------------------------------------
20142
+ GeneratorsTest: test_file_generation
20143
+ ------------------------------------
20144
+  (0.1ms) rollback transaction
20145
+  (0.0ms) begin transaction
20146
+ -------------------------------------
20147
+ CleanTest: test_clean_records_created
20148
+ -------------------------------------
20149
+  (0.0ms) SAVEPOINT active_record_1
20150
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "phone", "updated_at") VALUES (?, ?, ?, ?) [["created_at", "2014-06-25 18:30:06.526754"], ["email", "create@example.com"], ["phone", 1], ["updated_at", "2014-06-25 18:30:06.526754"]]
20151
+  (0.1ms) RELEASE SAVEPOINT active_record_1
20152
+  (0.0ms) SAVEPOINT active_record_1
20153
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "phone", "updated_at") VALUES (?, ?, ?, ?) [["created_at", "2014-06-25 18:30:06.528217"], ["email", "create@example.com"], ["phone", 1], ["updated_at", "2014-06-25 18:30:06.528217"]]
20154
+  (0.1ms) RELEASE SAVEPOINT active_record_1
20155
+  (0.0ms) SAVEPOINT active_record_1
20156
+ SQL (0.0ms) INSERT INTO "users" ("created_at", "email", "phone", "updated_at") VALUES (?, ?, ?, ?) [["created_at", "2014-06-25 18:30:06.529260"], ["email", "create@example.com"], ["phone", 1], ["updated_at", "2014-06-25 18:30:06.529260"]]
20157
+  (0.0ms) RELEASE SAVEPOINT active_record_1
20158
+  (0.0ms) SAVEPOINT active_record_1
20159
+ SQL (0.0ms) INSERT INTO "users" ("created_at", "email", "phone", "updated_at") VALUES (?, ?, ?, ?) [["created_at", "2014-06-25 18:30:06.530226"], ["email", "create@example.com"], ["phone", 1], ["updated_at", "2014-06-25 18:30:06.530226"]]
20160
+  (0.1ms) RELEASE SAVEPOINT active_record_1
20161
+  (0.0ms) SAVEPOINT active_record_1
20162
+ SQL (0.0ms) INSERT INTO "users" ("created_at", "email", "phone", "updated_at") VALUES (?, ?, ?, ?) [["created_at", "2014-06-25 18:30:06.531205"], ["email", "create@example.com"], ["phone", 1], ["updated_at", "2014-06-25 18:30:06.531205"]]
20163
+  (0.0ms) RELEASE SAVEPOINT active_record_1
20164
+  (0.0ms) SAVEPOINT active_record_1
20165
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 5]]
20166
+  (0.0ms) RELEASE SAVEPOINT active_record_1
20167
+  (0.0ms) SAVEPOINT active_record_1
20168
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 4]]
20169
+  (0.0ms) RELEASE SAVEPOINT active_record_1
20170
+  (0.0ms) SAVEPOINT active_record_1
20171
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 3]]
20172
+  (0.0ms) RELEASE SAVEPOINT active_record_1
20173
+  (0.0ms) SAVEPOINT active_record_1
20174
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 2]]
20175
+  (0.0ms) RELEASE SAVEPOINT active_record_1
20176
+  (0.0ms) SAVEPOINT active_record_1
20177
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 1]]
20178
+  (0.0ms) RELEASE SAVEPOINT active_record_1
20179
+  (0.1ms) SELECT COUNT(*) FROM "users"
20180
+  (0.1ms) rollback transaction
20181
+  (0.0ms) begin transaction
20182
+ -------------------------
20183
+ AliasesTest: test_aliases
20184
+ -------------------------
20185
+  (0.0ms) rollback transaction
20186
+  (0.0ms) begin transaction
20187
+ --------------------------
20188
+ ListsTest: test_build_list
20189
+ --------------------------
20190
+  (0.0ms) rollback transaction
20191
+  (0.0ms) begin transaction
20192
+ ---------------------------
20193
+ ListsTest: test_create_list
20194
+ ---------------------------
20195
+  (0.1ms) SAVEPOINT active_record_1
20196
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "phone", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", "2014-06-25 18:30:06.540232"], ["email", "create@example.com"], ["name", "name"], ["phone", 1], ["updated_at", "2014-06-25 18:30:06.540232"]]
20197
+  (0.0ms) RELEASE SAVEPOINT active_record_1
20198
+  (0.0ms) SAVEPOINT active_record_1
20199
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "phone", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", "2014-06-25 18:30:06.541403"], ["email", "create@example.com"], ["name", "name"], ["phone", 1], ["updated_at", "2014-06-25 18:30:06.541403"]]
20200
+  (0.0ms) RELEASE SAVEPOINT active_record_1
20201
+  (0.0ms) SAVEPOINT active_record_1
20202
+ SQL (0.0ms) INSERT INTO "users" ("created_at", "email", "name", "phone", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", "2014-06-25 18:30:06.542444"], ["email", "create@example.com"], ["name", "name"], ["phone", 1], ["updated_at", "2014-06-25 18:30:06.542444"]]
20203
+  (0.0ms) RELEASE SAVEPOINT active_record_1
20204
+  (0.1ms) SAVEPOINT active_record_1
20205
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 3]]
20206
+  (0.0ms) RELEASE SAVEPOINT active_record_1
20207
+  (0.0ms) SAVEPOINT active_record_1
20208
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 2]]
20209
+  (0.0ms) RELEASE SAVEPOINT active_record_1
20210
+  (0.0ms) SAVEPOINT active_record_1
20211
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 1]]
20212
+  (0.0ms) RELEASE SAVEPOINT active_record_1
20213
+  (0.0ms) rollback transaction
20214
+  (0.3ms) CREATE TABLE "groups" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime, "updated_at" datetime) 
20215
+  (0.1ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "content" varchar(255), "created_at" datetime, "updated_at" datetime, "user_id" integer)
20216
+  (0.1ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "created_at" datetime, "updated_at" datetime, "age" integer, "phone" integer, "group_id" integer) 
20217
+  (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
20218
+  (0.1ms) select sqlite_version(*)
20219
+  (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
20220
+  (0.0ms) SELECT version FROM "schema_migrations"
20221
+  (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20140615181051')
20222
+  (0.1ms) begin transaction
20223
+ -------------------------
20224
+ AliasesTest: test_aliases
20225
+ -------------------------
20226
+  (0.1ms) rollback transaction
20227
+  (0.1ms) begin transaction
20228
+ ---------------------------------------------
20229
+ AssociationsTest: test_belongs_to_association
20230
+ ---------------------------------------------
20231
+  (0.1ms) SAVEPOINT active_record_1
20232
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-06-25 18:30:57.879800"], ["updated_at", "2014-06-25 18:30:57.879800"]]
20233
+  (0.0ms) RELEASE SAVEPOINT active_record_1
20234
+  (0.0ms) SAVEPOINT active_record_1
20235
+ SQL (0.1ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 1]]
20236
+  (0.0ms) RELEASE SAVEPOINT active_record_1
20237
+  (0.0ms) rollback transaction
20238
+  (0.1ms) begin transaction
20239
+ -------------------------------------------
20240
+ AssociationsTest: test_has_many_association
20241
+ -------------------------------------------
20242
+  (0.1ms) SAVEPOINT active_record_1
20243
+ SQL (0.1ms) INSERT INTO "posts" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-06-25 18:30:57.900929"], ["updated_at", "2014-06-25 18:30:57.900929"]]
20244
+  (0.1ms) RELEASE SAVEPOINT active_record_1
20245
+  (0.0ms) SAVEPOINT active_record_1
20246
+ SQL (0.1ms) INSERT INTO "posts" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-06-25 18:30:57.902234"], ["updated_at", "2014-06-25 18:30:57.902234"]]
20247
+  (0.0ms) RELEASE SAVEPOINT active_record_1
20248
+  (0.0ms) SAVEPOINT active_record_1
20249
+ SQL (0.1ms) DELETE FROM "posts" WHERE "posts"."id" = ? [["id", 2]]
20250
+  (0.0ms) RELEASE SAVEPOINT active_record_1
20251
+  (0.0ms) SAVEPOINT active_record_1
20252
+ SQL (0.0ms) DELETE FROM "posts" WHERE "posts"."id" = ? [["id", 1]]
20253
+  (0.0ms) RELEASE SAVEPOINT active_record_1
20254
+  (0.0ms) rollback transaction
20255
+  (0.0ms) begin transaction
20256
+ ------------------------------------
20257
+ InheritanceTest: test_build_instance
20258
+ ------------------------------------
20259
+  (0.1ms) rollback transaction
20260
+  (0.1ms) begin transaction
20261
+ -------------------------------------
20262
+ InheritanceTest: test_create_instance
20263
+ -------------------------------------
20264
+  (0.1ms) SAVEPOINT active_record_1
20265
+ SQL (0.1ms) INSERT INTO "users" ("age", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["age", 9], ["created_at", "2014-06-25 18:30:57.907601"], ["name", "name"], ["updated_at", "2014-06-25 18:30:57.907601"]]
20266
+  (0.0ms) RELEASE SAVEPOINT active_record_1
20267
+  (0.0ms) SAVEPOINT active_record_1
20268
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", "2014-06-25 18:30:57.908904"], ["email", "mail@example.com"], ["name", "name"], ["updated_at", "2014-06-25 18:30:57.908904"]]
20269
+  (0.0ms) RELEASE SAVEPOINT active_record_1
20270
+  (0.0ms) SAVEPOINT active_record_1
20271
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 2]]
20272
+  (0.0ms) RELEASE SAVEPOINT active_record_1
20273
+  (0.0ms) SAVEPOINT active_record_1
20274
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 1]]
20275
+  (0.0ms) RELEASE SAVEPOINT active_record_1
20276
+  (0.1ms) rollback transaction
20277
+  (0.1ms) begin transaction
20278
+ ---------------------------------------
20279
+ InheritanceTest: test_return_attributes
20280
+ ---------------------------------------
20281
+  (0.0ms) rollback transaction
20282
+  (0.0ms) begin transaction
20283
+ ------------------------------------
20284
+ FabricatorsTest: test_build_instance
20285
+ ------------------------------------
20286
+  (0.0ms) rollback transaction
20287
+  (0.0ms) begin transaction
20288
+ -------------------------------------
20289
+ FabricatorsTest: test_create_instance
20290
+ -------------------------------------
20291
+  (0.0ms) SAVEPOINT active_record_1
20292
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-06-25 18:30:57.913856"], ["name", "name"], ["updated_at", "2014-06-25 18:30:57.913856"]]
20293
+  (0.0ms) RELEASE SAVEPOINT active_record_1
20294
+  (0.0ms) SAVEPOINT active_record_1
20295
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 1]]
20296
+  (0.0ms) RELEASE SAVEPOINT active_record_1
20297
+  (0.1ms) rollback transaction
20298
+  (0.1ms) begin transaction
20299
+ ---------------------------------------
20300
+ FabricatorsTest: test_return_attributes
20301
+ ---------------------------------------
20302
+  (0.0ms) rollback transaction
20303
+  (0.1ms) begin transaction
20304
+ ------------------------------------
20305
+ GeneratorsTest: test_file_generation
20306
+ ------------------------------------
20307
+  (0.1ms) rollback transaction
20308
+  (0.0ms) begin transaction
20309
+ -------------------------------
20310
+ MergesTest: test_build_instance
20311
+ -------------------------------
20312
+  (0.0ms) rollback transaction
20313
+  (0.0ms) begin transaction
20314
+ --------------------------------
20315
+ MergesTest: test_create_instance
20316
+ --------------------------------
20317
+  (0.0ms) SAVEPOINT active_record_1
20318
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-06-25 18:30:57.943569"], ["name", "other"], ["updated_at", "2014-06-25 18:30:57.943569"]]
20319
+  (0.1ms) RELEASE SAVEPOINT active_record_1
20320
+  (0.0ms) SAVEPOINT active_record_1
20321
+ SQL (0.0ms) INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-06-25 18:30:57.944694"], ["name", "other"], ["updated_at", "2014-06-25 18:30:57.944694"]]
20322
+  (0.0ms) RELEASE SAVEPOINT active_record_1
20323
+  (0.0ms) SAVEPOINT active_record_1
20324
+ SQL (0.0ms) INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-06-25 18:30:57.945575"], ["name", "other"], ["updated_at", "2014-06-25 18:30:57.945575"]]
20325
+  (0.0ms) RELEASE SAVEPOINT active_record_1
20326
+  (0.0ms) SAVEPOINT active_record_1
20327
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-06-25 18:30:57.946485"], ["name", "other"], ["updated_at", "2014-06-25 18:30:57.946485"]]
20328
+  (0.0ms) RELEASE SAVEPOINT active_record_1
20329
+  (0.0ms) SAVEPOINT active_record_1
20330
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 4]]
20331
+  (0.0ms) RELEASE SAVEPOINT active_record_1
20332
+  (0.0ms) SAVEPOINT active_record_1
20333
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 3]]
20334
+  (0.0ms) RELEASE SAVEPOINT active_record_1
20335
+  (0.0ms) SAVEPOINT active_record_1
20336
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 2]]
20337
+  (0.0ms) RELEASE SAVEPOINT active_record_1
20338
+  (0.0ms) SAVEPOINT active_record_1
20339
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 1]]
20340
+  (0.0ms) RELEASE SAVEPOINT active_record_1
20341
+  (0.0ms) rollback transaction
20342
+  (0.0ms) begin transaction
20343
+ ----------------------------------
20344
+ MergesTest: test_return_attributes
20345
+ ----------------------------------
20346
+  (0.0ms) rollback transaction
20347
+  (0.0ms) begin transaction
20348
+ -----------------------------------
20349
+ AttributesTest: test_block_sequence
20350
+ -----------------------------------
20351
+  (0.0ms) SAVEPOINT active_record_1
20352
+ SQL (0.1ms) INSERT INTO "users" ("age", "created_at", "email", "updated_at") VALUES (?, ?, ?, ?) [["age", 3], ["created_at", "2014-06-25 18:30:57.951375"], ["email", "mail3@example.com"], ["updated_at", "2014-06-25 18:30:57.951375"]]
20353
+  (0.0ms) RELEASE SAVEPOINT active_record_1
20354
+  (0.0ms) SAVEPOINT active_record_1
20355
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 1]]
20356
+  (0.0ms) RELEASE SAVEPOINT active_record_1
20357
+  (0.0ms) rollback transaction
20358
+  (0.0ms) begin transaction
20359
+ -------------------------------------
20360
+ AttributesTest: test_numeric_sequence
20361
+ -------------------------------------
20362
+  (0.0ms) SAVEPOINT active_record_1
20363
+ SQL (0.1ms) INSERT INTO "users" ("age", "created_at", "email", "updated_at") VALUES (?, ?, ?, ?) [["age", 3], ["created_at", "2014-06-25 18:30:57.953774"], ["email", "mail3@example.com"], ["updated_at", "2014-06-25 18:30:57.953774"]]
20364
+  (0.0ms) RELEASE SAVEPOINT active_record_1
20365
+  (0.0ms) SAVEPOINT active_record_1
20366
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 1]]
20367
+  (0.0ms) RELEASE SAVEPOINT active_record_1
20368
+  (0.0ms) rollback transaction
20369
+  (0.0ms) begin transaction
20370
+ -----------------------------------
20371
+ CallbacksTest: test_build_callbacks
20372
+ -----------------------------------
20373
+  (0.0ms) rollback transaction
20374
+  (0.0ms) begin transaction
20375
+ ------------------------------------
20376
+ CallbacksTest: test_create_callbacks
20377
+ ------------------------------------
20378
+  (0.0ms) SAVEPOINT active_record_1
20379
+ SQL (0.1ms) INSERT INTO "users" ("age", "created_at", "email", "name", "phone", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["age", 1], ["created_at", "2014-06-25 18:30:57.957017"], ["email", "create@example.com"], ["name", "create"], ["phone", 1], ["updated_at", "2014-06-25 18:30:57.957017"]]
20380
+  (0.0ms) RELEASE SAVEPOINT active_record_1
20381
+  (0.0ms) SAVEPOINT active_record_1
20382
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 1]]
20383
+  (0.0ms) RELEASE SAVEPOINT active_record_1
20384
+  (0.0ms) rollback transaction
20385
+  (0.1ms) begin transaction
20386
+ --------------------------
20387
+ ListsTest: test_build_list
20388
+ --------------------------
20389
+  (0.0ms) rollback transaction
20390
+  (0.0ms) begin transaction
20391
+ ---------------------------
20392
+ ListsTest: test_create_list
20393
+ ---------------------------
20394
+  (0.0ms) SAVEPOINT active_record_1
20395
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "phone", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", "2014-06-25 18:30:57.960905"], ["email", "create@example.com"], ["name", "name"], ["phone", 1], ["updated_at", "2014-06-25 18:30:57.960905"]]
20396
+  (0.0ms) RELEASE SAVEPOINT active_record_1
20397
+  (0.1ms) SAVEPOINT active_record_1
20398
+ SQL (0.0ms) INSERT INTO "users" ("created_at", "email", "name", "phone", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", "2014-06-25 18:30:57.962014"], ["email", "create@example.com"], ["name", "name"], ["phone", 1], ["updated_at", "2014-06-25 18:30:57.962014"]]
20399
+  (0.0ms) RELEASE SAVEPOINT active_record_1
20400
+  (0.0ms) SAVEPOINT active_record_1
20401
+ SQL (0.0ms) INSERT INTO "users" ("created_at", "email", "name", "phone", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", "2014-06-25 18:30:57.962981"], ["email", "create@example.com"], ["name", "name"], ["phone", 1], ["updated_at", "2014-06-25 18:30:57.962981"]]
20402
+  (0.0ms) RELEASE SAVEPOINT active_record_1
20403
+  (0.0ms) SAVEPOINT active_record_1
20404
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 3]]
20405
+  (0.0ms) RELEASE SAVEPOINT active_record_1
20406
+  (0.0ms) SAVEPOINT active_record_1
20407
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 2]]
20408
+  (0.0ms) RELEASE SAVEPOINT active_record_1
20409
+  (0.0ms) SAVEPOINT active_record_1
20410
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 1]]
20411
+  (0.0ms) RELEASE SAVEPOINT active_record_1
20412
+  (0.0ms) rollback transaction
20413
+  (0.0ms) begin transaction
20414
+ -------------------------------------
20415
+ CleanTest: test_clean_records_created
20416
+ -------------------------------------
20417
+  (0.0ms) SAVEPOINT active_record_1
20418
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "phone", "updated_at") VALUES (?, ?, ?, ?) [["created_at", "2014-06-25 18:30:57.966304"], ["email", "create@example.com"], ["phone", 1], ["updated_at", "2014-06-25 18:30:57.966304"]]
20419
+  (0.0ms) RELEASE SAVEPOINT active_record_1
20420
+  (0.1ms) SAVEPOINT active_record_1
20421
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "phone", "updated_at") VALUES (?, ?, ?, ?) [["created_at", "2014-06-25 18:30:57.967325"], ["email", "create@example.com"], ["phone", 1], ["updated_at", "2014-06-25 18:30:57.967325"]]
20422
+  (0.0ms) RELEASE SAVEPOINT active_record_1
20423
+  (0.0ms) SAVEPOINT active_record_1
20424
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "phone", "updated_at") VALUES (?, ?, ?, ?) [["created_at", "2014-06-25 18:30:57.968359"], ["email", "create@example.com"], ["phone", 1], ["updated_at", "2014-06-25 18:30:57.968359"]]
20425
+  (0.1ms) RELEASE SAVEPOINT active_record_1
20426
+  (0.0ms) SAVEPOINT active_record_1
20427
+ SQL (0.0ms) INSERT INTO "users" ("created_at", "email", "phone", "updated_at") VALUES (?, ?, ?, ?) [["created_at", "2014-06-25 18:30:57.969415"], ["email", "create@example.com"], ["phone", 1], ["updated_at", "2014-06-25 18:30:57.969415"]]
20428
+  (0.0ms) RELEASE SAVEPOINT active_record_1
20429
+  (0.0ms) SAVEPOINT active_record_1
20430
+ SQL (0.0ms) INSERT INTO "users" ("created_at", "email", "phone", "updated_at") VALUES (?, ?, ?, ?) [["created_at", "2014-06-25 18:30:57.970423"], ["email", "create@example.com"], ["phone", 1], ["updated_at", "2014-06-25 18:30:57.970423"]]
20431
+  (0.0ms) RELEASE SAVEPOINT active_record_1
20432
+  (0.1ms) SAVEPOINT active_record_1
20433
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 5]]
20434
+  (0.0ms) RELEASE SAVEPOINT active_record_1
20435
+  (0.0ms) SAVEPOINT active_record_1
20436
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 4]]
20437
+  (0.0ms) RELEASE SAVEPOINT active_record_1
20438
+  (0.0ms) SAVEPOINT active_record_1
20439
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 3]]
20440
+  (0.1ms) RELEASE SAVEPOINT active_record_1
20441
+  (0.0ms) SAVEPOINT active_record_1
20442
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 2]]
20443
+  (0.0ms) RELEASE SAVEPOINT active_record_1
20444
+  (0.0ms) SAVEPOINT active_record_1
20445
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 1]]
20446
+  (0.0ms) RELEASE SAVEPOINT active_record_1
20447
+  (0.1ms) SELECT COUNT(*) FROM "users"
20448
+  (0.0ms) rollback transaction
20449
+  (0.0ms) begin transaction
20450
+ -------------------------
20451
+ LoadTest: test_find_files
20452
+ -------------------------
20453
+  (0.1ms) rollback transaction
20454
+  (0.0ms) begin transaction
20455
+ ----------------------------------
20456
+ DependentTest: test_build_instance
20457
+ ----------------------------------
20458
+  (0.0ms) rollback transaction
20459
+  (0.0ms) begin transaction
20460
+ -----------------------------------
20461
+ DependentTest: test_create_instance
20462
+ -----------------------------------
20463
+  (0.0ms) SAVEPOINT active_record_1
20464
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "phone", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", "2014-06-25 18:30:57.977230"], ["email", "create@example.com"], ["name", "name"], ["phone", 1], ["updated_at", "2014-06-25 18:30:57.977230"]]
20465
+  (0.1ms) RELEASE SAVEPOINT active_record_1
20466
+  (0.1ms) SAVEPOINT active_record_1
20467
+ SQL (0.1ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 1]]
20468
+  (0.0ms) RELEASE SAVEPOINT active_record_1
20469
+  (0.1ms) rollback transaction
20470
+  (0.1ms) begin transaction
20471
+ -------------------------------------
20472
+ DependentTest: test_return_attributes
20473
+ -------------------------------------
20474
+  (0.0ms) rollback transaction
20475
+  (0.3ms) CREATE TABLE "groups" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime, "updated_at" datetime) 
20476
+  (0.1ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "content" varchar(255), "created_at" datetime, "updated_at" datetime, "user_id" integer)
20477
+  (0.1ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "created_at" datetime, "updated_at" datetime, "age" integer, "phone" integer, "group_id" integer) 
20478
+  (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
20479
+  (0.1ms) select sqlite_version(*)
20480
+  (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
20481
+  (0.0ms) SELECT version FROM "schema_migrations"
20482
+  (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20140615181051')
20483
+  (0.1ms) begin transaction
20484
+ ------------------------------------
20485
+ GeneratorsTest: test_file_generation
20486
+ ------------------------------------
20487
+  (0.1ms) rollback transaction
20488
+  (0.1ms) begin transaction
20489
+ ------------------------------------
20490
+ InheritanceTest: test_build_instance
20491
+ ------------------------------------
20492
+  (0.1ms) rollback transaction
20493
+  (0.1ms) begin transaction
20494
+ -------------------------------------
20495
+ InheritanceTest: test_create_instance
20496
+ -------------------------------------
20497
+  (0.0ms) SAVEPOINT active_record_1
20498
+ SQL (0.1ms) INSERT INTO "users" ("age", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["age", 9], ["created_at", "2014-06-25 18:32:29.267178"], ["name", "name"], ["updated_at", "2014-06-25 18:32:29.267178"]]
20499
+  (0.0ms) RELEASE SAVEPOINT active_record_1
20500
+  (0.0ms) SAVEPOINT active_record_1
20501
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", "2014-06-25 18:32:29.270498"], ["email", "mail@example.com"], ["name", "name"], ["updated_at", "2014-06-25 18:32:29.270498"]]
20502
+  (0.0ms) RELEASE SAVEPOINT active_record_1
20503
+  (0.0ms) SAVEPOINT active_record_1
20504
+ SQL (0.1ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 2]]
20505
+  (0.0ms) RELEASE SAVEPOINT active_record_1
20506
+  (0.0ms) SAVEPOINT active_record_1
20507
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 1]]
20508
+  (0.0ms) RELEASE SAVEPOINT active_record_1
20509
+  (0.0ms) rollback transaction
20510
+  (0.0ms) begin transaction
20511
+ ---------------------------------------
20512
+ InheritanceTest: test_return_attributes
20513
+ ---------------------------------------
20514
+  (0.0ms) rollback transaction
20515
+  (0.0ms) begin transaction
20516
+ -------------------------
20517
+ LoadTest: test_find_files
20518
+ -------------------------
20519
+  (0.0ms) rollback transaction
20520
+  (0.0ms) begin transaction
20521
+ ----------------------------------
20522
+ DependentTest: test_build_instance
20523
+ ----------------------------------
20524
+  (0.1ms) rollback transaction
20525
+  (0.0ms) begin transaction
20526
+ -----------------------------------
20527
+ DependentTest: test_create_instance
20528
+ -----------------------------------
20529
+  (0.0ms) SAVEPOINT active_record_1
20530
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", "2014-06-25 18:32:29.277243"], ["email", "name@example.com"], ["name", "name"], ["updated_at", "2014-06-25 18:32:29.277243"]]
20531
+  (0.0ms) RELEASE SAVEPOINT active_record_1
20532
+  (0.0ms) SAVEPOINT active_record_1
20533
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 1]]
20534
+  (0.0ms) RELEASE SAVEPOINT active_record_1
20535
+  (0.1ms) rollback transaction
20536
+  (0.0ms) begin transaction
20537
+ -------------------------------------
20538
+ DependentTest: test_return_attributes
20539
+ -------------------------------------
20540
+  (0.0ms) rollback transaction
20541
+  (0.0ms) begin transaction
20542
+ -----------------------------------
20543
+ AttributesTest: test_block_sequence
20544
+ -----------------------------------
20545
+  (0.1ms) SAVEPOINT active_record_1
20546
+ SQL (0.1ms) INSERT INTO "users" ("age", "created_at", "email", "updated_at") VALUES (?, ?, ?, ?) [["age", 3], ["created_at", "2014-06-25 18:32:29.281011"], ["email", "mail3@example.com"], ["updated_at", "2014-06-25 18:32:29.281011"]]
20547
+  (0.0ms) RELEASE SAVEPOINT active_record_1
20548
+  (0.1ms) SAVEPOINT active_record_1
20549
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 1]]
20550
+  (0.0ms) RELEASE SAVEPOINT active_record_1
20551
+  (0.0ms) rollback transaction
20552
+  (0.0ms) begin transaction
20553
+ -------------------------------------
20554
+ AttributesTest: test_numeric_sequence
20555
+ -------------------------------------
20556
+  (0.0ms) SAVEPOINT active_record_1
20557
+ SQL (0.0ms) INSERT INTO "users" ("age", "created_at", "email", "updated_at") VALUES (?, ?, ?, ?) [["age", 3], ["created_at", "2014-06-25 18:32:29.283568"], ["email", "mail3@example.com"], ["updated_at", "2014-06-25 18:32:29.283568"]]
20558
+  (0.0ms) RELEASE SAVEPOINT active_record_1
20559
+  (0.0ms) SAVEPOINT active_record_1
20560
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 1]]
20561
+  (0.0ms) RELEASE SAVEPOINT active_record_1
20562
+  (0.0ms) rollback transaction
20563
+  (0.0ms) begin transaction
20564
+ -------------------------------
20565
+ MergesTest: test_build_instance
20566
+ -------------------------------
20567
+  (0.0ms) rollback transaction
20568
+  (0.0ms) begin transaction
20569
+ --------------------------------
20570
+ MergesTest: test_create_instance
20571
+ --------------------------------
20572
+  (0.0ms) SAVEPOINT active_record_1
20573
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-06-25 18:32:29.286693"], ["name", "other"], ["updated_at", "2014-06-25 18:32:29.286693"]]
20574
+  (0.0ms) RELEASE SAVEPOINT active_record_1
20575
+  (0.0ms) SAVEPOINT active_record_1
20576
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-06-25 18:32:29.287578"], ["name", "other"], ["updated_at", "2014-06-25 18:32:29.287578"]]
20577
+  (0.0ms) RELEASE SAVEPOINT active_record_1
20578
+  (0.0ms) SAVEPOINT active_record_1
20579
+ SQL (0.0ms) INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-06-25 18:32:29.288440"], ["name", "other"], ["updated_at", "2014-06-25 18:32:29.288440"]]
20580
+  (0.0ms) RELEASE SAVEPOINT active_record_1
20581
+  (0.0ms) SAVEPOINT active_record_1
20582
+ SQL (0.0ms) INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-06-25 18:32:29.289298"], ["name", "other"], ["updated_at", "2014-06-25 18:32:29.289298"]]
20583
+  (0.0ms) RELEASE SAVEPOINT active_record_1
20584
+  (0.0ms) SAVEPOINT active_record_1
20585
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 4]]
20586
+  (0.0ms) RELEASE SAVEPOINT active_record_1
20587
+  (0.0ms) SAVEPOINT active_record_1
20588
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 3]]
20589
+  (0.0ms) RELEASE SAVEPOINT active_record_1
20590
+  (0.0ms) SAVEPOINT active_record_1
20591
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 2]]
20592
+  (0.0ms) RELEASE SAVEPOINT active_record_1
20593
+  (0.0ms) SAVEPOINT active_record_1
20594
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 1]]
20595
+  (0.0ms) RELEASE SAVEPOINT active_record_1
20596
+  (0.0ms) rollback transaction
20597
+  (0.0ms) begin transaction
20598
+ ----------------------------------
20599
+ MergesTest: test_return_attributes
20600
+ ----------------------------------
20601
+  (0.0ms) rollback transaction
20602
+  (0.0ms) begin transaction
20603
+ -----------------------------------
20604
+ CallbacksTest: test_build_callbacks
20605
+ -----------------------------------
20606
+  (0.0ms) rollback transaction
20607
+  (0.0ms) begin transaction
20608
+ ------------------------------------
20609
+ CallbacksTest: test_create_callbacks
20610
+ ------------------------------------
20611
+  (0.0ms) SAVEPOINT active_record_1
20612
+ SQL (0.1ms) INSERT INTO "users" ("age", "created_at", "email", "name", "phone", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["age", 1], ["created_at", "2014-06-25 18:32:29.295033"], ["email", "create@example.com"], ["name", "create"], ["phone", 1], ["updated_at", "2014-06-25 18:32:29.295033"]]
20613
+  (0.0ms) RELEASE SAVEPOINT active_record_1
20614
+  (0.0ms) SAVEPOINT active_record_1
20615
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 1]]
20616
+  (0.0ms) RELEASE SAVEPOINT active_record_1
20617
+  (0.0ms) rollback transaction
20618
+  (0.0ms) begin transaction
20619
+ -------------------------------------
20620
+ CleanTest: test_clean_records_created
20621
+ -------------------------------------
20622
+  (0.0ms) SAVEPOINT active_record_1
20623
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "phone", "updated_at") VALUES (?, ?, ?, ?) [["created_at", "2014-06-25 18:32:29.297722"], ["email", "create@example.com"], ["phone", 1], ["updated_at", "2014-06-25 18:32:29.297722"]]
20624
+  (0.0ms) RELEASE SAVEPOINT active_record_1
20625
+  (0.0ms) SAVEPOINT active_record_1
20626
+ SQL (0.0ms) INSERT INTO "users" ("created_at", "email", "phone", "updated_at") VALUES (?, ?, ?, ?) [["created_at", "2014-06-25 18:32:29.298742"], ["email", "create@example.com"], ["phone", 1], ["updated_at", "2014-06-25 18:32:29.298742"]]
20627
+  (0.0ms) RELEASE SAVEPOINT active_record_1
20628
+  (0.0ms) SAVEPOINT active_record_1
20629
+ SQL (0.0ms) INSERT INTO "users" ("created_at", "email", "phone", "updated_at") VALUES (?, ?, ?, ?) [["created_at", "2014-06-25 18:32:29.299718"], ["email", "create@example.com"], ["phone", 1], ["updated_at", "2014-06-25 18:32:29.299718"]]
20630
+  (0.0ms) RELEASE SAVEPOINT active_record_1
20631
+  (0.0ms) SAVEPOINT active_record_1
20632
+ SQL (0.0ms) INSERT INTO "users" ("created_at", "email", "phone", "updated_at") VALUES (?, ?, ?, ?) [["created_at", "2014-06-25 18:32:29.300638"], ["email", "create@example.com"], ["phone", 1], ["updated_at", "2014-06-25 18:32:29.300638"]]
20633
+  (0.0ms) RELEASE SAVEPOINT active_record_1
20634
+  (0.0ms) SAVEPOINT active_record_1
20635
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "phone", "updated_at") VALUES (?, ?, ?, ?) [["created_at", "2014-06-25 18:32:29.301608"], ["email", "create@example.com"], ["phone", 1], ["updated_at", "2014-06-25 18:32:29.301608"]]
20636
+  (0.1ms) RELEASE SAVEPOINT active_record_1
20637
+  (0.0ms) SAVEPOINT active_record_1
20638
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 5]]
20639
+  (0.0ms) RELEASE SAVEPOINT active_record_1
20640
+  (0.0ms) SAVEPOINT active_record_1
20641
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 4]]
20642
+  (0.0ms) RELEASE SAVEPOINT active_record_1
20643
+  (0.0ms) SAVEPOINT active_record_1
20644
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 3]]
20645
+  (0.1ms) RELEASE SAVEPOINT active_record_1
20646
+  (0.0ms) SAVEPOINT active_record_1
20647
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 2]]
20648
+  (0.0ms) RELEASE SAVEPOINT active_record_1
20649
+  (0.0ms) SAVEPOINT active_record_1
20650
+ SQL (0.1ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 1]]
20651
+  (0.1ms) RELEASE SAVEPOINT active_record_1
20652
+  (0.1ms) SELECT COUNT(*) FROM "users"
20653
+  (0.1ms) rollback transaction
20654
+  (0.0ms) begin transaction
20655
+ --------------------------
20656
+ ListsTest: test_build_list
20657
+ --------------------------
20658
+  (0.0ms) rollback transaction
20659
+  (0.0ms) begin transaction
20660
+ ---------------------------
20661
+ ListsTest: test_create_list
20662
+ ---------------------------
20663
+  (0.0ms) SAVEPOINT active_record_1
20664
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "phone", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", "2014-06-25 18:32:29.328736"], ["email", "create@example.com"], ["name", "name"], ["phone", 1], ["updated_at", "2014-06-25 18:32:29.328736"]]
20665
+  (0.0ms) RELEASE SAVEPOINT active_record_1
20666
+  (0.0ms) SAVEPOINT active_record_1
20667
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "phone", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", "2014-06-25 18:32:29.330118"], ["email", "create@example.com"], ["name", "name"], ["phone", 1], ["updated_at", "2014-06-25 18:32:29.330118"]]
20668
+  (0.0ms) RELEASE SAVEPOINT active_record_1
20669
+  (0.0ms) SAVEPOINT active_record_1
20670
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "phone", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", "2014-06-25 18:32:29.331336"], ["email", "create@example.com"], ["name", "name"], ["phone", 1], ["updated_at", "2014-06-25 18:32:29.331336"]]
20671
+  (0.1ms) RELEASE SAVEPOINT active_record_1
20672
+  (0.0ms) SAVEPOINT active_record_1
20673
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 3]]
20674
+  (0.0ms) RELEASE SAVEPOINT active_record_1
20675
+  (0.1ms) SAVEPOINT active_record_1
20676
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 2]]
20677
+  (0.0ms) RELEASE SAVEPOINT active_record_1
20678
+  (0.0ms) SAVEPOINT active_record_1
20679
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 1]]
20680
+  (0.0ms) RELEASE SAVEPOINT active_record_1
20681
+  (0.0ms) rollback transaction
20682
+  (0.0ms) begin transaction
20683
+ ---------------------------------------------
20684
+ AssociationsTest: test_belongs_to_association
20685
+ ---------------------------------------------
20686
+  (0.1ms) rollback transaction
20687
+  (0.0ms) begin transaction
20688
+ -------------------------------------------
20689
+ AssociationsTest: test_has_many_association
20690
+ -------------------------------------------
20691
+  (0.1ms) rollback transaction
20692
+  (0.0ms) begin transaction
20693
+ ------------------------------------
20694
+ FabricatorsTest: test_build_instance
20695
+ ------------------------------------
20696
+  (0.0ms) rollback transaction
20697
+  (0.0ms) begin transaction
20698
+ -------------------------------------
20699
+ FabricatorsTest: test_create_instance
20700
+ -------------------------------------
20701
+  (0.0ms) SAVEPOINT active_record_1
20702
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "phone", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", "2014-06-25 18:32:29.347547"], ["email", "create@example.com"], ["name", "name"], ["phone", 1], ["updated_at", "2014-06-25 18:32:29.347547"]]
20703
+  (0.1ms) RELEASE SAVEPOINT active_record_1
20704
+  (0.0ms) SAVEPOINT active_record_1
20705
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 1]]
20706
+  (0.0ms) RELEASE SAVEPOINT active_record_1
20707
+  (0.0ms) rollback transaction
20708
+  (0.0ms) begin transaction
20709
+ ---------------------------------------
20710
+ FabricatorsTest: test_return_attributes
20711
+ ---------------------------------------
20712
+  (0.0ms) rollback transaction
20713
+  (0.0ms) begin transaction
20714
+ -------------------------
20715
+ AliasesTest: test_aliases
20716
+ -------------------------
20717
+  (0.0ms) rollback transaction
20718
+  (0.3ms) CREATE TABLE "groups" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime, "updated_at" datetime) 
20719
+  (0.1ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "content" varchar(255), "created_at" datetime, "updated_at" datetime, "user_id" integer)
20720
+  (0.1ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "created_at" datetime, "updated_at" datetime, "age" integer, "phone" integer, "group_id" integer) 
20721
+  (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
20722
+  (0.0ms) select sqlite_version(*)
20723
+  (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
20724
+  (0.1ms) SELECT version FROM "schema_migrations"
20725
+  (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20140615181051')
20726
+  (0.1ms) begin transaction
20727
+ --------------------------
20728
+ ListsTest: test_build_list
20729
+ --------------------------
20730
+  (0.1ms) rollback transaction
20731
+  (0.0ms) begin transaction
20732
+ ---------------------------
20733
+ ListsTest: test_create_list
20734
+ ---------------------------
20735
+  (0.0ms) SAVEPOINT active_record_1
20736
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-06-25 18:35:09.334401"], ["name", "name"], ["updated_at", "2014-06-25 18:35:09.334401"]]
20737
+  (0.0ms) RELEASE SAVEPOINT active_record_1
20738
+  (0.0ms) SAVEPOINT active_record_1
20739
+ SQL (0.0ms) INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-06-25 18:35:09.337314"], ["name", "name"], ["updated_at", "2014-06-25 18:35:09.337314"]]
20740
+  (0.0ms) RELEASE SAVEPOINT active_record_1
20741
+  (0.0ms) SAVEPOINT active_record_1
20742
+ SQL (0.0ms) INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-06-25 18:35:09.338161"], ["name", "name"], ["updated_at", "2014-06-25 18:35:09.338161"]]
20743
+  (0.0ms) RELEASE SAVEPOINT active_record_1
20744
+  (0.0ms) SAVEPOINT active_record_1
20745
+ SQL (0.1ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 3]]
20746
+  (0.0ms) RELEASE SAVEPOINT active_record_1
20747
+  (0.0ms) SAVEPOINT active_record_1
20748
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 2]]
20749
+  (0.0ms) RELEASE SAVEPOINT active_record_1
20750
+  (0.0ms) SAVEPOINT active_record_1
20751
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 1]]
20752
+  (0.0ms) RELEASE SAVEPOINT active_record_1
20753
+  (0.0ms) rollback transaction
20754
+  (0.0ms) begin transaction
20755
+ -------------------------
20756
+ AliasesTest: test_aliases
20757
+ -------------------------
20758
+  (0.0ms) rollback transaction
20759
+  (0.0ms) begin transaction
20760
+ -----------------------------------
20761
+ AttributesTest: test_block_sequence
20762
+ -----------------------------------
20763
+  (0.0ms) SAVEPOINT active_record_1
20764
+ SQL (0.1ms) INSERT INTO "users" ("age", "created_at", "email", "updated_at") VALUES (?, ?, ?, ?) [["age", 3], ["created_at", "2014-06-25 18:35:09.342530"], ["email", "mail3@example.com"], ["updated_at", "2014-06-25 18:35:09.342530"]]
20765
+  (0.0ms) RELEASE SAVEPOINT active_record_1
20766
+  (0.0ms) SAVEPOINT active_record_1
20767
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 1]]
20768
+  (0.0ms) RELEASE SAVEPOINT active_record_1
20769
+  (0.0ms) rollback transaction
20770
+  (0.0ms) begin transaction
20771
+ -------------------------------------
20772
+ AttributesTest: test_numeric_sequence
20773
+ -------------------------------------
20774
+  (0.0ms) SAVEPOINT active_record_1
20775
+ SQL (0.0ms) INSERT INTO "users" ("age", "created_at", "email", "updated_at") VALUES (?, ?, ?, ?) [["age", 3], ["created_at", "2014-06-25 18:35:09.344563"], ["email", "mail3@example.com"], ["updated_at", "2014-06-25 18:35:09.344563"]]
20776
+  (0.0ms) RELEASE SAVEPOINT active_record_1
20777
+  (0.0ms) SAVEPOINT active_record_1
20778
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 1]]
20779
+  (0.0ms) RELEASE SAVEPOINT active_record_1
20780
+  (0.0ms) rollback transaction
20781
+  (0.0ms) begin transaction
20782
+ -----------------------------------
20783
+ CallbacksTest: test_build_callbacks
20784
+ -----------------------------------
20785
+  (0.0ms) rollback transaction
20786
+  (0.0ms) begin transaction
20787
+ ------------------------------------
20788
+ CallbacksTest: test_create_callbacks
20789
+ ------------------------------------
20790
+  (0.0ms) SAVEPOINT active_record_1
20791
+ SQL (0.1ms) INSERT INTO "users" ("age", "created_at", "email", "name", "phone", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["age", 1], ["created_at", "2014-06-25 18:35:09.348050"], ["email", "create@example.com"], ["name", "create"], ["phone", 1], ["updated_at", "2014-06-25 18:35:09.348050"]]
20792
+  (0.0ms) RELEASE SAVEPOINT active_record_1
20793
+  (0.0ms) SAVEPOINT active_record_1
20794
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 1]]
20795
+  (0.1ms) RELEASE SAVEPOINT active_record_1
20796
+  (0.0ms) rollback transaction
20797
+  (0.0ms) begin transaction
20798
+ ------------------------------------
20799
+ InheritanceTest: test_build_instance
20800
+ ------------------------------------
20801
+  (0.0ms) rollback transaction
20802
+  (0.0ms) begin transaction
20803
+ -------------------------------------
20804
+ InheritanceTest: test_create_instance
20805
+ -------------------------------------
20806
+  (0.0ms) SAVEPOINT active_record_1
20807
+ SQL (0.1ms) INSERT INTO "users" ("age", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["age", 9], ["created_at", "2014-06-25 18:35:09.351822"], ["name", "name"], ["updated_at", "2014-06-25 18:35:09.351822"]]
20808
+  (0.0ms) RELEASE SAVEPOINT active_record_1
20809
+  (0.0ms) SAVEPOINT active_record_1
20810
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", "2014-06-25 18:35:09.352875"], ["email", "mail@example.com"], ["name", "name"], ["updated_at", "2014-06-25 18:35:09.352875"]]
20811
+  (0.0ms) RELEASE SAVEPOINT active_record_1
20812
+  (0.0ms) SAVEPOINT active_record_1
20813
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 2]]
20814
+  (0.0ms) RELEASE SAVEPOINT active_record_1
20815
+  (0.0ms) SAVEPOINT active_record_1
20816
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 1]]
20817
+  (0.0ms) RELEASE SAVEPOINT active_record_1
20818
+  (0.1ms) rollback transaction
20819
+  (0.0ms) begin transaction
20820
+ ---------------------------------------
20821
+ InheritanceTest: test_return_attributes
20822
+ ---------------------------------------
20823
+  (0.0ms) rollback transaction
20824
+  (0.0ms) begin transaction
20825
+ ---------------------------------------------
20826
+ AssociationsTest: test_belongs_to_association
20827
+ ---------------------------------------------
20828
+  (0.0ms) SAVEPOINT active_record_1
20829
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-06-25 18:35:09.362851"], ["updated_at", "2014-06-25 18:35:09.362851"]]
20830
+  (0.0ms) RELEASE SAVEPOINT active_record_1
20831
+  (0.0ms) SAVEPOINT active_record_1
20832
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 1]]
20833
+  (0.0ms) RELEASE SAVEPOINT active_record_1
20834
+  (0.0ms) rollback transaction
20835
+  (0.1ms) begin transaction
20836
+ -------------------------------------------
20837
+ AssociationsTest: test_has_many_association
20838
+ -------------------------------------------
20839
+  (0.1ms) SAVEPOINT active_record_1
20840
+ SQL (0.1ms) INSERT INTO "posts" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-06-25 18:35:09.393732"], ["updated_at", "2014-06-25 18:35:09.393732"]]
20841
+  (0.0ms) RELEASE SAVEPOINT active_record_1
20842
+  (0.0ms) SAVEPOINT active_record_1
20843
+ SQL (0.0ms) INSERT INTO "posts" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-06-25 18:35:09.394760"], ["updated_at", "2014-06-25 18:35:09.394760"]]
20844
+  (0.0ms) RELEASE SAVEPOINT active_record_1
20845
+  (0.0ms) SAVEPOINT active_record_1
20846
+ SQL (0.1ms) DELETE FROM "posts" WHERE "posts"."id" = ? [["id", 2]]
20847
+  (0.0ms) RELEASE SAVEPOINT active_record_1
20848
+  (0.0ms) SAVEPOINT active_record_1
20849
+ SQL (0.0ms) DELETE FROM "posts" WHERE "posts"."id" = ? [["id", 1]]
20850
+  (0.0ms) RELEASE SAVEPOINT active_record_1
20851
+  (0.0ms) rollback transaction
20852
+  (0.0ms) begin transaction
20853
+ -------------------------
20854
+ LoadTest: test_find_files
20855
+ -------------------------
20856
+  (0.0ms) rollback transaction
20857
+  (0.0ms) begin transaction
20858
+ ------------------------------------
20859
+ FabricatorsTest: test_build_instance
20860
+ ------------------------------------
20861
+  (0.0ms) rollback transaction
20862
+  (0.0ms) begin transaction
20863
+ -------------------------------------
20864
+ FabricatorsTest: test_create_instance
20865
+ -------------------------------------
20866
+  (0.0ms) SAVEPOINT active_record_1
20867
+ SQL (0.0ms) INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-06-25 18:35:09.399903"], ["name", "name"], ["updated_at", "2014-06-25 18:35:09.399903"]]
20868
+  (0.0ms) RELEASE SAVEPOINT active_record_1
20869
+  (0.0ms) SAVEPOINT active_record_1
20870
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 1]]
20871
+  (0.1ms) RELEASE SAVEPOINT active_record_1
20872
+  (0.0ms) rollback transaction
20873
+  (0.0ms) begin transaction
20874
+ ---------------------------------------
20875
+ FabricatorsTest: test_return_attributes
20876
+ ---------------------------------------
20877
+  (0.0ms) rollback transaction
20878
+  (0.0ms) begin transaction
20879
+ -------------------------------
20880
+ MergesTest: test_build_instance
20881
+ -------------------------------
20882
+  (0.1ms) rollback transaction
20883
+  (0.0ms) begin transaction
20884
+ --------------------------------
20885
+ MergesTest: test_create_instance
20886
+ --------------------------------
20887
+  (0.0ms) SAVEPOINT active_record_1
20888
+ SQL (0.0ms) INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-06-25 18:35:09.403571"], ["name", "other"], ["updated_at", "2014-06-25 18:35:09.403571"]]
20889
+  (0.0ms) RELEASE SAVEPOINT active_record_1
20890
+  (0.0ms) SAVEPOINT active_record_1
20891
+ SQL (0.0ms) INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-06-25 18:35:09.404461"], ["name", "other"], ["updated_at", "2014-06-25 18:35:09.404461"]]
20892
+  (0.0ms) RELEASE SAVEPOINT active_record_1
20893
+  (0.0ms) SAVEPOINT active_record_1
20894
+ SQL (0.0ms) INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-06-25 18:35:09.405276"], ["name", "other"], ["updated_at", "2014-06-25 18:35:09.405276"]]
20895
+  (0.0ms) RELEASE SAVEPOINT active_record_1
20896
+  (0.0ms) SAVEPOINT active_record_1
20897
+ SQL (0.0ms) INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-06-25 18:35:09.406109"], ["name", "other"], ["updated_at", "2014-06-25 18:35:09.406109"]]
20898
+  (0.0ms) RELEASE SAVEPOINT active_record_1
20899
+  (0.0ms) SAVEPOINT active_record_1
20900
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 4]]
20901
+  (0.1ms) RELEASE SAVEPOINT active_record_1
20902
+  (0.0ms) SAVEPOINT active_record_1
20903
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 3]]
20904
+  (0.0ms) RELEASE SAVEPOINT active_record_1
20905
+  (0.0ms) SAVEPOINT active_record_1
20906
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 2]]
20907
+  (0.0ms) RELEASE SAVEPOINT active_record_1
20908
+  (0.0ms) SAVEPOINT active_record_1
20909
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 1]]
20910
+  (0.0ms) RELEASE SAVEPOINT active_record_1
20911
+  (0.0ms) rollback transaction
20912
+  (0.0ms) begin transaction
20913
+ ----------------------------------
20914
+ MergesTest: test_return_attributes
20915
+ ----------------------------------
20916
+  (0.0ms) rollback transaction
20917
+  (0.0ms) begin transaction
20918
+ -------------------------------------
20919
+ CleanTest: test_clean_records_created
20920
+ -------------------------------------
20921
+  (0.0ms) SAVEPOINT active_record_1
20922
+ SQL (0.0ms) INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-06-25 18:35:09.410470"], ["updated_at", "2014-06-25 18:35:09.410470"]]
20923
+  (0.0ms) RELEASE SAVEPOINT active_record_1
20924
+  (0.0ms) SAVEPOINT active_record_1
20925
+ SQL (0.0ms) INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-06-25 18:35:09.411312"], ["updated_at", "2014-06-25 18:35:09.411312"]]
20926
+  (0.0ms) RELEASE SAVEPOINT active_record_1
20927
+  (0.0ms) SAVEPOINT active_record_1
20928
+ SQL (0.0ms) INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-06-25 18:35:09.412165"], ["updated_at", "2014-06-25 18:35:09.412165"]]
20929
+  (0.0ms) RELEASE SAVEPOINT active_record_1
20930
+  (0.0ms) SAVEPOINT active_record_1
20931
+ SQL (0.0ms) INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-06-25 18:35:09.412960"], ["updated_at", "2014-06-25 18:35:09.412960"]]
20932
+  (0.0ms) RELEASE SAVEPOINT active_record_1
20933
+  (0.0ms) SAVEPOINT active_record_1
20934
+ SQL (0.0ms) INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-06-25 18:35:09.413773"], ["updated_at", "2014-06-25 18:35:09.413773"]]
20935
+  (0.0ms) RELEASE SAVEPOINT active_record_1
20936
+  (0.0ms) SAVEPOINT active_record_1
20937
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 5]]
20938
+  (0.0ms) RELEASE SAVEPOINT active_record_1
20939
+  (0.0ms) SAVEPOINT active_record_1
20940
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 4]]
20941
+  (0.0ms) RELEASE SAVEPOINT active_record_1
20942
+  (0.0ms) SAVEPOINT active_record_1
20943
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 3]]
20944
+  (0.0ms) RELEASE SAVEPOINT active_record_1
20945
+  (0.0ms) SAVEPOINT active_record_1
20946
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 2]]
20947
+  (0.0ms) RELEASE SAVEPOINT active_record_1
20948
+  (0.0ms) SAVEPOINT active_record_1
20949
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 1]]
20950
+  (0.0ms) RELEASE SAVEPOINT active_record_1
20951
+  (0.1ms) SELECT COUNT(*) FROM "users"
20952
+  (0.0ms) rollback transaction
20953
+  (0.0ms) begin transaction
20954
+ ----------------------------------
20955
+ DependentTest: test_build_instance
20956
+ ----------------------------------
20957
+  (0.0ms) rollback transaction
20958
+  (0.0ms) begin transaction
20959
+ -----------------------------------
20960
+ DependentTest: test_create_instance
20961
+ -----------------------------------
20962
+  (0.1ms) SAVEPOINT active_record_1
20963
+ SQL (0.0ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", "2014-06-25 18:35:09.419003"], ["email", "name@example.com"], ["name", "name"], ["updated_at", "2014-06-25 18:35:09.419003"]]
20964
+  (0.0ms) RELEASE SAVEPOINT active_record_1
20965
+  (0.0ms) SAVEPOINT active_record_1
20966
+ SQL (0.1ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 1]]
20967
+  (0.0ms) RELEASE SAVEPOINT active_record_1
20968
+  (0.0ms) rollback transaction
20969
+  (0.1ms) begin transaction
20970
+ -------------------------------------
20971
+ DependentTest: test_return_attributes
20972
+ -------------------------------------
20973
+  (0.0ms) rollback transaction
20974
+  (0.0ms) begin transaction
20975
+ ------------------------------------
20976
+ GeneratorsTest: test_file_generation
20977
+ ------------------------------------
20978
+  (0.0ms) rollback transaction
20979
+  (0.3ms) CREATE TABLE "groups" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime, "updated_at" datetime) 
20980
+  (0.1ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "content" varchar(255), "created_at" datetime, "updated_at" datetime, "user_id" integer)
20981
+  (0.1ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "created_at" datetime, "updated_at" datetime, "age" integer, "phone" integer, "group_id" integer) 
20982
+  (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
20983
+  (0.0ms) select sqlite_version(*)
20984
+  (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
20985
+  (0.1ms) SELECT version FROM "schema_migrations"
20986
+  (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20140615181051')
20987
+  (0.1ms) begin transaction
20988
+ -----------------------------------
20989
+ AttributesTest: test_block_sequence
20990
+ -----------------------------------
20991
+  (0.1ms) SAVEPOINT active_record_1
20992
+ SQL (0.1ms) INSERT INTO "users" ("age", "created_at", "email", "updated_at") VALUES (?, ?, ?, ?) [["age", 3], ["created_at", "2014-06-25 18:39:42.981824"], ["email", "mail3@example.com"], ["updated_at", "2014-06-25 18:39:42.981824"]]
20993
+  (0.1ms) RELEASE SAVEPOINT active_record_1
20994
+  (0.0ms) SAVEPOINT active_record_1
20995
+ SQL (0.1ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 1]]
20996
+  (0.0ms) RELEASE SAVEPOINT active_record_1
20997
+  (0.0ms) rollback transaction
20998
+  (0.1ms) begin transaction
20999
+ -------------------------------------
21000
+ AttributesTest: test_numeric_sequence
21001
+ -------------------------------------
21002
+  (0.0ms) SAVEPOINT active_record_1
21003
+ SQL (0.1ms) INSERT INTO "users" ("age", "created_at", "email", "updated_at") VALUES (?, ?, ?, ?) [["age", 3], ["created_at", "2014-06-25 18:39:42.986526"], ["email", "mail3@example.com"], ["updated_at", "2014-06-25 18:39:42.986526"]]
21004
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21005
+  (0.0ms) SAVEPOINT active_record_1
21006
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 1]]
21007
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21008
+  (0.0ms) rollback transaction
21009
+  (0.0ms) begin transaction
21010
+ ---------------------------------------------
21011
+ AssociationsTest: test_belongs_to_association
21012
+ ---------------------------------------------
21013
+  (0.1ms) SAVEPOINT active_record_1
21014
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-06-25 18:39:42.997412"], ["updated_at", "2014-06-25 18:39:42.997412"]]
21015
+  (0.1ms) RELEASE SAVEPOINT active_record_1
21016
+  (0.0ms) SAVEPOINT active_record_1
21017
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 1]]
21018
+  (0.1ms) RELEASE SAVEPOINT active_record_1
21019
+  (0.0ms) rollback transaction
21020
+  (0.0ms) begin transaction
21021
+ -------------------------------------------
21022
+ AssociationsTest: test_has_many_association
21023
+ -------------------------------------------
21024
+  (0.1ms) SAVEPOINT active_record_1
21025
+ SQL (0.1ms) INSERT INTO "posts" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-06-25 18:39:43.009040"], ["updated_at", "2014-06-25 18:39:43.009040"]]
21026
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21027
+  (0.0ms) SAVEPOINT active_record_1
21028
+ SQL (0.0ms) INSERT INTO "posts" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-06-25 18:39:43.010188"], ["updated_at", "2014-06-25 18:39:43.010188"]]
21029
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21030
+  (0.0ms) SAVEPOINT active_record_1
21031
+ SQL (0.1ms) DELETE FROM "posts" WHERE "posts"."id" = ? [["id", 2]]
21032
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21033
+  (0.0ms) SAVEPOINT active_record_1
21034
+ SQL (0.1ms) DELETE FROM "posts" WHERE "posts"."id" = ? [["id", 1]]
21035
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21036
+  (0.0ms) rollback transaction
21037
+  (0.0ms) begin transaction
21038
+ --------------------------
21039
+ ListsTest: test_build_list
21040
+ --------------------------
21041
+  (0.0ms) rollback transaction
21042
+  (0.0ms) begin transaction
21043
+ ---------------------------
21044
+ ListsTest: test_create_list
21045
+ ---------------------------
21046
+  (0.0ms) SAVEPOINT active_record_1
21047
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-06-25 18:39:43.015472"], ["name", "name"], ["updated_at", "2014-06-25 18:39:43.015472"]]
21048
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21049
+  (0.0ms) SAVEPOINT active_record_1
21050
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-06-25 18:39:43.016524"], ["name", "name"], ["updated_at", "2014-06-25 18:39:43.016524"]]
21051
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21052
+  (0.0ms) SAVEPOINT active_record_1
21053
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-06-25 18:39:43.017466"], ["name", "name"], ["updated_at", "2014-06-25 18:39:43.017466"]]
21054
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21055
+  (0.0ms) SAVEPOINT active_record_1
21056
+ SQL (0.1ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 3]]
21057
+  (0.1ms) RELEASE SAVEPOINT active_record_1
21058
+  (0.0ms) SAVEPOINT active_record_1
21059
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 2]]
21060
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21061
+  (0.0ms) SAVEPOINT active_record_1
21062
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 1]]
21063
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21064
+  (0.0ms) rollback transaction
21065
+  (0.0ms) begin transaction
21066
+ -------------------------
21067
+ LoadTest: test_find_files
21068
+ -------------------------
21069
+  (0.0ms) rollback transaction
21070
+  (0.1ms) begin transaction
21071
+ ------------------------------------
21072
+ GeneratorsTest: test_file_generation
21073
+ ------------------------------------
21074
+  (0.0ms) rollback transaction
21075
+  (0.0ms) begin transaction
21076
+ ------------------------------------
21077
+ InheritanceTest: test_build_instance
21078
+ ------------------------------------
21079
+  (0.0ms) rollback transaction
21080
+  (0.0ms) begin transaction
21081
+ -------------------------------------
21082
+ InheritanceTest: test_create_instance
21083
+ -------------------------------------
21084
+  (0.0ms) SAVEPOINT active_record_1
21085
+ SQL (0.1ms) INSERT INTO "users" ("age", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["age", 9], ["created_at", "2014-06-25 18:39:43.047345"], ["name", "name"], ["updated_at", "2014-06-25 18:39:43.047345"]]
21086
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21087
+  (0.0ms) SAVEPOINT active_record_1
21088
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", "2014-06-25 18:39:43.048513"], ["email", "mail@example.com"], ["name", "name"], ["updated_at", "2014-06-25 18:39:43.048513"]]
21089
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21090
+  (0.0ms) SAVEPOINT active_record_1
21091
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 2]]
21092
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21093
+  (0.0ms) SAVEPOINT active_record_1
21094
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 1]]
21095
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21096
+  (0.0ms) rollback transaction
21097
+  (0.0ms) begin transaction
21098
+ ---------------------------------------
21099
+ InheritanceTest: test_return_attributes
21100
+ ---------------------------------------
21101
+  (0.0ms) rollback transaction
21102
+  (0.0ms) begin transaction
21103
+ -------------------------------
21104
+ MergesTest: test_build_instance
21105
+ -------------------------------
21106
+  (0.0ms) rollback transaction
21107
+  (0.0ms) begin transaction
21108
+ --------------------------------
21109
+ MergesTest: test_create_instance
21110
+ --------------------------------
21111
+  (0.0ms) SAVEPOINT active_record_1
21112
+ SQL (0.0ms) INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-06-25 18:39:43.052830"], ["name", "other"], ["updated_at", "2014-06-25 18:39:43.052830"]]
21113
+  (0.1ms) RELEASE SAVEPOINT active_record_1
21114
+  (0.0ms) SAVEPOINT active_record_1
21115
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-06-25 18:39:43.053777"], ["name", "other"], ["updated_at", "2014-06-25 18:39:43.053777"]]
21116
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21117
+  (0.0ms) SAVEPOINT active_record_1
21118
+ SQL (0.0ms) INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-06-25 18:39:43.054601"], ["name", "other"], ["updated_at", "2014-06-25 18:39:43.054601"]]
21119
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21120
+  (0.1ms) SAVEPOINT active_record_1
21121
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-06-25 18:39:43.055437"], ["name", "other"], ["updated_at", "2014-06-25 18:39:43.055437"]]
21122
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21123
+  (0.0ms) SAVEPOINT active_record_1
21124
+ SQL (0.1ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 4]]
21125
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21126
+  (0.0ms) SAVEPOINT active_record_1
21127
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 3]]
21128
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21129
+  (0.1ms) SAVEPOINT active_record_1
21130
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 2]]
21131
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21132
+  (0.0ms) SAVEPOINT active_record_1
21133
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 1]]
21134
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21135
+  (0.0ms) rollback transaction
21136
+  (0.0ms) begin transaction
21137
+ ----------------------------------
21138
+ MergesTest: test_return_attributes
21139
+ ----------------------------------
21140
+  (0.0ms) rollback transaction
21141
+  (0.0ms) begin transaction
21142
+ -----------------------------------
21143
+ CallbacksTest: test_build_callbacks
21144
+ -----------------------------------
21145
+  (0.0ms) rollback transaction
21146
+  (0.0ms) begin transaction
21147
+ ------------------------------------
21148
+ CallbacksTest: test_create_callbacks
21149
+ ------------------------------------
21150
+  (0.0ms) SAVEPOINT active_record_1
21151
+ SQL (0.1ms) INSERT INTO "users" ("age", "created_at", "email", "name", "phone", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["age", 1], ["created_at", "2014-06-25 18:39:43.060136"], ["email", "create@example.com"], ["name", "create"], ["phone", 1], ["updated_at", "2014-06-25 18:39:43.060136"]]
21152
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21153
+  (0.0ms) SAVEPOINT active_record_1
21154
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 1]]
21155
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21156
+  (0.0ms) rollback transaction
21157
+  (0.0ms) begin transaction
21158
+ -------------------------
21159
+ AliasesTest: test_aliases
21160
+ -------------------------
21161
+  (0.0ms) rollback transaction
21162
+  (0.1ms) begin transaction
21163
+ ----------------------------------
21164
+ DependentTest: test_build_instance
21165
+ ----------------------------------
21166
+  (0.0ms) rollback transaction
21167
+  (0.0ms) begin transaction
21168
+ -----------------------------------
21169
+ DependentTest: test_create_instance
21170
+ -----------------------------------
21171
+  (0.0ms) SAVEPOINT active_record_1
21172
+ SQL (0.0ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", "2014-06-25 18:39:43.063969"], ["email", "name@example.com"], ["name", "name"], ["updated_at", "2014-06-25 18:39:43.063969"]]
21173
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21174
+  (0.0ms) SAVEPOINT active_record_1
21175
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 1]]
21176
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21177
+  (0.1ms) rollback transaction
21178
+  (0.0ms) begin transaction
21179
+ -------------------------------------
21180
+ DependentTest: test_return_attributes
21181
+ -------------------------------------
21182
+  (0.1ms) rollback transaction
21183
+  (0.0ms) begin transaction
21184
+ ------------------------------------
21185
+ FabricatorsTest: test_build_instance
21186
+ ------------------------------------
21187
+  (0.0ms) rollback transaction
21188
+  (0.1ms) begin transaction
21189
+ -------------------------------------
21190
+ FabricatorsTest: test_create_instance
21191
+ -------------------------------------
21192
+  (0.0ms) SAVEPOINT active_record_1
21193
+ SQL (0.0ms) INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-06-25 18:39:43.067574"], ["name", "name"], ["updated_at", "2014-06-25 18:39:43.067574"]]
21194
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21195
+  (0.0ms) SAVEPOINT active_record_1
21196
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 1]]
21197
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21198
+  (0.0ms) rollback transaction
21199
+  (0.0ms) begin transaction
21200
+ ---------------------------------------
21201
+ FabricatorsTest: test_return_attributes
21202
+ ---------------------------------------
21203
+  (0.0ms) rollback transaction
21204
+  (0.0ms) begin transaction
21205
+ -------------------------------------
21206
+ CleanTest: test_clean_records_created
21207
+ -------------------------------------
21208
+  (0.0ms) SAVEPOINT active_record_1
21209
+ SQL (0.0ms) INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-06-25 18:39:43.070728"], ["updated_at", "2014-06-25 18:39:43.070728"]]
21210
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21211
+  (0.0ms) SAVEPOINT active_record_1
21212
+ SQL (0.0ms) INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-06-25 18:39:43.071619"], ["updated_at", "2014-06-25 18:39:43.071619"]]
21213
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21214
+  (0.0ms) SAVEPOINT active_record_1
21215
+ SQL (0.0ms) INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-06-25 18:39:43.072469"], ["updated_at", "2014-06-25 18:39:43.072469"]]
21216
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21217
+  (0.0ms) SAVEPOINT active_record_1
21218
+ SQL (0.0ms) INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-06-25 18:39:43.073263"], ["updated_at", "2014-06-25 18:39:43.073263"]]
21219
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21220
+  (0.0ms) SAVEPOINT active_record_1
21221
+ SQL (0.0ms) INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-06-25 18:39:43.074062"], ["updated_at", "2014-06-25 18:39:43.074062"]]
21222
+  (0.1ms) RELEASE SAVEPOINT active_record_1
21223
+  (0.0ms) SAVEPOINT active_record_1
21224
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 5]]
21225
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21226
+  (0.0ms) SAVEPOINT active_record_1
21227
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 4]]
21228
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21229
+  (0.0ms) SAVEPOINT active_record_1
21230
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 3]]
21231
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21232
+  (0.0ms) SAVEPOINT active_record_1
21233
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 2]]
21234
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21235
+  (0.0ms) SAVEPOINT active_record_1
21236
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 1]]
21237
+  (0.1ms) RELEASE SAVEPOINT active_record_1
21238
+  (0.1ms) SELECT COUNT(*) FROM "users"
21239
+  (0.0ms) rollback transaction
21240
+  (0.3ms) CREATE TABLE "groups" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime, "updated_at" datetime) 
21241
+  (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "content" varchar(255), "created_at" datetime, "updated_at" datetime, "user_id" integer)
21242
+  (0.1ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "created_at" datetime, "updated_at" datetime, "age" integer, "phone" integer, "group_id" integer) 
21243
+  (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
21244
+  (0.1ms) select sqlite_version(*)
21245
+  (0.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
21246
+  (0.0ms) SELECT version FROM "schema_migrations"
21247
+  (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20140615181051')
21248
+  (0.1ms) begin transaction
21249
+ -------------------------------------
21250
+ CleanTest: test_clean_records_created
21251
+ -------------------------------------
21252
+  (0.0ms) SAVEPOINT active_record_1
21253
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-06-25 18:52:26.856836"], ["updated_at", "2014-06-25 18:52:26.856836"]]
21254
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21255
+  (0.0ms) SAVEPOINT active_record_1
21256
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-06-25 18:52:26.864970"], ["updated_at", "2014-06-25 18:52:26.864970"]]
21257
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21258
+  (0.0ms) SAVEPOINT active_record_1
21259
+ SQL (0.0ms) INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-06-25 18:52:26.865844"], ["updated_at", "2014-06-25 18:52:26.865844"]]
21260
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21261
+  (0.0ms) SAVEPOINT active_record_1
21262
+ SQL (0.0ms) INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-06-25 18:52:26.866670"], ["updated_at", "2014-06-25 18:52:26.866670"]]
21263
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21264
+  (0.1ms) SAVEPOINT active_record_1
21265
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-06-25 18:52:26.867512"], ["updated_at", "2014-06-25 18:52:26.867512"]]
21266
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21267
+  (0.0ms) SAVEPOINT active_record_1
21268
+ SQL (0.1ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 5]]
21269
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21270
+  (0.0ms) SAVEPOINT active_record_1
21271
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 4]]
21272
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21273
+  (0.0ms) SAVEPOINT active_record_1
21274
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 3]]
21275
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21276
+  (0.0ms) SAVEPOINT active_record_1
21277
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 2]]
21278
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21279
+  (0.0ms) SAVEPOINT active_record_1
21280
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 1]]
21281
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21282
+  (0.1ms) SELECT COUNT(*) FROM "users"
21283
+  (0.0ms) rollback transaction
21284
+  (0.0ms) begin transaction
21285
+ -----------------------------------
21286
+ CallbacksTest: test_build_callbacks
21287
+ -----------------------------------
21288
+  (0.0ms) rollback transaction
21289
+  (0.0ms) begin transaction
21290
+ ------------------------------------
21291
+ CallbacksTest: test_create_callbacks
21292
+ ------------------------------------
21293
+  (0.1ms) SAVEPOINT active_record_1
21294
+ SQL (0.1ms) INSERT INTO "users" ("age", "created_at", "email", "name", "phone", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["age", 1], ["created_at", "2014-06-25 18:52:26.873289"], ["email", "create@example.com"], ["name", "create"], ["phone", 1], ["updated_at", "2014-06-25 18:52:26.873289"]]
21295
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21296
+  (0.0ms) SAVEPOINT active_record_1
21297
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 1]]
21298
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21299
+  (0.0ms) rollback transaction
21300
+  (0.0ms) begin transaction
21301
+ -------------------------------
21302
+ MergesTest: test_build_instance
21303
+ -------------------------------
21304
+  (0.0ms) rollback transaction
21305
+  (0.0ms) begin transaction
21306
+ --------------------------------
21307
+ MergesTest: test_create_instance
21308
+ --------------------------------
21309
+  (0.0ms) SAVEPOINT active_record_1
21310
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-06-25 18:52:26.876751"], ["name", "other"], ["updated_at", "2014-06-25 18:52:26.876751"]]
21311
+  (0.1ms) RELEASE SAVEPOINT active_record_1
21312
+  (0.0ms) SAVEPOINT active_record_1
21313
+ SQL (0.0ms) INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-06-25 18:52:26.877741"], ["name", "other"], ["updated_at", "2014-06-25 18:52:26.877741"]]
21314
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21315
+  (0.1ms) SAVEPOINT active_record_1
21316
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-06-25 18:52:26.878646"], ["name", "other"], ["updated_at", "2014-06-25 18:52:26.878646"]]
21317
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21318
+  (0.0ms) SAVEPOINT active_record_1
21319
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-06-25 18:52:26.879562"], ["name", "other"], ["updated_at", "2014-06-25 18:52:26.879562"]]
21320
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21321
+  (0.0ms) SAVEPOINT active_record_1
21322
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 4]]
21323
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21324
+  (0.0ms) SAVEPOINT active_record_1
21325
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 3]]
21326
+  (0.1ms) RELEASE SAVEPOINT active_record_1
21327
+  (0.0ms) SAVEPOINT active_record_1
21328
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 2]]
21329
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21330
+  (0.0ms) SAVEPOINT active_record_1
21331
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 1]]
21332
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21333
+  (0.0ms) rollback transaction
21334
+  (0.1ms) begin transaction
21335
+ ----------------------------------
21336
+ MergesTest: test_return_attributes
21337
+ ----------------------------------
21338
+  (0.0ms) rollback transaction
21339
+  (0.0ms) begin transaction
21340
+ -------------------------
21341
+ LoadTest: test_find_files
21342
+ -------------------------
21343
+  (0.1ms) rollback transaction
21344
+  (0.1ms) begin transaction
21345
+ --------------------------
21346
+ ListsTest: test_build_list
21347
+ --------------------------
21348
+  (0.0ms) rollback transaction
21349
+  (0.0ms) begin transaction
21350
+ ---------------------------
21351
+ ListsTest: test_create_list
21352
+ ---------------------------
21353
+  (0.0ms) SAVEPOINT active_record_1
21354
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-06-25 18:52:26.886983"], ["name", "name"], ["updated_at", "2014-06-25 18:52:26.886983"]]
21355
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21356
+  (0.0ms) SAVEPOINT active_record_1
21357
+ SQL (0.0ms) INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-06-25 18:52:26.888096"], ["name", "name"], ["updated_at", "2014-06-25 18:52:26.888096"]]
21358
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21359
+  (0.0ms) SAVEPOINT active_record_1
21360
+ SQL (0.0ms) INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-06-25 18:52:26.889007"], ["name", "name"], ["updated_at", "2014-06-25 18:52:26.889007"]]
21361
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21362
+  (0.0ms) SAVEPOINT active_record_1
21363
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 3]]
21364
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21365
+  (0.1ms) SAVEPOINT active_record_1
21366
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 2]]
21367
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21368
+  (0.1ms) SAVEPOINT active_record_1
21369
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 1]]
21370
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21371
+  (0.1ms) rollback transaction
21372
+  (0.0ms) begin transaction
21373
+ ------------------------------------
21374
+ GeneratorsTest: test_file_generation
21375
+ ------------------------------------
21376
+  (0.1ms) rollback transaction
21377
+  (0.1ms) begin transaction
21378
+ ------------------------------------
21379
+ InheritanceTest: test_build_instance
21380
+ ------------------------------------
21381
+  (0.0ms) rollback transaction
21382
+  (0.0ms) begin transaction
21383
+ -------------------------------------
21384
+ InheritanceTest: test_create_instance
21385
+ -------------------------------------
21386
+  (0.0ms) SAVEPOINT active_record_1
21387
+ SQL (0.1ms) INSERT INTO "users" ("age", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["age", 9], ["created_at", "2014-06-25 18:52:26.897321"], ["name", "name"], ["updated_at", "2014-06-25 18:52:26.897321"]]
21388
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21389
+  (0.0ms) SAVEPOINT active_record_1
21390
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", "2014-06-25 18:52:26.898573"], ["email", "mail@example.com"], ["name", "name"], ["updated_at", "2014-06-25 18:52:26.898573"]]
21391
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21392
+  (0.0ms) SAVEPOINT active_record_1
21393
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 2]]
21394
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21395
+  (0.0ms) SAVEPOINT active_record_1
21396
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 1]]
21397
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21398
+  (0.1ms) rollback transaction
21399
+  (0.1ms) begin transaction
21400
+ ---------------------------------------
21401
+ InheritanceTest: test_return_attributes
21402
+ ---------------------------------------
21403
+  (0.0ms) rollback transaction
21404
+  (0.0ms) begin transaction
21405
+ ----------------------------------
21406
+ DependentTest: test_build_instance
21407
+ ----------------------------------
21408
+  (0.0ms) rollback transaction
21409
+  (0.0ms) begin transaction
21410
+ -----------------------------------
21411
+ DependentTest: test_create_instance
21412
+ -----------------------------------
21413
+  (0.0ms) SAVEPOINT active_record_1
21414
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", "2014-06-25 18:52:26.903067"], ["email", "name@example.com"], ["name", "name"], ["updated_at", "2014-06-25 18:52:26.903067"]]
21415
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21416
+  (0.0ms) SAVEPOINT active_record_1
21417
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 1]]
21418
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21419
+  (0.0ms) rollback transaction
21420
+  (0.0ms) begin transaction
21421
+ -------------------------------------
21422
+ DependentTest: test_return_attributes
21423
+ -------------------------------------
21424
+  (0.0ms) rollback transaction
21425
+  (0.1ms) begin transaction
21426
+ ---------------------------------------------
21427
+ AssociationsTest: test_belongs_to_association
21428
+ ---------------------------------------------
21429
+  (0.0ms) SAVEPOINT active_record_1
21430
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-06-25 18:52:26.933620"], ["updated_at", "2014-06-25 18:52:26.933620"]]
21431
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21432
+  (0.0ms) SAVEPOINT active_record_1
21433
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 1]]
21434
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21435
+  (0.0ms) rollback transaction
21436
+  (0.1ms) begin transaction
21437
+ -------------------------------------------
21438
+ AssociationsTest: test_has_many_association
21439
+ -------------------------------------------
21440
+  (0.1ms) SAVEPOINT active_record_1
21441
+ SQL (0.1ms) INSERT INTO "posts" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-06-25 18:52:26.945402"], ["updated_at", "2014-06-25 18:52:26.945402"]]
21442
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21443
+  (0.0ms) SAVEPOINT active_record_1
21444
+ SQL (0.0ms) INSERT INTO "posts" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-06-25 18:52:26.946571"], ["updated_at", "2014-06-25 18:52:26.946571"]]
21445
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21446
+  (0.0ms) SAVEPOINT active_record_1
21447
+ SQL (0.1ms) DELETE FROM "posts" WHERE "posts"."id" = ? [["id", 2]]
21448
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21449
+  (0.0ms) SAVEPOINT active_record_1
21450
+ SQL (0.0ms) DELETE FROM "posts" WHERE "posts"."id" = ? [["id", 1]]
21451
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21452
+  (0.0ms) rollback transaction
21453
+  (0.0ms) begin transaction
21454
+ -------------------------
21455
+ AliasesTest: test_aliases
21456
+ -------------------------
21457
+  (0.0ms) rollback transaction
21458
+  (0.1ms) begin transaction
21459
+ -----------------------------------
21460
+ AttributesTest: test_block_sequence
21461
+ -----------------------------------
21462
+  (0.0ms) SAVEPOINT active_record_1
21463
+ SQL (0.1ms) INSERT INTO "users" ("age", "created_at", "email", "updated_at") VALUES (?, ?, ?, ?) [["age", 3], ["created_at", "2014-06-25 18:52:26.951687"], ["email", "mail3@example.com"], ["updated_at", "2014-06-25 18:52:26.951687"]]
21464
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21465
+  (0.0ms) SAVEPOINT active_record_1
21466
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 1]]
21467
+  (0.1ms) RELEASE SAVEPOINT active_record_1
21468
+  (0.0ms) rollback transaction
21469
+  (0.0ms) begin transaction
21470
+ -------------------------------------
21471
+ AttributesTest: test_numeric_sequence
21472
+ -------------------------------------
21473
+  (0.0ms) SAVEPOINT active_record_1
21474
+ SQL (0.0ms) INSERT INTO "users" ("age", "created_at", "email", "updated_at") VALUES (?, ?, ?, ?) [["age", 3], ["created_at", "2014-06-25 18:52:26.953831"], ["email", "mail3@example.com"], ["updated_at", "2014-06-25 18:52:26.953831"]]
21475
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21476
+  (0.1ms) SAVEPOINT active_record_1
21477
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 1]]
21478
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21479
+  (0.0ms) rollback transaction
21480
+  (0.0ms) begin transaction
21481
+ ------------------------------------
21482
+ FabricatorsTest: test_build_instance
21483
+ ------------------------------------
21484
+  (0.0ms) rollback transaction
21485
+  (0.0ms) begin transaction
21486
+ -------------------------------------
21487
+ FabricatorsTest: test_create_instance
21488
+ -------------------------------------
21489
+  (0.0ms) SAVEPOINT active_record_1
21490
+ SQL (0.0ms) INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-06-25 18:52:26.956831"], ["name", "name"], ["updated_at", "2014-06-25 18:52:26.956831"]]
21491
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21492
+  (0.0ms) SAVEPOINT active_record_1
21493
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 1]]
21494
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21495
+  (0.0ms) rollback transaction
21496
+  (0.0ms) begin transaction
21497
+ ---------------------------------------
21498
+ FabricatorsTest: test_return_attributes
21499
+ ---------------------------------------
21500
+  (0.0ms) rollback transaction
21501
+  (0.3ms) CREATE TABLE "groups" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime, "updated_at" datetime) 
21502
+  (0.1ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "content" varchar(255), "created_at" datetime, "updated_at" datetime, "user_id" integer)
21503
+  (0.1ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "created_at" datetime, "updated_at" datetime, "age" integer, "phone" integer, "group_id" integer) 
21504
+  (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
21505
+  (0.1ms) select sqlite_version(*)
21506
+  (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
21507
+  (0.1ms) SELECT version FROM "schema_migrations"
21508
+  (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20140615181051')
21509
+  (0.1ms) begin transaction
21510
+ ------------------------------------
21511
+ FabricatorsTest: test_build_instance
21512
+ ------------------------------------
21513
+  (0.1ms) rollback transaction
21514
+  (0.0ms) begin transaction
21515
+ -------------------------------------
21516
+ FabricatorsTest: test_create_instance
21517
+ -------------------------------------
21518
+  (0.0ms) SAVEPOINT active_record_1
21519
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-06-25 18:58:36.187426"], ["name", "name"], ["updated_at", "2014-06-25 18:58:36.187426"]]
21520
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21521
+  (0.0ms) SAVEPOINT active_record_1
21522
+ SQL (0.1ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 1]]
21523
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21524
+  (0.0ms) rollback transaction
21525
+  (0.0ms) begin transaction
21526
+ ---------------------------------------
21527
+ FabricatorsTest: test_return_attributes
21528
+ ---------------------------------------
21529
+  (0.0ms) rollback transaction
21530
+  (0.1ms) begin transaction
21531
+ ------------------------------------
21532
+ GeneratorsTest: test_file_generation
21533
+ ------------------------------------
21534
+  (0.0ms) rollback transaction
21535
+  (0.0ms) begin transaction
21536
+ ---------------------------------------------
21537
+ AssociationsTest: test_belongs_to_association
21538
+ ---------------------------------------------
21539
+  (0.1ms) SAVEPOINT active_record_1
21540
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-06-25 18:58:36.202217"], ["updated_at", "2014-06-25 18:58:36.202217"]]
21541
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21542
+  (0.0ms) SAVEPOINT active_record_1
21543
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 1]]
21544
+  (0.1ms) RELEASE SAVEPOINT active_record_1
21545
+  (0.0ms) rollback transaction
21546
+  (0.1ms) begin transaction
21547
+ -------------------------------------------
21548
+ AssociationsTest: test_has_many_association
21549
+ -------------------------------------------
21550
+  (0.1ms) SAVEPOINT active_record_1
21551
+ SQL (0.1ms) INSERT INTO "posts" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-06-25 18:58:36.214152"], ["updated_at", "2014-06-25 18:58:36.214152"]]
21552
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21553
+  (0.0ms) SAVEPOINT active_record_1
21554
+ SQL (0.1ms) INSERT INTO "posts" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-06-25 18:58:36.215319"], ["updated_at", "2014-06-25 18:58:36.215319"]]
21555
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21556
+  (0.0ms) SAVEPOINT active_record_1
21557
+ SQL (0.1ms) DELETE FROM "posts" WHERE "posts"."id" = ? [["id", 2]]
21558
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21559
+  (0.0ms) SAVEPOINT active_record_1
21560
+ SQL (0.0ms) DELETE FROM "posts" WHERE "posts"."id" = ? [["id", 1]]
21561
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21562
+  (0.0ms) rollback transaction
21563
+  (0.0ms) begin transaction
21564
+ -------------------------
21565
+ LoadTest: test_find_files
21566
+ -------------------------
21567
+  (0.0ms) rollback transaction
21568
+  (0.1ms) begin transaction
21569
+ -------------------------
21570
+ AliasesTest: test_aliases
21571
+ -------------------------
21572
+  (0.1ms) rollback transaction
21573
+  (0.0ms) begin transaction
21574
+ -----------------------------------
21575
+ CallbacksTest: test_build_callbacks
21576
+ -----------------------------------
21577
+  (0.0ms) rollback transaction
21578
+  (0.0ms) begin transaction
21579
+ ------------------------------------
21580
+ CallbacksTest: test_create_callbacks
21581
+ ------------------------------------
21582
+  (0.0ms) SAVEPOINT active_record_1
21583
+ SQL (0.1ms) INSERT INTO "users" ("age", "created_at", "email", "name", "phone", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["age", 1], ["created_at", "2014-06-25 18:58:36.242444"], ["email", "create@example.com"], ["name", "create"], ["phone", 1], ["updated_at", "2014-06-25 18:58:36.242444"]]
21584
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21585
+  (0.0ms) SAVEPOINT active_record_1
21586
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 1]]
21587
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21588
+  (0.0ms) rollback transaction
21589
+  (0.1ms) begin transaction
21590
+ -------------------------------------
21591
+ CleanTest: test_clean_records_created
21592
+ -------------------------------------
21593
+  (0.0ms) SAVEPOINT active_record_1
21594
+ SQL (0.0ms) INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-06-25 18:58:36.245315"], ["updated_at", "2014-06-25 18:58:36.245315"]]
21595
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21596
+  (0.0ms) SAVEPOINT active_record_1
21597
+ SQL (0.0ms) INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-06-25 18:58:36.246253"], ["updated_at", "2014-06-25 18:58:36.246253"]]
21598
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21599
+  (0.0ms) SAVEPOINT active_record_1
21600
+ SQL (0.0ms) INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-06-25 18:58:36.247072"], ["updated_at", "2014-06-25 18:58:36.247072"]]
21601
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21602
+  (0.0ms) SAVEPOINT active_record_1
21603
+ SQL (0.0ms) INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-06-25 18:58:36.247881"], ["updated_at", "2014-06-25 18:58:36.247881"]]
21604
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21605
+  (0.0ms) SAVEPOINT active_record_1
21606
+ SQL (0.0ms) INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-06-25 18:58:36.248688"], ["updated_at", "2014-06-25 18:58:36.248688"]]
21607
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21608
+  (0.0ms) SAVEPOINT active_record_1
21609
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 5]]
21610
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21611
+  (0.0ms) SAVEPOINT active_record_1
21612
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 4]]
21613
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21614
+  (0.0ms) SAVEPOINT active_record_1
21615
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 3]]
21616
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21617
+  (0.0ms) SAVEPOINT active_record_1
21618
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 2]]
21619
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21620
+  (0.0ms) SAVEPOINT active_record_1
21621
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 1]]
21622
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21623
+  (0.1ms) SELECT COUNT(*) FROM "users"
21624
+  (0.0ms) rollback transaction
21625
+  (0.0ms) begin transaction
21626
+ -------------------------------
21627
+ MergesTest: test_build_instance
21628
+ -------------------------------
21629
+  (0.0ms) rollback transaction
21630
+  (0.1ms) begin transaction
21631
+ --------------------------------
21632
+ MergesTest: test_create_instance
21633
+ --------------------------------
21634
+  (0.1ms) SAVEPOINT active_record_1
21635
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-06-25 18:58:36.254164"], ["name", "other"], ["updated_at", "2014-06-25 18:58:36.254164"]]
21636
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21637
+  (0.0ms) SAVEPOINT active_record_1
21638
+ SQL (0.0ms) INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-06-25 18:58:36.255110"], ["name", "other"], ["updated_at", "2014-06-25 18:58:36.255110"]]
21639
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21640
+  (0.0ms) SAVEPOINT active_record_1
21641
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-06-25 18:58:36.255999"], ["name", "other"], ["updated_at", "2014-06-25 18:58:36.255999"]]
21642
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21643
+  (0.0ms) SAVEPOINT active_record_1
21644
+ SQL (0.0ms) INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-06-25 18:58:36.256842"], ["name", "other"], ["updated_at", "2014-06-25 18:58:36.256842"]]
21645
+  (0.1ms) RELEASE SAVEPOINT active_record_1
21646
+  (0.0ms) SAVEPOINT active_record_1
21647
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 4]]
21648
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21649
+  (0.0ms) SAVEPOINT active_record_1
21650
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 3]]
21651
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21652
+  (0.0ms) SAVEPOINT active_record_1
21653
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 2]]
21654
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21655
+  (0.0ms) SAVEPOINT active_record_1
21656
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 1]]
21657
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21658
+  (0.0ms) rollback transaction
21659
+  (0.0ms) begin transaction
21660
+ ----------------------------------
21661
+ MergesTest: test_return_attributes
21662
+ ----------------------------------
21663
+  (0.0ms) rollback transaction
21664
+  (0.1ms) begin transaction
21665
+ -----------------------------------
21666
+ AttributesTest: test_block_sequence
21667
+ -----------------------------------
21668
+  (0.0ms) SAVEPOINT active_record_1
21669
+ SQL (0.1ms) INSERT INTO "users" ("age", "created_at", "email", "updated_at") VALUES (?, ?, ?, ?) [["age", 3], ["created_at", "2014-06-25 18:58:36.261010"], ["email", "mail3@example.com"], ["updated_at", "2014-06-25 18:58:36.261010"]]
21670
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21671
+  (0.0ms) SAVEPOINT active_record_1
21672
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 1]]
21673
+  (0.1ms) RELEASE SAVEPOINT active_record_1
21674
+  (0.0ms) rollback transaction
21675
+  (0.0ms) begin transaction
21676
+ -------------------------------------
21677
+ AttributesTest: test_numeric_sequence
21678
+ -------------------------------------
21679
+  (0.0ms) SAVEPOINT active_record_1
21680
+ SQL (0.0ms) INSERT INTO "users" ("age", "created_at", "email", "updated_at") VALUES (?, ?, ?, ?) [["age", 3], ["created_at", "2014-06-25 18:58:36.262992"], ["email", "mail3@example.com"], ["updated_at", "2014-06-25 18:58:36.262992"]]
21681
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21682
+  (0.0ms) SAVEPOINT active_record_1
21683
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 1]]
21684
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21685
+  (0.0ms) rollback transaction
21686
+  (0.0ms) begin transaction
21687
+ ------------------------------------
21688
+ InheritanceTest: test_build_instance
21689
+ ------------------------------------
21690
+  (0.0ms) rollback transaction
21691
+  (0.0ms) begin transaction
21692
+ -------------------------------------
21693
+ InheritanceTest: test_create_instance
21694
+ -------------------------------------
21695
+  (0.0ms) SAVEPOINT active_record_1
21696
+ SQL (0.1ms) INSERT INTO "users" ("age", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["age", 9], ["created_at", "2014-06-25 18:58:36.266143"], ["name", "name"], ["updated_at", "2014-06-25 18:58:36.266143"]]
21697
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21698
+  (0.0ms) SAVEPOINT active_record_1
21699
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", "2014-06-25 18:58:36.267201"], ["email", "mail@example.com"], ["name", "name"], ["updated_at", "2014-06-25 18:58:36.267201"]]
21700
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21701
+  (0.0ms) SAVEPOINT active_record_1
21702
+ SQL (0.1ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 2]]
21703
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21704
+  (0.0ms) SAVEPOINT active_record_1
21705
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 1]]
21706
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21707
+  (0.1ms) rollback transaction
21708
+  (0.0ms) begin transaction
21709
+ ---------------------------------------
21710
+ InheritanceTest: test_return_attributes
21711
+ ---------------------------------------
21712
+  (0.0ms) rollback transaction
21713
+  (0.0ms) begin transaction
21714
+ --------------------------
21715
+ ListsTest: test_build_list
21716
+ --------------------------
21717
+  (0.0ms) rollback transaction
21718
+  (0.0ms) begin transaction
21719
+ ---------------------------
21720
+ ListsTest: test_create_list
21721
+ ---------------------------
21722
+  (0.0ms) SAVEPOINT active_record_1
21723
+ SQL (0.0ms) INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-06-25 18:58:36.271578"], ["name", "name"], ["updated_at", "2014-06-25 18:58:36.271578"]]
21724
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21725
+  (0.0ms) SAVEPOINT active_record_1
21726
+ SQL (0.0ms) INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-06-25 18:58:36.272484"], ["name", "name"], ["updated_at", "2014-06-25 18:58:36.272484"]]
21727
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21728
+  (0.0ms) SAVEPOINT active_record_1
21729
+ SQL (0.0ms) INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-06-25 18:58:36.273355"], ["name", "name"], ["updated_at", "2014-06-25 18:58:36.273355"]]
21730
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21731
+  (0.0ms) SAVEPOINT active_record_1
21732
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 3]]
21733
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21734
+  (0.0ms) SAVEPOINT active_record_1
21735
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 2]]
21736
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21737
+  (0.1ms) SAVEPOINT active_record_1
21738
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 1]]
21739
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21740
+  (0.0ms) rollback transaction
21741
+  (0.0ms) begin transaction
21742
+ ----------------------------------
21743
+ DependentTest: test_build_instance
21744
+ ----------------------------------
21745
+  (0.0ms) rollback transaction
21746
+  (0.0ms) begin transaction
21747
+ -----------------------------------
21748
+ DependentTest: test_create_instance
21749
+ -----------------------------------
21750
+  (0.1ms) rollback transaction
21751
+  (0.0ms) begin transaction
21752
+ -------------------------------------
21753
+ DependentTest: test_return_attributes
21754
+ -------------------------------------
21755
+  (0.1ms) rollback transaction
21756
+  (0.3ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "content" varchar(255), "user_id" integer, "created_at" datetime, "updated_at" datetime) 
21757
+  (0.1ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "username" varchar(255), "name" varchar(255), "email" varchar(255), "age" integer, "phone" integer, "created_at" datetime, "updated_at" datetime)
21758
+  (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
21759
+  (0.1ms) select sqlite_version(*)
21760
+  (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
21761
+  (0.0ms) SELECT version FROM "schema_migrations"
21762
+  (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20140615180954')
21763
+  (0.1ms) begin transaction
21764
+ -------------------------
21765
+ LoadTest: test_find_files
21766
+ -------------------------
21767
+  (0.1ms) rollback transaction
21768
+  (0.0ms) begin transaction
21769
+ -----------------------------------
21770
+ AttributesTest: test_block_sequence
21771
+ -----------------------------------
21772
+  (0.0ms) SAVEPOINT active_record_1
21773
+ SQL (0.1ms) INSERT INTO "users" ("age", "created_at", "email", "updated_at") VALUES (?, ?, ?, ?) [["age", 3], ["created_at", "2014-06-25 19:03:00.433338"], ["email", "mail3@example.com"], ["updated_at", "2014-06-25 19:03:00.433338"]]
21774
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21775
+  (0.0ms) SAVEPOINT active_record_1
21776
+ SQL (0.1ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 1]]
21777
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21778
+  (0.1ms) rollback transaction
21779
+  (0.0ms) begin transaction
21780
+ -------------------------------------
21781
+ AttributesTest: test_numeric_sequence
21782
+ -------------------------------------
21783
+  (0.0ms) SAVEPOINT active_record_1
21784
+ SQL (0.0ms) INSERT INTO "users" ("age", "created_at", "email", "updated_at") VALUES (?, ?, ?, ?) [["age", 3], ["created_at", "2014-06-25 19:03:00.437637"], ["email", "mail3@example.com"], ["updated_at", "2014-06-25 19:03:00.437637"]]
21785
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21786
+  (0.0ms) SAVEPOINT active_record_1
21787
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 1]]
21788
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21789
+  (0.0ms) rollback transaction
21790
+  (0.0ms) begin transaction
21791
+ ------------------------------------
21792
+ InheritanceTest: test_build_instance
21793
+ ------------------------------------
21794
+  (0.0ms) rollback transaction
21795
+  (0.0ms) begin transaction
21796
+ -------------------------------------
21797
+ InheritanceTest: test_create_instance
21798
+ -------------------------------------
21799
+  (0.0ms) SAVEPOINT active_record_1
21800
+ SQL (0.1ms) INSERT INTO "users" ("age", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["age", 9], ["created_at", "2014-06-25 19:03:00.440945"], ["name", "name"], ["updated_at", "2014-06-25 19:03:00.440945"]]
21801
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21802
+  (0.0ms) SAVEPOINT active_record_1
21803
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", "2014-06-25 19:03:00.441971"], ["email", "mail@example.com"], ["name", "name"], ["updated_at", "2014-06-25 19:03:00.441971"]]
21804
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21805
+  (0.0ms) SAVEPOINT active_record_1
21806
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 2]]
21807
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21808
+  (0.0ms) SAVEPOINT active_record_1
21809
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 1]]
21810
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21811
+  (0.0ms) rollback transaction
21812
+  (0.0ms) begin transaction
21813
+ ---------------------------------------
21814
+ InheritanceTest: test_return_attributes
21815
+ ---------------------------------------
21816
+  (0.0ms) rollback transaction
21817
+  (0.0ms) begin transaction
21818
+ ----------------------------------
21819
+ DependentTest: test_build_instance
21820
+ ----------------------------------
21821
+  (0.0ms) rollback transaction
21822
+  (0.0ms) begin transaction
21823
+ -----------------------------------
21824
+ DependentTest: test_create_instance
21825
+ -----------------------------------
21826
+  (0.0ms) SAVEPOINT active_record_1
21827
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at", "username") VALUES (?, ?, ?, ?, ?) [["created_at", "2014-06-25 19:03:00.446585"], ["email", "name@example.com"], ["name", "name"], ["updated_at", "2014-06-25 19:03:00.446585"], ["username", "name-1"]]
21828
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21829
+  (0.0ms) SAVEPOINT active_record_1
21830
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at", "username") VALUES (?, ?, ?, ?, ?) [["created_at", "2014-06-25 19:03:00.447651"], ["email", "name@example.com"], ["name", "name"], ["updated_at", "2014-06-25 19:03:00.447651"], ["username", "name-2"]]
21831
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21832
+  (0.0ms) SAVEPOINT active_record_1
21833
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 2]]
21834
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21835
+  (0.0ms) SAVEPOINT active_record_1
21836
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 1]]
21837
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21838
+  (0.0ms) rollback transaction
21839
+  (0.0ms) begin transaction
21840
+ -------------------------------------
21841
+ DependentTest: test_return_attributes
21842
+ -------------------------------------
21843
+  (0.0ms) rollback transaction
21844
+  (0.0ms) begin transaction
21845
+ ------------------------------------
21846
+ FabricatorsTest: test_build_instance
21847
+ ------------------------------------
21848
+  (0.0ms) rollback transaction
21849
+  (0.0ms) begin transaction
21850
+ -------------------------------------
21851
+ FabricatorsTest: test_create_instance
21852
+ -------------------------------------
21853
+  (0.0ms) SAVEPOINT active_record_1
21854
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-06-25 19:03:00.451593"], ["name", "name"], ["updated_at", "2014-06-25 19:03:00.451593"]]
21855
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21856
+  (0.0ms) SAVEPOINT active_record_1
21857
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 1]]
21858
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21859
+  (0.0ms) rollback transaction
21860
+  (0.0ms) begin transaction
21861
+ ---------------------------------------
21862
+ FabricatorsTest: test_return_attributes
21863
+ ---------------------------------------
21864
+  (0.0ms) rollback transaction
21865
+  (0.1ms) begin transaction
21866
+ ---------------------------------------------
21867
+ AssociationsTest: test_belongs_to_association
21868
+ ---------------------------------------------
21869
+  (0.1ms) SAVEPOINT active_record_1
21870
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-06-25 19:03:00.461207"], ["updated_at", "2014-06-25 19:03:00.461207"]]
21871
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21872
+  (0.0ms) SAVEPOINT active_record_1
21873
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 1]]
21874
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21875
+  (0.0ms) rollback transaction
21876
+  (0.1ms) begin transaction
21877
+ -------------------------------------------
21878
+ AssociationsTest: test_has_many_association
21879
+ -------------------------------------------
21880
+  (0.1ms) SAVEPOINT active_record_1
21881
+ SQL (0.1ms) INSERT INTO "posts" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-06-25 19:03:00.492214"], ["updated_at", "2014-06-25 19:03:00.492214"]]
21882
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21883
+  (0.1ms) SAVEPOINT active_record_1
21884
+ SQL (0.0ms) INSERT INTO "posts" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-06-25 19:03:00.493386"], ["updated_at", "2014-06-25 19:03:00.493386"]]
21885
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21886
+  (0.0ms) SAVEPOINT active_record_1
21887
+ SQL (0.1ms) DELETE FROM "posts" WHERE "posts"."id" = ? [["id", 2]]
21888
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21889
+  (0.0ms) SAVEPOINT active_record_1
21890
+ SQL (0.0ms) DELETE FROM "posts" WHERE "posts"."id" = ? [["id", 1]]
21891
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21892
+  (0.0ms) rollback transaction
21893
+  (0.0ms) begin transaction
21894
+ ------------------------------------
21895
+ GeneratorsTest: test_file_generation
21896
+ ------------------------------------
21897
+  (0.0ms) rollback transaction
21898
+  (0.0ms) begin transaction
21899
+ -------------------------------
21900
+ MergesTest: test_build_instance
21901
+ -------------------------------
21902
+  (0.0ms) rollback transaction
21903
+  (0.0ms) begin transaction
21904
+ --------------------------------
21905
+ MergesTest: test_create_instance
21906
+ --------------------------------
21907
+  (0.0ms) SAVEPOINT active_record_1
21908
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-06-25 19:03:00.500881"], ["name", "other"], ["updated_at", "2014-06-25 19:03:00.500881"]]
21909
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21910
+  (0.0ms) SAVEPOINT active_record_1
21911
+ SQL (0.0ms) INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-06-25 19:03:00.501847"], ["name", "other"], ["updated_at", "2014-06-25 19:03:00.501847"]]
21912
+  (0.1ms) RELEASE SAVEPOINT active_record_1
21913
+  (0.0ms) SAVEPOINT active_record_1
21914
+ SQL (0.0ms) INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-06-25 19:03:00.502707"], ["name", "other"], ["updated_at", "2014-06-25 19:03:00.502707"]]
21915
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21916
+  (0.0ms) SAVEPOINT active_record_1
21917
+ SQL (0.0ms) INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-06-25 19:03:00.503498"], ["name", "other"], ["updated_at", "2014-06-25 19:03:00.503498"]]
21918
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21919
+  (0.0ms) SAVEPOINT active_record_1
21920
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 4]]
21921
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21922
+  (0.0ms) SAVEPOINT active_record_1
21923
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 3]]
21924
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21925
+  (0.0ms) SAVEPOINT active_record_1
21926
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 2]]
21927
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21928
+  (0.0ms) SAVEPOINT active_record_1
21929
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 1]]
21930
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21931
+  (0.0ms) rollback transaction
21932
+  (0.0ms) begin transaction
21933
+ ----------------------------------
21934
+ MergesTest: test_return_attributes
21935
+ ----------------------------------
21936
+  (0.0ms) rollback transaction
21937
+  (0.0ms) begin transaction
21938
+ --------------------------
21939
+ ListsTest: test_build_list
21940
+ --------------------------
21941
+  (0.1ms) rollback transaction
21942
+  (0.0ms) begin transaction
21943
+ ---------------------------
21944
+ ListsTest: test_create_list
21945
+ ---------------------------
21946
+  (0.0ms) SAVEPOINT active_record_1
21947
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-06-25 19:03:00.508549"], ["name", "name"], ["updated_at", "2014-06-25 19:03:00.508549"]]
21948
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21949
+  (0.0ms) SAVEPOINT active_record_1
21950
+ SQL (0.0ms) INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-06-25 19:03:00.509543"], ["name", "name"], ["updated_at", "2014-06-25 19:03:00.509543"]]
21951
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21952
+  (0.0ms) SAVEPOINT active_record_1
21953
+ SQL (0.0ms) INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-06-25 19:03:00.510454"], ["name", "name"], ["updated_at", "2014-06-25 19:03:00.510454"]]
21954
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21955
+  (0.0ms) SAVEPOINT active_record_1
21956
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 3]]
21957
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21958
+  (0.0ms) SAVEPOINT active_record_1
21959
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 2]]
21960
+  (0.1ms) RELEASE SAVEPOINT active_record_1
21961
+  (0.0ms) SAVEPOINT active_record_1
21962
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 1]]
21963
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21964
+  (0.0ms) rollback transaction
21965
+  (0.0ms) begin transaction
21966
+ -------------------------------------
21967
+ CleanTest: test_clean_records_created
21968
+ -------------------------------------
21969
+  (0.1ms) SAVEPOINT active_record_1
21970
+ SQL (0.0ms) INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-06-25 19:03:00.514046"], ["updated_at", "2014-06-25 19:03:00.514046"]]
21971
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21972
+  (0.0ms) SAVEPOINT active_record_1
21973
+ SQL (0.0ms) INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-06-25 19:03:00.514880"], ["updated_at", "2014-06-25 19:03:00.514880"]]
21974
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21975
+  (0.0ms) SAVEPOINT active_record_1
21976
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-06-25 19:03:00.515699"], ["updated_at", "2014-06-25 19:03:00.515699"]]
21977
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21978
+  (0.0ms) SAVEPOINT active_record_1
21979
+ SQL (0.0ms) INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-06-25 19:03:00.516472"], ["updated_at", "2014-06-25 19:03:00.516472"]]
21980
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21981
+  (0.0ms) SAVEPOINT active_record_1
21982
+ SQL (0.0ms) INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-06-25 19:03:00.517227"], ["updated_at", "2014-06-25 19:03:00.517227"]]
21983
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21984
+  (0.0ms) SAVEPOINT active_record_1
21985
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 5]]
21986
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21987
+  (0.0ms) SAVEPOINT active_record_1
21988
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 4]]
21989
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21990
+  (0.0ms) SAVEPOINT active_record_1
21991
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 3]]
21992
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21993
+  (0.0ms) SAVEPOINT active_record_1
21994
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 2]]
21995
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21996
+  (0.0ms) SAVEPOINT active_record_1
21997
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 1]]
21998
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21999
+  (0.1ms) SELECT COUNT(*) FROM "users"
22000
+  (0.0ms) rollback transaction
22001
+  (0.0ms) begin transaction
22002
+ -----------------------------------
22003
+ CallbacksTest: test_build_callbacks
22004
+ -----------------------------------
22005
+  (0.0ms) rollback transaction
22006
+  (0.0ms) begin transaction
22007
+ ------------------------------------
22008
+ CallbacksTest: test_create_callbacks
22009
+ ------------------------------------
22010
+  (0.0ms) SAVEPOINT active_record_1
22011
+ SQL (0.1ms) INSERT INTO "users" ("age", "created_at", "email", "name", "phone", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["age", 1], ["created_at", "2014-06-25 19:03:00.522310"], ["email", "create@example.com"], ["name", "create"], ["phone", 1], ["updated_at", "2014-06-25 19:03:00.522310"]]
22012
+  (0.1ms) RELEASE SAVEPOINT active_record_1
22013
+  (0.0ms) SAVEPOINT active_record_1
22014
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 1]]
22015
+  (0.0ms) RELEASE SAVEPOINT active_record_1
22016
+  (0.0ms) rollback transaction
22017
+  (0.0ms) begin transaction
22018
+ -------------------------
22019
+ AliasesTest: test_aliases
22020
+ -------------------------
22021
+  (0.0ms) rollback transaction
22022
+  (0.3ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "content" varchar(255), "user_id" integer, "created_at" datetime, "updated_at" datetime) 
22023
+  (0.1ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "username" varchar(255), "name" varchar(255), "email" varchar(255), "age" integer, "phone" integer, "created_at" datetime, "updated_at" datetime)
22024
+  (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
22025
+  (0.1ms) select sqlite_version(*)
22026
+  (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
22027
+  (0.0ms) SELECT version FROM "schema_migrations"
22028
+  (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20140615180954')
22029
+  (0.1ms) begin transaction
22030
+ ----------------------------------
22031
+ DependentTest: test_build_instance
22032
+ ----------------------------------
22033
+  (0.1ms) rollback transaction
22034
+  (0.0ms) begin transaction
22035
+ -----------------------------------
22036
+ DependentTest: test_create_instance
22037
+ -----------------------------------
22038
+  (0.0ms) SAVEPOINT active_record_1
22039
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at", "username") VALUES (?, ?, ?, ?, ?) [["created_at", "2014-06-25 23:27:42.704750"], ["email", "name@example.com"], ["name", "name"], ["updated_at", "2014-06-25 23:27:42.704750"], ["username", "name-1"]]
22040
+  (0.1ms) RELEASE SAVEPOINT active_record_1
22041
+  (0.0ms) SAVEPOINT active_record_1
22042
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at", "username") VALUES (?, ?, ?, ?, ?) [["created_at", "2014-06-25 23:27:42.708220"], ["email", "name@example.com"], ["name", "name"], ["updated_at", "2014-06-25 23:27:42.708220"], ["username", "name-2"]]
22043
+  (0.0ms) RELEASE SAVEPOINT active_record_1
22044
+  (0.0ms) SAVEPOINT active_record_1
22045
+ SQL (0.1ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 2]]
22046
+  (0.1ms) RELEASE SAVEPOINT active_record_1
22047
+  (0.0ms) SAVEPOINT active_record_1
22048
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 1]]
22049
+  (0.0ms) RELEASE SAVEPOINT active_record_1
22050
+  (0.1ms) rollback transaction
22051
+  (0.0ms) begin transaction
22052
+ -------------------------------------
22053
+ DependentTest: test_return_attributes
22054
+ -------------------------------------
22055
+  (0.0ms) rollback transaction
22056
+  (0.0ms) begin transaction
22057
+ -----------------------------------
22058
+ AttributesTest: test_block_sequence
22059
+ -----------------------------------
22060
+  (0.0ms) SAVEPOINT active_record_1
22061
+ SQL (0.1ms) INSERT INTO "users" ("age", "created_at", "email", "updated_at") VALUES (?, ?, ?, ?) [["age", 3], ["created_at", "2014-06-25 23:27:42.712874"], ["email", "mail3@example.com"], ["updated_at", "2014-06-25 23:27:42.712874"]]
22062
+  (0.1ms) RELEASE SAVEPOINT active_record_1
22063
+  (0.0ms) SAVEPOINT active_record_1
22064
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 1]]
22065
+  (0.0ms) RELEASE SAVEPOINT active_record_1
22066
+  (0.1ms) rollback transaction
22067
+  (0.0ms) begin transaction
22068
+ -------------------------------------
22069
+ AttributesTest: test_numeric_sequence
22070
+ -------------------------------------
22071
+  (0.0ms) SAVEPOINT active_record_1
22072
+ SQL (0.1ms) INSERT INTO "users" ("age", "created_at", "email", "updated_at") VALUES (?, ?, ?, ?) [["age", 3], ["created_at", "2014-06-25 23:27:42.715175"], ["email", "mail3@example.com"], ["updated_at", "2014-06-25 23:27:42.715175"]]
22073
+  (0.0ms) RELEASE SAVEPOINT active_record_1
22074
+  (0.0ms) SAVEPOINT active_record_1
22075
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 1]]
22076
+  (0.0ms) RELEASE SAVEPOINT active_record_1
22077
+  (0.0ms) rollback transaction
22078
+  (0.0ms) begin transaction
22079
+ -------------------------
22080
+ LoadTest: test_find_files
22081
+ -------------------------
22082
+  (0.0ms) rollback transaction
22083
+  (0.0ms) begin transaction
22084
+ ---------------------------------------------
22085
+ AssociationsTest: test_belongs_to_association
22086
+ ---------------------------------------------
22087
+  (0.0ms) SAVEPOINT active_record_1
22088
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-06-25 23:27:42.725585"], ["updated_at", "2014-06-25 23:27:42.725585"]]
22089
+  (0.0ms) RELEASE SAVEPOINT active_record_1
22090
+  (0.1ms) SAVEPOINT active_record_1
22091
+ SQL (0.1ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 1]]
22092
+  (0.1ms) RELEASE SAVEPOINT active_record_1
22093
+  (0.0ms) rollback transaction
22094
+  (0.0ms) begin transaction
22095
+ -------------------------------------------
22096
+ AssociationsTest: test_has_many_association
22097
+ -------------------------------------------
22098
+  (0.1ms) SAVEPOINT active_record_1
22099
+ SQL (0.1ms) INSERT INTO "posts" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-06-25 23:27:42.738940"], ["updated_at", "2014-06-25 23:27:42.738940"]]
22100
+  (0.0ms) RELEASE SAVEPOINT active_record_1
22101
+  (0.0ms) SAVEPOINT active_record_1
22102
+ SQL (0.0ms) INSERT INTO "posts" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-06-25 23:27:42.740237"], ["updated_at", "2014-06-25 23:27:42.740237"]]
22103
+  (0.0ms) RELEASE SAVEPOINT active_record_1
22104
+  (0.1ms) SAVEPOINT active_record_1
22105
+ SQL (0.1ms) DELETE FROM "posts" WHERE "posts"."id" = ? [["id", 2]]
22106
+  (0.0ms) RELEASE SAVEPOINT active_record_1
22107
+  (0.1ms) SAVEPOINT active_record_1
22108
+ SQL (0.0ms) DELETE FROM "posts" WHERE "posts"."id" = ? [["id", 1]]
22109
+  (0.0ms) RELEASE SAVEPOINT active_record_1
22110
+  (0.0ms) rollback transaction
22111
+  (0.0ms) begin transaction
22112
+ -------------------------------------
22113
+ CleanTest: test_clean_records_created
22114
+ -------------------------------------
22115
+  (0.0ms) SAVEPOINT active_record_1
22116
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-06-25 23:27:42.763992"], ["updated_at", "2014-06-25 23:27:42.763992"]]
22117
+  (0.0ms) RELEASE SAVEPOINT active_record_1
22118
+  (0.0ms) SAVEPOINT active_record_1
22119
+ SQL (0.0ms) INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-06-25 23:27:42.764989"], ["updated_at", "2014-06-25 23:27:42.764989"]]
22120
+  (0.0ms) RELEASE SAVEPOINT active_record_1
22121
+  (0.0ms) SAVEPOINT active_record_1
22122
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-06-25 23:27:42.765907"], ["updated_at", "2014-06-25 23:27:42.765907"]]
22123
+  (0.0ms) RELEASE SAVEPOINT active_record_1
22124
+  (0.0ms) SAVEPOINT active_record_1
22125
+ SQL (0.0ms) INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-06-25 23:27:42.766703"], ["updated_at", "2014-06-25 23:27:42.766703"]]
22126
+  (0.0ms) RELEASE SAVEPOINT active_record_1
22127
+  (0.0ms) SAVEPOINT active_record_1
22128
+ SQL (0.0ms) INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-06-25 23:27:42.767540"], ["updated_at", "2014-06-25 23:27:42.767540"]]
22129
+  (0.0ms) RELEASE SAVEPOINT active_record_1
22130
+  (0.0ms) SAVEPOINT active_record_1
22131
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 5]]
22132
+  (0.0ms) RELEASE SAVEPOINT active_record_1
22133
+  (0.0ms) SAVEPOINT active_record_1
22134
+ SQL (0.1ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 4]]
22135
+  (0.0ms) RELEASE SAVEPOINT active_record_1
22136
+  (0.0ms) SAVEPOINT active_record_1
22137
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 3]]
22138
+  (0.0ms) RELEASE SAVEPOINT active_record_1
22139
+  (0.0ms) SAVEPOINT active_record_1
22140
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 2]]
22141
+  (0.0ms) RELEASE SAVEPOINT active_record_1
22142
+  (0.0ms) SAVEPOINT active_record_1
22143
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 1]]
22144
+  (0.0ms) RELEASE SAVEPOINT active_record_1
22145
+  (0.1ms) SELECT COUNT(*) FROM "users"
22146
+  (0.0ms) rollback transaction
22147
+  (0.0ms) begin transaction
22148
+ ------------------------------------
22149
+ FabricatorsTest: test_build_instance
22150
+ ------------------------------------
22151
+  (0.0ms) rollback transaction
22152
+  (0.0ms) begin transaction
22153
+ -------------------------------------
22154
+ FabricatorsTest: test_create_instance
22155
+ -------------------------------------
22156
+  (0.0ms) SAVEPOINT active_record_1
22157
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-06-25 23:27:42.772921"], ["name", "name"], ["updated_at", "2014-06-25 23:27:42.772921"]]
22158
+  (0.1ms) RELEASE SAVEPOINT active_record_1
22159
+  (0.0ms) SAVEPOINT active_record_1
22160
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 1]]
22161
+  (0.0ms) RELEASE SAVEPOINT active_record_1
22162
+  (0.0ms) rollback transaction
22163
+  (0.0ms) begin transaction
22164
+ ---------------------------------------
22165
+ FabricatorsTest: test_return_attributes
22166
+ ---------------------------------------
22167
+  (0.0ms) rollback transaction
22168
+  (0.0ms) begin transaction
22169
+ --------------------------
22170
+ ListsTest: test_build_list
22171
+ --------------------------
22172
+  (0.1ms) rollback transaction
22173
+  (0.0ms) begin transaction
22174
+ ---------------------------
22175
+ ListsTest: test_create_list
22176
+ ---------------------------
22177
+  (0.0ms) SAVEPOINT active_record_1
22178
+ SQL (0.0ms) INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-06-25 23:27:42.776936"], ["name", "name"], ["updated_at", "2014-06-25 23:27:42.776936"]]
22179
+  (0.0ms) RELEASE SAVEPOINT active_record_1
22180
+  (0.0ms) SAVEPOINT active_record_1
22181
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-06-25 23:27:42.777912"], ["name", "name"], ["updated_at", "2014-06-25 23:27:42.777912"]]
22182
+  (0.1ms) RELEASE SAVEPOINT active_record_1
22183
+  (0.0ms) SAVEPOINT active_record_1
22184
+ SQL (0.0ms) INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-06-25 23:27:42.778845"], ["name", "name"], ["updated_at", "2014-06-25 23:27:42.778845"]]
22185
+  (0.0ms) RELEASE SAVEPOINT active_record_1
22186
+  (0.0ms) SAVEPOINT active_record_1
22187
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 3]]
22188
+  (0.0ms) RELEASE SAVEPOINT active_record_1
22189
+  (0.0ms) SAVEPOINT active_record_1
22190
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 2]]
22191
+  (0.0ms) RELEASE SAVEPOINT active_record_1
22192
+  (0.0ms) SAVEPOINT active_record_1
22193
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 1]]
22194
+  (0.1ms) RELEASE SAVEPOINT active_record_1
22195
+  (0.0ms) rollback transaction
22196
+  (0.0ms) begin transaction
22197
+ -------------------------------
22198
+ MergesTest: test_build_instance
22199
+ -------------------------------
22200
+  (0.1ms) rollback transaction
22201
+  (0.0ms) begin transaction
22202
+ --------------------------------
22203
+ MergesTest: test_create_instance
22204
+ --------------------------------
22205
+  (0.0ms) SAVEPOINT active_record_1
22206
+ SQL (0.0ms) INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-06-25 23:27:42.782993"], ["name", "other"], ["updated_at", "2014-06-25 23:27:42.782993"]]
22207
+  (0.0ms) RELEASE SAVEPOINT active_record_1
22208
+  (0.0ms) SAVEPOINT active_record_1
22209
+ SQL (0.0ms) INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-06-25 23:27:42.783864"], ["name", "other"], ["updated_at", "2014-06-25 23:27:42.783864"]]
22210
+  (0.0ms) RELEASE SAVEPOINT active_record_1
22211
+  (0.0ms) SAVEPOINT active_record_1
22212
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-06-25 23:27:42.784778"], ["name", "other"], ["updated_at", "2014-06-25 23:27:42.784778"]]
22213
+  (0.0ms) RELEASE SAVEPOINT active_record_1
22214
+  (0.1ms) SAVEPOINT active_record_1
22215
+ SQL (0.0ms) INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-06-25 23:27:42.785655"], ["name", "other"], ["updated_at", "2014-06-25 23:27:42.785655"]]
22216
+  (0.0ms) RELEASE SAVEPOINT active_record_1
22217
+  (0.0ms) SAVEPOINT active_record_1
22218
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 4]]
22219
+  (0.0ms) RELEASE SAVEPOINT active_record_1
22220
+  (0.0ms) SAVEPOINT active_record_1
22221
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 3]]
22222
+  (0.0ms) RELEASE SAVEPOINT active_record_1
22223
+  (0.0ms) SAVEPOINT active_record_1
22224
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 2]]
22225
+  (0.0ms) RELEASE SAVEPOINT active_record_1
22226
+  (0.0ms) SAVEPOINT active_record_1
22227
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 1]]
22228
+  (0.0ms) RELEASE SAVEPOINT active_record_1
22229
+  (0.0ms) rollback transaction
22230
+  (0.0ms) begin transaction
22231
+ ----------------------------------
22232
+ MergesTest: test_return_attributes
22233
+ ----------------------------------
22234
+  (0.0ms) rollback transaction
22235
+  (0.1ms) begin transaction
22236
+ ------------------------------------
22237
+ InheritanceTest: test_build_instance
22238
+ ------------------------------------
22239
+  (0.0ms) rollback transaction
22240
+  (0.0ms) begin transaction
22241
+ -------------------------------------
22242
+ InheritanceTest: test_create_instance
22243
+ -------------------------------------
22244
+  (0.0ms) SAVEPOINT active_record_1
22245
+ SQL (0.1ms) INSERT INTO "users" ("age", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["age", 9], ["created_at", "2014-06-25 23:27:42.791218"], ["name", "name"], ["updated_at", "2014-06-25 23:27:42.791218"]]
22246
+  (0.1ms) RELEASE SAVEPOINT active_record_1
22247
+  (0.0ms) SAVEPOINT active_record_1
22248
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", "2014-06-25 23:27:42.792407"], ["email", "mail@example.com"], ["name", "name"], ["updated_at", "2014-06-25 23:27:42.792407"]]
22249
+  (0.0ms) RELEASE SAVEPOINT active_record_1
22250
+  (0.0ms) SAVEPOINT active_record_1
22251
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 2]]
22252
+  (0.0ms) RELEASE SAVEPOINT active_record_1
22253
+  (0.0ms) SAVEPOINT active_record_1
22254
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 1]]
22255
+  (0.0ms) RELEASE SAVEPOINT active_record_1
22256
+  (0.1ms) rollback transaction
22257
+  (0.0ms) begin transaction
22258
+ ---------------------------------------
22259
+ InheritanceTest: test_return_attributes
22260
+ ---------------------------------------
22261
+  (0.0ms) rollback transaction
22262
+  (0.0ms) begin transaction
22263
+ -----------------------------------
22264
+ CallbacksTest: test_build_callbacks
22265
+ -----------------------------------
22266
+  (0.0ms) rollback transaction
22267
+  (0.0ms) begin transaction
22268
+ ------------------------------------
22269
+ CallbacksTest: test_create_callbacks
22270
+ ------------------------------------
22271
+  (0.0ms) SAVEPOINT active_record_1
22272
+ SQL (0.1ms) INSERT INTO "users" ("age", "created_at", "email", "name", "phone", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["age", 1], ["created_at", "2014-06-25 23:27:42.796968"], ["email", "create@example.com"], ["name", "create"], ["phone", 1], ["updated_at", "2014-06-25 23:27:42.796968"]]
22273
+  (0.1ms) RELEASE SAVEPOINT active_record_1
22274
+  (0.1ms) SAVEPOINT active_record_1
22275
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 1]]
22276
+  (0.0ms) RELEASE SAVEPOINT active_record_1
22277
+  (0.0ms) rollback transaction
22278
+  (0.0ms) begin transaction
22279
+ ------------------------------------
22280
+ GeneratorsTest: test_file_generation
22281
+ ------------------------------------
22282
+  (0.1ms) rollback transaction
22283
+  (0.0ms) begin transaction
22284
+ -------------------------
22285
+ AliasesTest: test_aliases
22286
+ -------------------------
22287
+  (0.0ms) rollback transaction
22288
+  (0.3ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "content" varchar(255), "user_id" integer, "created_at" datetime, "updated_at" datetime) 
22289
+  (0.1ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "username" varchar(255), "name" varchar(255), "email" varchar(255), "age" integer, "phone" integer, "created_at" datetime, "updated_at" datetime)
22290
+  (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
22291
+  (0.1ms) select sqlite_version(*)
22292
+  (0.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
22293
+  (0.1ms) SELECT version FROM "schema_migrations"
22294
+  (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20140615180954')
22295
+  (0.1ms) begin transaction
22296
+ -------------------------
22297
+ AliasesTest: test_aliases
22298
+ -------------------------
22299
+  (0.0ms) rollback transaction
22300
+  (0.0ms) begin transaction
22301
+ -------------------------
22302
+ LoadTest: test_find_files
22303
+ -------------------------
22304
+  (0.1ms) rollback transaction
22305
+  (0.1ms) begin transaction
22306
+ ------------------------------------
22307
+ FabricatorsTest: test_build_instance
22308
+ ------------------------------------
22309
+  (0.0ms) rollback transaction
22310
+  (0.0ms) begin transaction
22311
+ -------------------------------------
22312
+ FabricatorsTest: test_create_instance
22313
+ -------------------------------------
22314
+  (0.0ms) SAVEPOINT active_record_1
22315
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-06-25 23:27:56.993555"], ["name", "name"], ["updated_at", "2014-06-25 23:27:56.993555"]]
22316
+  (0.0ms) RELEASE SAVEPOINT active_record_1
22317
+  (0.0ms) SAVEPOINT active_record_1
22318
+ SQL (0.1ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 1]]
22319
+  (0.0ms) RELEASE SAVEPOINT active_record_1
22320
+  (0.0ms) rollback transaction
22321
+  (0.0ms) begin transaction
22322
+ ---------------------------------------
22323
+ FabricatorsTest: test_return_attributes
22324
+ ---------------------------------------
22325
+  (0.0ms) rollback transaction
22326
+  (0.1ms) begin transaction
22327
+ ---------------------------------------------
22328
+ AssociationsTest: test_belongs_to_association
22329
+ ---------------------------------------------
22330
+  (0.1ms) SAVEPOINT active_record_1
22331
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-06-25 23:27:57.006052"], ["updated_at", "2014-06-25 23:27:57.006052"]]
22332
+  (0.1ms) RELEASE SAVEPOINT active_record_1
22333
+  (0.0ms) SAVEPOINT active_record_1
22334
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 1]]
22335
+  (0.0ms) RELEASE SAVEPOINT active_record_1
22336
+  (0.0ms) rollback transaction
22337
+  (0.0ms) begin transaction
22338
+ -------------------------------------------
22339
+ AssociationsTest: test_has_many_association
22340
+ -------------------------------------------
22341
+  (0.1ms) SAVEPOINT active_record_1
22342
+ SQL (0.1ms) INSERT INTO "posts" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-06-25 23:27:57.017985"], ["updated_at", "2014-06-25 23:27:57.017985"]]
22343
+  (0.0ms) RELEASE SAVEPOINT active_record_1
22344
+  (0.0ms) SAVEPOINT active_record_1
22345
+ SQL (0.0ms) INSERT INTO "posts" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-06-25 23:27:57.019188"], ["updated_at", "2014-06-25 23:27:57.019188"]]
22346
+  (0.0ms) RELEASE SAVEPOINT active_record_1
22347
+  (0.0ms) SAVEPOINT active_record_1
22348
+ SQL (0.1ms) DELETE FROM "posts" WHERE "posts"."id" = ? [["id", 2]]
22349
+  (0.0ms) RELEASE SAVEPOINT active_record_1
22350
+  (0.0ms) SAVEPOINT active_record_1
22351
+ SQL (0.0ms) DELETE FROM "posts" WHERE "posts"."id" = ? [["id", 1]]
22352
+  (0.0ms) RELEASE SAVEPOINT active_record_1
22353
+  (0.0ms) rollback transaction
22354
+  (0.0ms) begin transaction
22355
+ ------------------------------------
22356
+ GeneratorsTest: test_file_generation
22357
+ ------------------------------------
22358
+  (0.1ms) rollback transaction
22359
+  (0.0ms) begin transaction
22360
+ -----------------------------------
22361
+ AttributesTest: test_block_sequence
22362
+ -----------------------------------
22363
+  (0.0ms) SAVEPOINT active_record_1
22364
+ SQL (0.1ms) INSERT INTO "users" ("age", "created_at", "email", "updated_at") VALUES (?, ?, ?, ?) [["age", 3], ["created_at", "2014-06-25 23:27:57.046101"], ["email", "mail3@example.com"], ["updated_at", "2014-06-25 23:27:57.046101"]]
22365
+  (0.1ms) RELEASE SAVEPOINT active_record_1
22366
+  (0.0ms) SAVEPOINT active_record_1
22367
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 1]]
22368
+  (0.0ms) RELEASE SAVEPOINT active_record_1
22369
+  (0.0ms) rollback transaction
22370
+  (0.0ms) begin transaction
22371
+ -------------------------------------
22372
+ AttributesTest: test_numeric_sequence
22373
+ -------------------------------------
22374
+  (0.0ms) SAVEPOINT active_record_1
22375
+ SQL (0.0ms) INSERT INTO "users" ("age", "created_at", "email", "updated_at") VALUES (?, ?, ?, ?) [["age", 3], ["created_at", "2014-06-25 23:27:57.048878"], ["email", "mail3@example.com"], ["updated_at", "2014-06-25 23:27:57.048878"]]
22376
+  (0.0ms) RELEASE SAVEPOINT active_record_1
22377
+  (0.0ms) SAVEPOINT active_record_1
22378
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 1]]
22379
+  (0.0ms) RELEASE SAVEPOINT active_record_1
22380
+  (0.0ms) rollback transaction
22381
+  (0.0ms) begin transaction
22382
+ -------------------------------------
22383
+ CleanTest: test_clean_records_created
22384
+ -------------------------------------
22385
+  (0.0ms) SAVEPOINT active_record_1
22386
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-06-25 23:27:57.051260"], ["updated_at", "2014-06-25 23:27:57.051260"]]
22387
+  (0.0ms) RELEASE SAVEPOINT active_record_1
22388
+  (0.0ms) SAVEPOINT active_record_1
22389
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-06-25 23:27:57.052112"], ["updated_at", "2014-06-25 23:27:57.052112"]]
22390
+  (0.0ms) RELEASE SAVEPOINT active_record_1
22391
+  (0.0ms) SAVEPOINT active_record_1
22392
+ SQL (0.0ms) INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-06-25 23:27:57.053002"], ["updated_at", "2014-06-25 23:27:57.053002"]]
22393
+  (0.0ms) RELEASE SAVEPOINT active_record_1
22394
+  (0.0ms) SAVEPOINT active_record_1
22395
+ SQL (0.0ms) INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-06-25 23:27:57.053855"], ["updated_at", "2014-06-25 23:27:57.053855"]]
22396
+  (0.1ms) RELEASE SAVEPOINT active_record_1
22397
+  (0.0ms) SAVEPOINT active_record_1
22398
+ SQL (0.0ms) INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-06-25 23:27:57.054680"], ["updated_at", "2014-06-25 23:27:57.054680"]]
22399
+  (0.0ms) RELEASE SAVEPOINT active_record_1
22400
+  (0.0ms) SAVEPOINT active_record_1
22401
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 5]]
22402
+  (0.0ms) RELEASE SAVEPOINT active_record_1
22403
+  (0.0ms) SAVEPOINT active_record_1
22404
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 4]]
22405
+  (0.0ms) RELEASE SAVEPOINT active_record_1
22406
+  (0.1ms) SAVEPOINT active_record_1
22407
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 3]]
22408
+  (0.0ms) RELEASE SAVEPOINT active_record_1
22409
+  (0.0ms) SAVEPOINT active_record_1
22410
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 2]]
22411
+  (0.0ms) RELEASE SAVEPOINT active_record_1
22412
+  (0.0ms) SAVEPOINT active_record_1
22413
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 1]]
22414
+  (0.0ms) RELEASE SAVEPOINT active_record_1
22415
+  (0.1ms) SELECT COUNT(*) FROM "users"
22416
+  (0.1ms) rollback transaction
22417
+  (0.0ms) begin transaction
22418
+ -----------------------------------
22419
+ CallbacksTest: test_build_callbacks
22420
+ -----------------------------------
22421
+  (0.0ms) rollback transaction
22422
+  (0.0ms) begin transaction
22423
+ ------------------------------------
22424
+ CallbacksTest: test_create_callbacks
22425
+ ------------------------------------
22426
+  (0.0ms) SAVEPOINT active_record_1
22427
+ SQL (0.1ms) INSERT INTO "users" ("age", "created_at", "email", "name", "phone", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["age", 1], ["created_at", "2014-06-25 23:27:57.060236"], ["email", "create@example.com"], ["name", "create"], ["phone", 1], ["updated_at", "2014-06-25 23:27:57.060236"]]
22428
+  (0.0ms) RELEASE SAVEPOINT active_record_1
22429
+  (0.1ms) SAVEPOINT active_record_1
22430
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 1]]
22431
+  (0.0ms) RELEASE SAVEPOINT active_record_1
22432
+  (0.0ms) rollback transaction
22433
+  (0.0ms) begin transaction
22434
+ ----------------------------------
22435
+ DependentTest: test_build_instance
22436
+ ----------------------------------
22437
+  (0.0ms) rollback transaction
22438
+  (0.0ms) begin transaction
22439
+ -----------------------------------
22440
+ DependentTest: test_create_instance
22441
+ -----------------------------------
22442
+  (0.0ms) SAVEPOINT active_record_1
22443
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at", "username") VALUES (?, ?, ?, ?, ?) [["created_at", "2014-06-25 23:27:57.063847"], ["email", "name@example.com"], ["name", "name"], ["updated_at", "2014-06-25 23:27:57.063847"], ["username", "name-1"]]
22444
+  (0.0ms) RELEASE SAVEPOINT active_record_1
22445
+  (0.0ms) SAVEPOINT active_record_1
22446
+ SQL (0.0ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at", "username") VALUES (?, ?, ?, ?, ?) [["created_at", "2014-06-25 23:27:57.064892"], ["email", "name@example.com"], ["name", "name"], ["updated_at", "2014-06-25 23:27:57.064892"], ["username", "name-2"]]
22447
+  (0.0ms) RELEASE SAVEPOINT active_record_1
22448
+  (0.0ms) SAVEPOINT active_record_1
22449
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 2]]
22450
+  (0.0ms) RELEASE SAVEPOINT active_record_1
22451
+  (0.1ms) SAVEPOINT active_record_1
22452
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 1]]
22453
+  (0.0ms) RELEASE SAVEPOINT active_record_1
22454
+  (0.0ms) rollback transaction
22455
+  (0.0ms) begin transaction
22456
+ -------------------------------------
22457
+ DependentTest: test_return_attributes
22458
+ -------------------------------------
22459
+  (0.0ms) rollback transaction
22460
+  (0.0ms) begin transaction
22461
+ --------------------------
22462
+ ListsTest: test_build_list
22463
+ --------------------------
22464
+  (0.0ms) rollback transaction
22465
+  (0.0ms) begin transaction
22466
+ ---------------------------
22467
+ ListsTest: test_create_list
22468
+ ---------------------------
22469
+  (0.0ms) SAVEPOINT active_record_1
22470
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-06-25 23:27:57.069929"], ["name", "name"], ["updated_at", "2014-06-25 23:27:57.069929"]]
22471
+  (0.0ms) RELEASE SAVEPOINT active_record_1
22472
+  (0.0ms) SAVEPOINT active_record_1
22473
+ SQL (0.0ms) INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-06-25 23:27:57.070796"], ["name", "name"], ["updated_at", "2014-06-25 23:27:57.070796"]]
22474
+  (0.0ms) RELEASE SAVEPOINT active_record_1
22475
+  (0.0ms) SAVEPOINT active_record_1
22476
+ SQL (0.0ms) INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-06-25 23:27:57.071712"], ["name", "name"], ["updated_at", "2014-06-25 23:27:57.071712"]]
22477
+  (0.0ms) RELEASE SAVEPOINT active_record_1
22478
+  (0.0ms) SAVEPOINT active_record_1
22479
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 3]]
22480
+  (0.0ms) RELEASE SAVEPOINT active_record_1
22481
+  (0.0ms) SAVEPOINT active_record_1
22482
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 2]]
22483
+  (0.0ms) RELEASE SAVEPOINT active_record_1
22484
+  (0.0ms) SAVEPOINT active_record_1
22485
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 1]]
22486
+  (0.0ms) RELEASE SAVEPOINT active_record_1
22487
+  (0.0ms) rollback transaction
22488
+  (0.0ms) begin transaction
22489
+ ------------------------------------
22490
+ InheritanceTest: test_build_instance
22491
+ ------------------------------------
22492
+  (0.0ms) rollback transaction
22493
+  (0.0ms) begin transaction
22494
+ -------------------------------------
22495
+ InheritanceTest: test_create_instance
22496
+ -------------------------------------
22497
+  (0.1ms) SAVEPOINT active_record_1
22498
+ SQL (0.1ms) INSERT INTO "users" ("age", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["age", 9], ["created_at", "2014-06-25 23:27:57.076098"], ["name", "name"], ["updated_at", "2014-06-25 23:27:57.076098"]]
22499
+  (0.0ms) RELEASE SAVEPOINT active_record_1
22500
+  (0.1ms) SAVEPOINT active_record_1
22501
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", "2014-06-25 23:27:57.077098"], ["email", "mail@example.com"], ["name", "name"], ["updated_at", "2014-06-25 23:27:57.077098"]]
22502
+  (0.0ms) RELEASE SAVEPOINT active_record_1
22503
+  (0.0ms) SAVEPOINT active_record_1
22504
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 2]]
22505
+  (0.0ms) RELEASE SAVEPOINT active_record_1
22506
+  (0.0ms) SAVEPOINT active_record_1
22507
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 1]]
22508
+  (0.0ms) RELEASE SAVEPOINT active_record_1
22509
+  (0.0ms) rollback transaction
22510
+  (0.0ms) begin transaction
22511
+ ---------------------------------------
22512
+ InheritanceTest: test_return_attributes
22513
+ ---------------------------------------
22514
+  (0.1ms) rollback transaction
22515
+  (0.0ms) begin transaction
22516
+ -------------------------------
22517
+ MergesTest: test_build_instance
22518
+ -------------------------------
22519
+  (0.0ms) rollback transaction
22520
+  (0.0ms) begin transaction
22521
+ --------------------------------
22522
+ MergesTest: test_create_instance
22523
+ --------------------------------
22524
+  (0.0ms) SAVEPOINT active_record_1
22525
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-06-25 23:27:57.081410"], ["name", "other"], ["updated_at", "2014-06-25 23:27:57.081410"]]
22526
+  (0.0ms) RELEASE SAVEPOINT active_record_1
22527
+  (0.0ms) SAVEPOINT active_record_1
22528
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-06-25 23:27:57.082410"], ["name", "other"], ["updated_at", "2014-06-25 23:27:57.082410"]]
22529
+  (0.0ms) RELEASE SAVEPOINT active_record_1
22530
+  (0.0ms) SAVEPOINT active_record_1
22531
+ SQL (0.0ms) INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-06-25 23:27:57.083354"], ["name", "other"], ["updated_at", "2014-06-25 23:27:57.083354"]]
22532
+  (0.0ms) RELEASE SAVEPOINT active_record_1
22533
+  (0.1ms) SAVEPOINT active_record_1
22534
+ SQL (0.0ms) INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-06-25 23:27:57.084267"], ["name", "other"], ["updated_at", "2014-06-25 23:27:57.084267"]]
22535
+  (0.1ms) RELEASE SAVEPOINT active_record_1
22536
+  (0.0ms) SAVEPOINT active_record_1
22537
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 4]]
22538
+  (0.0ms) RELEASE SAVEPOINT active_record_1
22539
+  (0.0ms) SAVEPOINT active_record_1
22540
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 3]]
22541
+  (0.1ms) RELEASE SAVEPOINT active_record_1
22542
+  (0.0ms) SAVEPOINT active_record_1
22543
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 2]]
22544
+  (0.0ms) RELEASE SAVEPOINT active_record_1
22545
+  (0.1ms) SAVEPOINT active_record_1
22546
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 1]]
22547
+  (0.0ms) RELEASE SAVEPOINT active_record_1
22548
+  (0.0ms) rollback transaction
22549
+  (0.0ms) begin transaction
22550
+ ----------------------------------
22551
+ MergesTest: test_return_attributes
22552
+ ----------------------------------
22553
+  (0.0ms) rollback transaction