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