fastly-rails 0.1.1 → 0.1.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/fastly-rails/active_record/surrogate_key.rb +23 -21
- data/lib/fastly-rails/engine.rb +6 -1
- data/lib/fastly-rails/mongoid/surrogate_key.rb +37 -0
- data/lib/fastly-rails/version.rb +1 -1
- data/test/dummy/db/test.sqlite3 +0 -0
- data/test/dummy/log/test.log +2761 -365
- data/test/dummy/tmp/cache/assets/test/sprockets/13fe41fee1fe35b49d145bcc06610705 +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/2f5173deea6c795b8fdde723bb4b63af +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/357970feca3ac29060c1e3861e2c0953 +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/cffd775d018f68ce5dba1ee0d951a994 +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/d771ace226fc8215a3572e0aa35bb0d6 +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/f7cbd26ba1d28d48de824f0e94586655 +0 -0
- metadata +4 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d0ebe62917ac4d520eeb2e247d5e18047cfaa160
|
4
|
+
data.tar.gz: d916e037413bc2e853b672fe51332c07e7438379
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 106e829855e4e5fcfd5c08b76332c37b2dc84494a1124b929c7e3c975e24a5ece57f7c18390cc2fc3fb04a86ab73b51f8383638cd813e02ae9d5f5fa1e4782b8
|
7
|
+
data.tar.gz: 28306b46d2ba3622025196335b67aebdeb79a22526c8484aa6e0a748af69f71a8de20626e8907c2d443f7638037fe8f0baea0228fae5d6157209960d1ae21a8d
|
@@ -1,35 +1,37 @@
|
|
1
1
|
# Adds surrogate key methods to ActiveRecord models
|
2
2
|
module FastlyRails
|
3
|
-
module
|
4
|
-
|
3
|
+
module ActiveRecord
|
4
|
+
module SurrogateKey
|
5
|
+
extend ActiveSupport::Concern
|
5
6
|
|
6
|
-
|
7
|
+
module ClassMethods
|
7
8
|
|
8
|
-
|
9
|
-
|
10
|
-
|
9
|
+
def purge_all
|
10
|
+
FastlyRails.client.purge(table_key)
|
11
|
+
end
|
12
|
+
|
13
|
+
def table_key
|
14
|
+
table_name
|
15
|
+
end
|
11
16
|
|
12
|
-
def table_key
|
13
|
-
table_name
|
14
17
|
end
|
15
18
|
|
16
|
-
|
19
|
+
def record_key
|
20
|
+
"#{table_key}/#{id}"
|
21
|
+
end
|
17
22
|
|
18
|
-
|
19
|
-
|
20
|
-
|
23
|
+
def table_key
|
24
|
+
self.class.table_key
|
25
|
+
end
|
21
26
|
|
22
|
-
|
23
|
-
|
24
|
-
|
27
|
+
def purge
|
28
|
+
FastlyRails.client.purge(record_key)
|
29
|
+
end
|
25
30
|
|
26
|
-
|
27
|
-
|
28
|
-
|
31
|
+
def purge_all
|
32
|
+
self.class.purge_all
|
33
|
+
end
|
29
34
|
|
30
|
-
def purge_all
|
31
|
-
self.class.purge_all
|
32
35
|
end
|
33
|
-
|
34
36
|
end
|
35
37
|
end
|
data/lib/fastly-rails/engine.rb
CHANGED
@@ -1,4 +1,5 @@
|
|
1
1
|
require 'fastly-rails/active_record/surrogate_key'
|
2
|
+
require 'fastly-rails/mongoid/surrogate_key'
|
2
3
|
require 'fastly-rails/action_controller/cache_control_headers'
|
3
4
|
require 'fastly-rails/action_controller/surrogate_control_headers'
|
4
5
|
|
@@ -17,7 +18,11 @@ module FastlyRails
|
|
17
18
|
end
|
18
19
|
|
19
20
|
ActiveSupport.on_load :active_record do
|
20
|
-
ActiveRecord::Base.send :include, FastlyRails::SurrogateKey
|
21
|
+
::ActiveRecord::Base.send :include, FastlyRails::ActiveRecord::SurrogateKey
|
22
|
+
end
|
23
|
+
|
24
|
+
ActiveSupport.on_load :mongoid do
|
25
|
+
::Mongoid::Document.send :include, FastlyRails::Mongoid::SurrogateKey
|
21
26
|
end
|
22
27
|
|
23
28
|
end
|
@@ -0,0 +1,37 @@
|
|
1
|
+
# Adds surrogate key methods to ActiveRecord models
|
2
|
+
module FastlyRails
|
3
|
+
module Mongoid
|
4
|
+
module SurrogateKey
|
5
|
+
extend ActiveSupport::Concern
|
6
|
+
|
7
|
+
module ClassMethods
|
8
|
+
|
9
|
+
def purge_all
|
10
|
+
FastlyRails.client.purge(table_key)
|
11
|
+
end
|
12
|
+
|
13
|
+
def table_key
|
14
|
+
collection_name
|
15
|
+
end
|
16
|
+
|
17
|
+
end
|
18
|
+
|
19
|
+
def record_key
|
20
|
+
"#{table_key}/#{id}"
|
21
|
+
end
|
22
|
+
|
23
|
+
def table_key
|
24
|
+
self.class.table_key
|
25
|
+
end
|
26
|
+
|
27
|
+
def purge
|
28
|
+
FastlyRails.client.purge(record_key)
|
29
|
+
end
|
30
|
+
|
31
|
+
def purge_all
|
32
|
+
self.class.purge_all
|
33
|
+
end
|
34
|
+
|
35
|
+
end
|
36
|
+
end
|
37
|
+
end
|
data/lib/fastly-rails/version.rb
CHANGED
data/test/dummy/db/test.sqlite3
CHANGED
Binary file
|
data/test/dummy/log/test.log
CHANGED
@@ -1,176 +1,2326 @@
|
|
1
1
|
Connecting to database specified by database.yml
|
2
2
|
[1m[36m (0.1ms)[0m [1mselect sqlite_version(*)[0m
|
3
|
-
[1m[35m (
|
4
|
-
[1m[36m (
|
5
|
-
[1m[35m (0.
|
3
|
+
[1m[35m (1.3ms)[0m CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
|
4
|
+
[1m[36m (1.1ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
5
|
+
[1m[35m (0.1ms)[0m SELECT "schema_migrations"."version" FROM "schema_migrations"
|
6
6
|
Migrating to CreateBooks (20140407202136)
|
7
7
|
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
8
8
|
[1m[35m (0.3ms)[0m CREATE TABLE "books" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
9
9
|
[1m[36m (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ('20140407202136')[0m
|
10
|
-
[1m[35m (0.
|
11
|
-
[1m[36m (0.
|
10
|
+
[1m[35m (0.7ms)[0m commit transaction
|
11
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
12
12
|
[1m[35m (0.0ms)[0m commit transaction
|
13
13
|
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
14
|
-
[1m[35m (0.
|
15
|
-
[1m[36mSQL (
|
14
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
15
|
+
[1m[36mSQL (3.3ms)[0m [1mINSERT INTO "books" ("created_at", "id", "name", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", Wed, 23 Apr 2014 23:08:26 UTC +00:00], ["id", 1], ["name", "The Ultra Beast from Mars"], ["updated_at", Wed, 23 Apr 2014 23:08:26 UTC +00:00]]
|
16
16
|
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
17
|
-
[1m[36m (0.
|
17
|
+
[1m[36m (0.3ms)[0m [1mrollback transaction[0m
|
18
18
|
[1m[35m (0.0ms)[0m begin transaction
|
19
19
|
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
20
20
|
[1m[35m (0.0ms)[0m begin transaction
|
21
21
|
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
22
|
-
[1m[35mSQL (0.3ms)[0m INSERT INTO "books" ("created_at", "id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at",
|
22
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "books" ("created_at", "id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 23 Apr 2014 23:08:26 UTC +00:00], ["id", 1], ["name", "Blue Wolf 2: Son of Blue Wolf"], ["updated_at", Wed, 23 Apr 2014 23:08:26 UTC +00:00]]
|
23
23
|
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
24
|
-
[1m[35m (0.
|
24
|
+
[1m[35m (0.3ms)[0m rollback transaction
|
25
25
|
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
26
26
|
[1m[35m (0.0ms)[0m commit transaction
|
27
27
|
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
28
28
|
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
29
|
-
[1m[36mSQL (0.
|
30
|
-
[1m[35m (0.
|
29
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "books" ("created_at", "id", "name", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", Wed, 23 Apr 2014 23:08:26 UTC +00:00], ["id", 1], ["name", "Codename: Brains"], ["updated_at", Wed, 23 Apr 2014 23:08:26 UTC +00:00]]
|
30
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
31
31
|
[1m[36m (0.3ms)[0m [1mrollback transaction[0m
|
32
32
|
[1m[35m (0.0ms)[0m begin transaction
|
33
33
|
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
34
34
|
[1m[35m (0.0ms)[0m begin transaction
|
35
|
-
[1m[36m (0.
|
36
|
-
[1m[
|
35
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
36
|
+
[1m[35m (0.0ms)[0m begin transaction
|
37
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
38
|
+
[1m[35m (0.0ms)[0m begin transaction
|
39
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
40
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "books" ("created_at", "id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 23 Apr 2014 23:08:26 UTC +00:00], ["id", 1], ["name", "Nuclear Gypsy"], ["updated_at", Wed, 23 Apr 2014 23:08:26 UTC +00:00]]
|
37
41
|
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
38
42
|
[1m[35m (0.3ms)[0m rollback transaction
|
39
43
|
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
40
|
-
[1m[35m (0.0ms)[0m commit transaction
|
41
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
42
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
43
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
44
44
|
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
45
|
-
[1m[36mSQL (0.
|
45
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Wed, 23 Apr 2014 23:08:26 UTC +00:00], ["name", "I am Fake Wolf"], ["updated_at", Wed, 23 Apr 2014 23:08:26 UTC +00:00]]
|
46
46
|
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
47
47
|
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
48
|
-
[1m[35mSQL (0.
|
48
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 23 Apr 2014 23:08:26 UTC +00:00], ["name", "Codename: Jungle"], ["updated_at", Wed, 23 Apr 2014 23:08:26 UTC +00:00]]
|
49
49
|
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
50
50
|
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
51
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at",
|
51
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Wed, 23 Apr 2014 23:08:26 UTC +00:00], ["name", "Fake Beast"], ["updated_at", Wed, 23 Apr 2014 23:08:26 UTC +00:00]]
|
52
52
|
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
53
53
|
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
54
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at",
|
54
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 23 Apr 2014 23:08:26 UTC +00:00], ["name", "When Hermina Met Chasity"], ["updated_at", Wed, 23 Apr 2014 23:08:26 UTC +00:00]]
|
55
55
|
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
56
56
|
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
57
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at",
|
57
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Wed, 23 Apr 2014 23:08:26 UTC +00:00], ["name", "The Electric Jungle Who Fell to Earth"], ["updated_at", Wed, 23 Apr 2014 23:08:26 UTC +00:00]]
|
58
58
|
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
59
59
|
[1m[36m (0.0ms)[0m [1mSELECT COUNT(*) FROM "books" [0m
|
60
60
|
Processing by BooksController#create as HTML
|
61
61
|
Parameters: {"book"=>{"name"=>"newly-created-book"}}
|
62
62
|
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
63
|
-
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at",
|
63
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Wed, 23 Apr 2014 23:08:26 UTC +00:00], ["name", "newly-created-book"], ["updated_at", Wed, 23 Apr 2014 23:08:26 UTC +00:00]]
|
64
64
|
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
65
65
|
Redirected to http://test.host/books
|
66
|
-
Completed 302 Found in 2.1ms (ActiveRecord: 0.
|
66
|
+
Completed 302 Found in 2.1ms (ActiveRecord: 0.3ms)
|
67
67
|
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "books" [0m
|
68
|
-
[1m[35m (0.
|
68
|
+
[1m[35m (0.3ms)[0m rollback transaction
|
69
69
|
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
70
70
|
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
71
|
-
[1m[36mSQL (0.
|
71
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Wed, 23 Apr 2014 23:08:26 UTC +00:00], ["name", "Nuclear Diaries"], ["updated_at", Wed, 23 Apr 2014 23:08:26 UTC +00:00]]
|
72
72
|
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
73
73
|
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
74
|
-
[1m[35mSQL (0.3ms)[0m INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at",
|
74
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 23 Apr 2014 23:08:26 UTC +00:00], ["name", "The Jungle from Hell"], ["updated_at", Wed, 23 Apr 2014 23:08:26 UTC +00:00]]
|
75
75
|
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
76
76
|
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
77
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at",
|
77
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Wed, 23 Apr 2014 23:08:26 UTC +00:00], ["name", "2535 A.D."], ["updated_at", Wed, 23 Apr 2014 23:08:26 UTC +00:00]]
|
78
78
|
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
79
79
|
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
80
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at",
|
80
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 23 Apr 2014 23:08:26 UTC +00:00], ["name", "Action Gypsy"], ["updated_at", Wed, 23 Apr 2014 23:08:26 UTC +00:00]]
|
81
81
|
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
82
82
|
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
83
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at",
|
83
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Wed, 23 Apr 2014 23:08:26 UTC +00:00], ["name", "The Cousins Who Fell to Earth"], ["updated_at", Wed, 23 Apr 2014 23:08:26 UTC +00:00]]
|
84
84
|
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
85
85
|
Processing by BooksController#index as HTML
|
86
86
|
[1m[36mBook Load (0.1ms)[0m [1mSELECT "books".* FROM "books" [0m
|
87
|
-
Completed 200 OK in 9.
|
87
|
+
Completed 200 OK in 9.0ms (Views: 8.1ms | ActiveRecord: 0.1ms)
|
88
88
|
[1m[35m (0.4ms)[0m rollback transaction
|
89
89
|
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
90
90
|
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
91
|
-
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at",
|
91
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Wed, 23 Apr 2014 23:08:26 UTC +00:00], ["name", "Legend of Champagne Witch"], ["updated_at", Wed, 23 Apr 2014 23:08:26 UTC +00:00]]
|
92
92
|
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
93
93
|
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
94
|
-
[1m[35mSQL (0.3ms)[0m INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at",
|
94
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 23 Apr 2014 23:08:26 UTC +00:00], ["name", "The Red Rose of Northern Ireland"], ["updated_at", Wed, 23 Apr 2014 23:08:26 UTC +00:00]]
|
95
95
|
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
96
96
|
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
97
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at",
|
97
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Wed, 23 Apr 2014 23:08:26 UTC +00:00], ["name", "The Bloody Diaries That Came to Dinner"], ["updated_at", Wed, 23 Apr 2014 23:08:26 UTC +00:00]]
|
98
98
|
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
99
99
|
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
100
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at",
|
100
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 23 Apr 2014 23:08:26 UTC +00:00], ["name", "Dr. Wolf"], ["updated_at", Wed, 23 Apr 2014 23:08:26 UTC +00:00]]
|
101
101
|
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
102
102
|
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
103
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at",
|
103
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Wed, 23 Apr 2014 23:08:26 UTC +00:00], ["name", "Dr. Ninja"], ["updated_at", Wed, 23 Apr 2014 23:08:26 UTC +00:00]]
|
104
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
105
|
+
Processing by BooksController#show as HTML
|
106
|
+
Parameters: {"id"=>"1"}
|
107
|
+
[1m[36mBook Load (0.1ms)[0m [1mSELECT "books".* FROM "books" WHERE "books"."id" = ? LIMIT 1[0m [["id", "1"]]
|
108
|
+
Completed 200 OK in 3.1ms (Views: 1.5ms | ActiveRecord: 0.1ms)
|
109
|
+
[1m[35m (0.4ms)[0m rollback transaction
|
110
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
111
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
112
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "books" ("created_at", "id", "name", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", Wed, 23 Apr 2014 23:08:26 UTC +00:00], ["id", 1], ["name", "The Wizard Without a Man"], ["updated_at", Wed, 23 Apr 2014 23:08:26 UTC +00:00]]
|
104
113
|
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
114
|
+
Started GET "/books/1" for 127.0.0.1 at 2014-04-23 19:08:26 -0400
|
105
115
|
Processing by BooksController#show as HTML
|
106
116
|
Parameters: {"id"=>"1"}
|
107
117
|
[1m[36mBook Load (0.1ms)[0m [1mSELECT "books".* FROM "books" WHERE "books"."id" = ? LIMIT 1[0m [["id", "1"]]
|
108
|
-
Completed 200 OK in
|
118
|
+
Completed 200 OK in 1.7ms (Views: 0.9ms | ActiveRecord: 0.1ms)
|
119
|
+
[1m[35m (0.3ms)[0m rollback transaction
|
120
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
121
|
+
Started GET "/books" for 127.0.0.1 at 2014-04-23 19:08:26 -0400
|
122
|
+
Processing by BooksController#index as HTML
|
123
|
+
[1m[35mBook Load (0.1ms)[0m SELECT "books".* FROM "books"
|
124
|
+
Completed 200 OK in 1.4ms (Views: 0.8ms | ActiveRecord: 0.1ms)
|
125
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
126
|
+
[1m[35m (0.0ms)[0m begin transaction
|
127
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
128
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "books" ("created_at", "id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 23 Apr 2014 23:08:26 UTC +00:00], ["id", 1], ["name", "Season of the Ultra Tentacle"], ["updated_at", Wed, 23 Apr 2014 23:08:26 UTC +00:00]]
|
129
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
130
|
+
Started DELETE "/books/1" for 127.0.0.1 at 2014-04-23 19:08:26 -0400
|
131
|
+
Processing by BooksController#destroy as HTML
|
132
|
+
Parameters: {"id"=>"1"}
|
133
|
+
[1m[35mBook Load (0.0ms)[0m SELECT "books".* FROM "books" WHERE "books"."id" = ? LIMIT 1 [["id", "1"]]
|
134
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
135
|
+
[1m[35mSQL (0.3ms)[0m DELETE FROM "books" WHERE "books"."id" = ? [["id", 1]]
|
136
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
137
|
+
Redirected to http://www.example.com/books
|
138
|
+
Completed 302 Found in 2.1ms (ActiveRecord: 0.4ms)
|
139
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "books" WHERE "books"."id" = 1
|
140
|
+
[1m[36m (0.3ms)[0m [1mrollback transaction[0m
|
141
|
+
[1m[35m (0.0ms)[0m begin transaction
|
142
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "books" [0m
|
143
|
+
Started POST "/books" for 127.0.0.1 at 2014-04-23 19:08:26 -0400
|
144
|
+
Processing by BooksController#create as HTML
|
145
|
+
Parameters: {"book"=>{"name"=>"some new book"}}
|
146
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
147
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Wed, 23 Apr 2014 23:08:26 UTC +00:00], ["name", "some new book"], ["updated_at", Wed, 23 Apr 2014 23:08:26 UTC +00:00]]
|
148
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
149
|
+
Redirected to http://www.example.com/books
|
150
|
+
Completed 302 Found in 1.6ms (ActiveRecord: 0.3ms)
|
151
|
+
[1m[36m (0.0ms)[0m [1mSELECT COUNT(*) FROM "books" [0m
|
152
|
+
[1m[35m (0.3ms)[0m rollback transaction
|
153
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
154
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
155
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "books" ("created_at", "id", "name", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", Wed, 23 Apr 2014 23:08:26 UTC +00:00], ["id", 1], ["name", "some new book"], ["updated_at", Wed, 23 Apr 2014 23:08:26 UTC +00:00]]
|
156
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
157
|
+
Started PUT "/books/1" for 127.0.0.1 at 2014-04-23 19:08:26 -0400
|
158
|
+
Processing by BooksController#update as HTML
|
159
|
+
Parameters: {"id"=>"1", "book"=>{"name"=>"changed book"}}
|
160
|
+
[1m[36mBook Load (0.0ms)[0m [1mSELECT "books".* FROM "books" WHERE "books"."id" = ? LIMIT 1[0m [["id", "1"]]
|
161
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
162
|
+
[1m[36m (0.3ms)[0m [1mUPDATE "books" SET "name" = 'changed book', "updated_at" = '2014-04-23 23:08:26.433903' WHERE "books"."id" = 1[0m
|
163
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
164
|
+
Redirected to http://www.example.com/books/1
|
165
|
+
Completed 302 Found in 3.2ms (ActiveRecord: 0.4ms)
|
166
|
+
[1m[36mBook Load (0.0ms)[0m [1mSELECT "books".* FROM "books" WHERE "books"."id" = ? LIMIT 1[0m [["id", 1]]
|
167
|
+
[1m[35m (0.3ms)[0m rollback transaction
|
168
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
169
|
+
[1m[35m (0.0ms)[0m commit transaction
|
170
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
171
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
172
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
173
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
174
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
175
|
+
[1m[35m (0.0ms)[0m commit transaction
|
176
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
177
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
178
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
179
|
+
[1m[35m (0.0ms)[0m commit transaction
|
180
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
181
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
182
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
183
|
+
[1m[35m (0.0ms)[0m commit transaction
|
184
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
185
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
186
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
187
|
+
[1m[35m (0.0ms)[0m commit transaction
|
188
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
189
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
190
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
191
|
+
[1m[35m (0.0ms)[0m commit transaction
|
192
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
193
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
194
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
195
|
+
[1m[35m (0.0ms)[0m commit transaction
|
196
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
197
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
198
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
199
|
+
[1m[35m (0.0ms)[0m commit transaction
|
200
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
201
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
202
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
203
|
+
[1m[35m (0.0ms)[0m commit transaction
|
204
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
205
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
206
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
207
|
+
[1m[35m (0.0ms)[0m commit transaction
|
208
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
209
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
210
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
211
|
+
[1m[35m (0.0ms)[0m commit transaction
|
212
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
213
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
214
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
215
|
+
[1m[35m (0.0ms)[0m commit transaction
|
216
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
217
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
218
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
219
|
+
[1m[35m (0.0ms)[0m commit transaction
|
220
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
221
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
222
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
223
|
+
[1m[35m (0.0ms)[0m commit transaction
|
224
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
225
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
226
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
227
|
+
[1m[35m (0.0ms)[0m commit transaction
|
228
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
229
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
230
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
231
|
+
[1m[35m (0.0ms)[0m commit transaction
|
232
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
233
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
234
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
235
|
+
[1m[35m (0.0ms)[0m commit transaction
|
236
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
237
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
238
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
239
|
+
[1m[35m (0.1ms)[0m begin transaction
|
240
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
241
|
+
[1m[35m (0.0ms)[0m begin transaction
|
242
|
+
[1m[36mSQL (2.7ms)[0m [1mINSERT INTO "books" ("created_at", "id", "name", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", Wed, 23 Apr 2014 23:08:28 UTC +00:00], ["id", 1], ["name", "Death Wolves"], ["updated_at", Wed, 23 Apr 2014 23:08:28 UTC +00:00]]
|
109
243
|
[1m[35m (0.3ms)[0m rollback transaction
|
110
244
|
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
245
|
+
[1m[35m (0.0ms)[0m commit transaction
|
246
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
247
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "books" ("created_at", "id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 23 Apr 2014 23:08:28 UTC +00:00], ["id", 1], ["name", "Dangerous Men"], ["updated_at", Wed, 23 Apr 2014 23:08:28 UTC +00:00]]
|
248
|
+
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|
249
|
+
[1m[35m (0.0ms)[0m begin transaction
|
250
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
251
|
+
[1m[35m (0.0ms)[0m begin transaction
|
252
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "books" ("created_at", "id", "name", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", Wed, 23 Apr 2014 23:08:28 UTC +00:00], ["id", 1], ["name", "Bloody Hills"], ["updated_at", Wed, 23 Apr 2014 23:08:28 UTC +00:00]]
|
253
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
254
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
255
|
+
[1m[35m (0.0ms)[0m commit transaction
|
256
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
257
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
258
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
259
|
+
[1m[35m (0.0ms)[0m commit transaction
|
260
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
261
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "books" ("created_at", "id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 23 Apr 2014 23:08:28 UTC +00:00], ["id", 1], ["name", "The Friday from 17326 Leagues"], ["updated_at", Wed, 23 Apr 2014 23:08:28 UTC +00:00]]
|
262
|
+
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|
263
|
+
[1m[35m (0.0ms)[0m begin transaction
|
264
|
+
--------------------------------
|
265
|
+
BooksControllerTest: test_create
|
266
|
+
--------------------------------
|
267
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
268
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 23 Apr 2014 23:08:28 UTC +00:00], ["name", "The Ninjas That Came to Dinner"], ["updated_at", Wed, 23 Apr 2014 23:08:28 UTC +00:00]]
|
269
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
270
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
271
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Wed, 23 Apr 2014 23:08:28 UTC +00:00], ["name", "American Clash"], ["updated_at", Wed, 23 Apr 2014 23:08:28 UTC +00:00]]
|
272
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
273
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
274
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 23 Apr 2014 23:08:28 UTC +00:00], ["name", "The Hungry Mutant"], ["updated_at", Wed, 23 Apr 2014 23:08:28 UTC +00:00]]
|
275
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
276
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
277
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Wed, 23 Apr 2014 23:08:28 UTC +00:00], ["name", "The Brain from Ladue South"], ["updated_at", Wed, 23 Apr 2014 23:08:28 UTC +00:00]]
|
278
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
279
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
280
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 23 Apr 2014 23:08:28 UTC +00:00], ["name", "Wizard 2: Electric Boogaloo"], ["updated_at", Wed, 23 Apr 2014 23:08:28 UTC +00:00]]
|
281
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
282
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "books"
|
283
|
+
Processing by BooksController#create as HTML
|
284
|
+
Parameters: {"book"=>{"name"=>"newly-created-book"}}
|
285
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
286
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 23 Apr 2014 23:08:28 UTC +00:00], ["name", "newly-created-book"], ["updated_at", Wed, 23 Apr 2014 23:08:28 UTC +00:00]]
|
287
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
288
|
+
Redirected to http://test.host/books
|
289
|
+
Completed 302 Found in 2ms (ActiveRecord: 0.2ms)
|
290
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "books"
|
291
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
292
|
+
[1m[35m (0.0ms)[0m begin transaction
|
293
|
+
-------------------------------
|
294
|
+
BooksControllerTest: test_index
|
295
|
+
-------------------------------
|
296
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
297
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 23 Apr 2014 23:08:28 UTC +00:00], ["name", "The Cousins That Came to Dinner"], ["updated_at", Wed, 23 Apr 2014 23:08:28 UTC +00:00]]
|
298
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
299
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
300
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Wed, 23 Apr 2014 23:08:28 UTC +00:00], ["name", "Dr. City"], ["updated_at", Wed, 23 Apr 2014 23:08:28 UTC +00:00]]
|
301
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
302
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
303
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 23 Apr 2014 23:08:28 UTC +00:00], ["name", "Blue Gypsy"], ["updated_at", Wed, 23 Apr 2014 23:08:28 UTC +00:00]]
|
304
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
305
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
306
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Wed, 23 Apr 2014 23:08:28 UTC +00:00], ["name", "The Mutant Who Fell to Earth"], ["updated_at", Wed, 23 Apr 2014 23:08:28 UTC +00:00]]
|
307
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
308
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
309
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 23 Apr 2014 23:08:28 UTC +00:00], ["name", "Death Wolves"], ["updated_at", Wed, 23 Apr 2014 23:08:28 UTC +00:00]]
|
310
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
311
|
+
Processing by BooksController#index as HTML
|
312
|
+
Completed 200 OK in 15ms (Views: 14.4ms | ActiveRecord: 0.0ms)
|
313
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "books"
|
314
|
+
[1m[36m (0.3ms)[0m [1mrollback transaction[0m
|
315
|
+
[1m[35m (0.0ms)[0m begin transaction
|
316
|
+
------------------------------
|
317
|
+
BooksControllerTest: test_show
|
318
|
+
------------------------------
|
319
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
320
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 23 Apr 2014 23:08:28 UTC +00:00], ["name", "War of the Woman"], ["updated_at", Wed, 23 Apr 2014 23:08:28 UTC +00:00]]
|
321
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
322
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
323
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Wed, 23 Apr 2014 23:08:28 UTC +00:00], ["name", "The Pickpocket from Across the Ocean"], ["updated_at", Wed, 23 Apr 2014 23:08:28 UTC +00:00]]
|
324
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
325
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
326
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 23 Apr 2014 23:08:28 UTC +00:00], ["name", "The Yellow Rose of Wales"], ["updated_at", Wed, 23 Apr 2014 23:08:28 UTC +00:00]]
|
327
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
328
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
329
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Wed, 23 Apr 2014 23:08:28 UTC +00:00], ["name", "Je Vous Presente, Pansy"], ["updated_at", Wed, 23 Apr 2014 23:08:28 UTC +00:00]]
|
330
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
331
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
332
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 23 Apr 2014 23:08:28 UTC +00:00], ["name", "The Electric Gypsy with a Thousand Faces"], ["updated_at", Wed, 23 Apr 2014 23:08:28 UTC +00:00]]
|
333
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
334
|
+
Processing by BooksController#show as HTML
|
335
|
+
Parameters: {"id"=>"1"}
|
336
|
+
[1m[35mBook Load (0.1ms)[0m SELECT "books".* FROM "books" WHERE "books"."id" = ? LIMIT 1 [["id", "1"]]
|
337
|
+
Completed 200 OK in 3ms (Views: 1.2ms | ActiveRecord: 0.1ms)
|
338
|
+
[1m[36m (0.5ms)[0m [1mrollback transaction[0m
|
339
|
+
[1m[35m (0.0ms)[0m begin transaction
|
340
|
+
-----------------------------------------------------------------------
|
341
|
+
FastlyHeadersTest: test_/books/:id_show_page_should_have_fastly_headers
|
342
|
+
-----------------------------------------------------------------------
|
343
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
344
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "books" ("created_at", "id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 23 Apr 2014 23:08:28 UTC +00:00], ["id", 1], ["name", "American Brain"], ["updated_at", Wed, 23 Apr 2014 23:08:28 UTC +00:00]]
|
345
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
346
|
+
Started GET "/books/1" for 127.0.0.1 at 2014-04-23 19:08:28 -0400
|
347
|
+
Processing by BooksController#show as HTML
|
348
|
+
Parameters: {"id"=>"1"}
|
349
|
+
[1m[35mBook Load (0.1ms)[0m SELECT "books".* FROM "books" WHERE "books"."id" = ? LIMIT 1 [["id", "1"]]
|
350
|
+
Completed 200 OK in 2ms (Views: 0.8ms | ActiveRecord: 0.1ms)
|
351
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
352
|
+
[1m[35m (0.0ms)[0m begin transaction
|
353
|
+
--------------------------------------------------------------------
|
354
|
+
FastlyHeadersTest: test_/books_index_page_should_have_fastly_headers
|
355
|
+
--------------------------------------------------------------------
|
356
|
+
Started GET "/books" for 127.0.0.1 at 2014-04-23 19:08:28 -0400
|
357
|
+
Processing by BooksController#index as HTML
|
358
|
+
Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
|
359
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
360
|
+
[1m[35m (0.0ms)[0m begin transaction
|
361
|
+
----------------------------------------------------------------------------------------------
|
362
|
+
FastlyHeadersTest: test_DELETE_/books/:id_should_not_have_fastly_headers/_fastly_header_values
|
363
|
+
----------------------------------------------------------------------------------------------
|
364
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
365
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "books" ("created_at", "id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 23 Apr 2014 23:08:28 UTC +00:00], ["id", 1], ["name", "The Black Rose of Northern Ireland"], ["updated_at", Wed, 23 Apr 2014 23:08:28 UTC +00:00]]
|
366
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
367
|
+
Started DELETE "/books/1" for 127.0.0.1 at 2014-04-23 19:08:28 -0400
|
368
|
+
Processing by BooksController#destroy as HTML
|
369
|
+
Parameters: {"id"=>"1"}
|
370
|
+
[1m[35mBook Load (0.0ms)[0m SELECT "books".* FROM "books" WHERE "books"."id" = ? LIMIT 1 [["id", "1"]]
|
371
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
372
|
+
[1m[35mSQL (0.3ms)[0m DELETE FROM "books" WHERE "books"."id" = ? [["id", 1]]
|
373
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
374
|
+
Redirected to http://www.example.com/books
|
375
|
+
Completed 302 Found in 2ms (ActiveRecord: 0.4ms)
|
376
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "books" WHERE "books"."id" = 1
|
377
|
+
[1m[36m (0.3ms)[0m [1mrollback transaction[0m
|
378
|
+
[1m[35m (0.0ms)[0m begin transaction
|
379
|
+
----------------------------------------------------------------------------------------
|
380
|
+
FastlyHeadersTest: test_POST_/books_should_not_have_fastly_headers/_fastly_header_values
|
381
|
+
----------------------------------------------------------------------------------------
|
382
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "books"[0m
|
383
|
+
Started POST "/books" for 127.0.0.1 at 2014-04-23 19:08:28 -0400
|
384
|
+
Processing by BooksController#create as HTML
|
385
|
+
Parameters: {"book"=>{"name"=>"some new book"}}
|
386
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
387
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Wed, 23 Apr 2014 23:08:28 UTC +00:00], ["name", "some new book"], ["updated_at", Wed, 23 Apr 2014 23:08:28 UTC +00:00]]
|
388
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
389
|
+
Redirected to http://www.example.com/books
|
390
|
+
Completed 302 Found in 2ms (ActiveRecord: 0.5ms)
|
391
|
+
[1m[36m (0.0ms)[0m [1mSELECT COUNT(*) FROM "books"[0m
|
392
|
+
[1m[35m (0.3ms)[0m rollback transaction
|
393
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
394
|
+
-------------------------------------------------------------------------------------------
|
395
|
+
FastlyHeadersTest: test_PUT_/books/:id_should_not_have_fastly_headers/_fastly_header_values
|
396
|
+
-------------------------------------------------------------------------------------------
|
397
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
398
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "books" ("created_at", "id", "name", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", Wed, 23 Apr 2014 23:08:28 UTC +00:00], ["id", 1], ["name", "some new book"], ["updated_at", Wed, 23 Apr 2014 23:08:28 UTC +00:00]]
|
399
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
400
|
+
Started PUT "/books/1" for 127.0.0.1 at 2014-04-23 19:08:28 -0400
|
401
|
+
Processing by BooksController#update as HTML
|
402
|
+
Parameters: {"id"=>"1", "book"=>{"name"=>"changed book"}}
|
403
|
+
[1m[36mBook Load (0.0ms)[0m [1mSELECT "books".* FROM "books" WHERE "books"."id" = ? LIMIT 1[0m [["id", "1"]]
|
404
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
405
|
+
[1m[36mSQL (0.3ms)[0m [1mUPDATE "books" SET "name" = ?, "updated_at" = ? WHERE "books"."id" = 1[0m [["name", "changed book"], ["updated_at", Wed, 23 Apr 2014 23:08:28 UTC +00:00]]
|
406
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
407
|
+
Redirected to http://www.example.com/books/1
|
408
|
+
Completed 302 Found in 3ms (ActiveRecord: 0.5ms)
|
409
|
+
[1m[36mBook Load (0.0ms)[0m [1mSELECT "books".* FROM "books" WHERE "books"."id" = ? LIMIT 1[0m [["id", 1]]
|
410
|
+
[1m[35m (0.3ms)[0m rollback transaction
|
411
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
412
|
+
[1m[35m (0.1ms)[0m commit transaction
|
413
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
414
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
415
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
416
|
+
-------------------------------------------------------------------------------------------------
|
417
|
+
FastlyRails::CacheControlHeadersTest: test_sets_cache_control_headers_on_actioncontroller_request
|
418
|
+
-------------------------------------------------------------------------------------------------
|
419
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
420
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
421
|
+
[1m[35m (0.0ms)[0m commit transaction
|
422
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
423
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
424
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
425
|
+
[1m[35m (0.0ms)[0m commit transaction
|
426
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
427
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
428
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
429
|
+
[1m[35m (0.0ms)[0m commit transaction
|
430
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
431
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
432
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
433
|
+
[1m[35m (0.0ms)[0m commit transaction
|
434
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
435
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
436
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
437
|
+
[1m[35m (0.0ms)[0m commit transaction
|
438
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
439
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
440
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
441
|
+
[1m[35m (0.0ms)[0m commit transaction
|
442
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
443
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
444
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
445
|
+
[1m[35m (0.0ms)[0m commit transaction
|
446
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
447
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
448
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
449
|
+
[1m[35m (0.0ms)[0m commit transaction
|
450
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
451
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
452
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
453
|
+
[1m[35m (0.0ms)[0m commit transaction
|
454
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
455
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
456
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
457
|
+
[1m[35m (0.0ms)[0m commit transaction
|
458
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
459
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
460
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
461
|
+
[1m[35m (0.0ms)[0m commit transaction
|
462
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
463
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
464
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
465
|
+
[1m[35m (0.0ms)[0m commit transaction
|
466
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
467
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
468
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
469
|
+
[1m[35m (0.0ms)[0m commit transaction
|
470
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
471
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
472
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
473
|
+
[1m[35m (0.0ms)[0m commit transaction
|
474
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
475
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
476
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
477
|
+
[1m[35m (0.0ms)[0m commit transaction
|
478
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
479
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
480
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
481
|
+
[1m[35m (0.0ms)[0m commit transaction
|
482
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
483
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
484
|
+
Connecting to database specified by database.yml
|
485
|
+
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
486
|
+
Migrating to CreateBooks (20140407202136)
|
487
|
+
[1m[35m (0.1ms)[0m begin transaction
|
488
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
489
|
+
[1m[35m (0.0ms)[0m begin transaction
|
490
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
491
|
+
[1m[35mSQL (2.0ms)[0m INSERT INTO "books" ("created_at", "id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 23 Apr 2014 23:19:50 UTC +00:00], ["id", 1], ["name", "The Tentacle from Outer Space"], ["updated_at", Wed, 23 Apr 2014 23:19:50 UTC +00:00]]
|
492
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
493
|
+
[1m[35m (0.7ms)[0m rollback transaction
|
494
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
495
|
+
[1m[35m (0.0ms)[0m commit transaction
|
496
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
497
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
498
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
499
|
+
[1m[35m (0.0ms)[0m commit transaction
|
500
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
501
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
502
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "books" ("created_at", "id", "name", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", Wed, 23 Apr 2014 23:19:50 UTC +00:00], ["id", 1], ["name", "The Diaries with a Thousand Faces"], ["updated_at", Wed, 23 Apr 2014 23:19:50 UTC +00:00]]
|
503
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
504
|
+
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|
505
|
+
[1m[35m (0.0ms)[0m begin transaction
|
506
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
507
|
+
[1m[35m (0.0ms)[0m begin transaction
|
508
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
509
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "books" ("created_at", "id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 23 Apr 2014 23:19:50 UTC +00:00], ["id", 1], ["name", "The Beast from Hell"], ["updated_at", Wed, 23 Apr 2014 23:19:50 UTC +00:00]]
|
510
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
511
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
512
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
513
|
+
[1m[35m (0.0ms)[0m commit transaction
|
514
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
515
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
516
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "books" ("created_at", "id", "name", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", Wed, 23 Apr 2014 23:19:50 UTC +00:00], ["id", 1], ["name", "Tokyo Dreams"], ["updated_at", Wed, 23 Apr 2014 23:19:50 UTC +00:00]]
|
517
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
518
|
+
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|
519
|
+
[1m[35m (0.0ms)[0m begin transaction
|
520
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
521
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 23 Apr 2014 23:19:50 UTC +00:00], ["name", "Death Wizard"], ["updated_at", Wed, 23 Apr 2014 23:19:50 UTC +00:00]]
|
522
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
523
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
524
|
+
[1m[36mSQL (0.7ms)[0m [1mINSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Wed, 23 Apr 2014 23:19:50 UTC +00:00], ["name", "Blonde World"], ["updated_at", Wed, 23 Apr 2014 23:19:50 UTC +00:00]]
|
525
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
526
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
527
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 23 Apr 2014 23:19:50 UTC +00:00], ["name", "American Diaries"], ["updated_at", Wed, 23 Apr 2014 23:19:50 UTC +00:00]]
|
528
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
529
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
530
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Wed, 23 Apr 2014 23:19:50 UTC +00:00], ["name", "Flying Identity"], ["updated_at", Wed, 23 Apr 2014 23:19:50 UTC +00:00]]
|
531
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
532
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
533
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 23 Apr 2014 23:19:50 UTC +00:00], ["name", "Rise of the Witch"], ["updated_at", Wed, 23 Apr 2014 23:19:50 UTC +00:00]]
|
534
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
535
|
+
[1m[35m (0.0ms)[0m SELECT COUNT(*) FROM "books"
|
536
|
+
Processing by BooksController#create as HTML
|
537
|
+
Parameters: {"book"=>{"name"=>"newly-created-book"}}
|
538
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
539
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 23 Apr 2014 23:19:50 UTC +00:00], ["name", "newly-created-book"], ["updated_at", Wed, 23 Apr 2014 23:19:50 UTC +00:00]]
|
540
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
541
|
+
Redirected to http://test.host/books
|
542
|
+
Completed 302 Found in 1.5ms (ActiveRecord: 0.2ms)
|
543
|
+
[1m[35m (0.0ms)[0m SELECT COUNT(*) FROM "books"
|
544
|
+
[1m[36m (0.3ms)[0m [1mrollback transaction[0m
|
545
|
+
[1m[35m (0.0ms)[0m begin transaction
|
546
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
547
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 23 Apr 2014 23:19:50 UTC +00:00], ["name", "Bloody Cat"], ["updated_at", Wed, 23 Apr 2014 23:19:50 UTC +00:00]]
|
548
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
549
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
550
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Wed, 23 Apr 2014 23:19:50 UTC +00:00], ["name", "When Ruben Met Ressie"], ["updated_at", Wed, 23 Apr 2014 23:19:50 UTC +00:00]]
|
551
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
552
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
553
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 23 Apr 2014 23:19:50 UTC +00:00], ["name", "Flying Diaries"], ["updated_at", Wed, 23 Apr 2014 23:19:50 UTC +00:00]]
|
554
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
555
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
556
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Wed, 23 Apr 2014 23:19:50 UTC +00:00], ["name", "The Ninja from River Heights"], ["updated_at", Wed, 23 Apr 2014 23:19:50 UTC +00:00]]
|
557
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
558
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
559
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 23 Apr 2014 23:19:50 UTC +00:00], ["name", "The Diaries from Mars"], ["updated_at", Wed, 23 Apr 2014 23:19:50 UTC +00:00]]
|
560
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
561
|
+
Processing by BooksController#index as HTML
|
562
|
+
[1m[35mBook Load (0.1ms)[0m SELECT "books".* FROM "books"
|
563
|
+
Completed 200 OK in 5.8ms (Views: 4.9ms | ActiveRecord: 0.1ms)
|
564
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
565
|
+
[1m[35m (0.0ms)[0m begin transaction
|
566
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
567
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 23 Apr 2014 23:19:50 UTC +00:00], ["name", "Ultra Tentacle 2: Son of Ultra Tentacle"], ["updated_at", Wed, 23 Apr 2014 23:19:50 UTC +00:00]]
|
568
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
569
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
570
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Wed, 23 Apr 2014 23:19:50 UTC +00:00], ["name", "The American Woman from Hell"], ["updated_at", Wed, 23 Apr 2014 23:19:50 UTC +00:00]]
|
571
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
572
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
573
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 23 Apr 2014 23:19:50 UTC +00:00], ["name", "Death Wizard"], ["updated_at", Wed, 23 Apr 2014 23:19:50 UTC +00:00]]
|
574
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
575
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
576
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Wed, 23 Apr 2014 23:19:50 UTC +00:00], ["name", "The Demon Without a Tentacle"], ["updated_at", Wed, 23 Apr 2014 23:19:50 UTC +00:00]]
|
577
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
578
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
579
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 23 Apr 2014 23:19:50 UTC +00:00], ["name", "The Women from Across the Ocean"], ["updated_at", Wed, 23 Apr 2014 23:19:50 UTC +00:00]]
|
580
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
581
|
+
Processing by BooksController#show as HTML
|
582
|
+
Parameters: {"id"=>"1"}
|
583
|
+
[1m[35mBook Load (0.1ms)[0m SELECT "books".* FROM "books" WHERE "books"."id" = ? LIMIT 1 [["id", "1"]]
|
584
|
+
Completed 200 OK in 2.7ms (Views: 1.3ms | ActiveRecord: 0.1ms)
|
585
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
586
|
+
[1m[35m (0.0ms)[0m begin transaction
|
587
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
588
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "books" ("created_at", "id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 23 Apr 2014 23:19:50 UTC +00:00], ["id", 1], ["name", "Action City"], ["updated_at", Wed, 23 Apr 2014 23:19:50 UTC +00:00]]
|
589
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
590
|
+
Started GET "/books/1" for 127.0.0.1 at 2014-04-23 19:19:50 -0400
|
591
|
+
Processing by BooksController#show as HTML
|
592
|
+
Parameters: {"id"=>"1"}
|
593
|
+
[1m[35mBook Load (0.0ms)[0m SELECT "books".* FROM "books" WHERE "books"."id" = ? LIMIT 1 [["id", "1"]]
|
594
|
+
Completed 200 OK in 1.6ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
595
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
596
|
+
[1m[35m (0.0ms)[0m begin transaction
|
597
|
+
Started GET "/books" for 127.0.0.1 at 2014-04-23 19:19:50 -0400
|
598
|
+
Processing by BooksController#index as HTML
|
599
|
+
[1m[36mBook Load (0.1ms)[0m [1mSELECT "books".* FROM "books" [0m
|
600
|
+
Completed 200 OK in 1.6ms (Views: 0.9ms | ActiveRecord: 0.1ms)
|
601
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
602
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
603
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
604
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "books" ("created_at", "id", "name", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", Wed, 23 Apr 2014 23:19:50 UTC +00:00], ["id", 1], ["name", "Christmas on Turcotte Mission"], ["updated_at", Wed, 23 Apr 2014 23:19:50 UTC +00:00]]
|
605
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
606
|
+
Started DELETE "/books/1" for 127.0.0.1 at 2014-04-23 19:19:50 -0400
|
607
|
+
Processing by BooksController#destroy as HTML
|
608
|
+
Parameters: {"id"=>"1"}
|
609
|
+
[1m[36mBook Load (0.1ms)[0m [1mSELECT "books".* FROM "books" WHERE "books"."id" = ? LIMIT 1[0m [["id", "1"]]
|
610
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
611
|
+
[1m[36mSQL (0.3ms)[0m [1mDELETE FROM "books" WHERE "books"."id" = ?[0m [["id", 1]]
|
612
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
613
|
+
Redirected to http://www.example.com/books
|
614
|
+
Completed 302 Found in 2.2ms (ActiveRecord: 0.4ms)
|
615
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "books" WHERE "books"."id" = 1[0m
|
616
|
+
[1m[35m (0.3ms)[0m rollback transaction
|
617
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
618
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "books"
|
619
|
+
Started POST "/books" for 127.0.0.1 at 2014-04-23 19:19:50 -0400
|
620
|
+
Processing by BooksController#create as HTML
|
621
|
+
Parameters: {"book"=>{"name"=>"some new book"}}
|
622
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
623
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 23 Apr 2014 23:19:50 UTC +00:00], ["name", "some new book"], ["updated_at", Wed, 23 Apr 2014 23:19:50 UTC +00:00]]
|
624
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
625
|
+
Redirected to http://www.example.com/books
|
626
|
+
Completed 302 Found in 1.5ms (ActiveRecord: 0.3ms)
|
627
|
+
[1m[35m (0.0ms)[0m SELECT COUNT(*) FROM "books"
|
628
|
+
[1m[36m (0.3ms)[0m [1mrollback transaction[0m
|
629
|
+
[1m[35m (0.0ms)[0m begin transaction
|
630
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
631
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "books" ("created_at", "id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 23 Apr 2014 23:19:50 UTC +00:00], ["id", 1], ["name", "some new book"], ["updated_at", Wed, 23 Apr 2014 23:19:50 UTC +00:00]]
|
632
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
633
|
+
Started PUT "/books/1" for 127.0.0.1 at 2014-04-23 19:19:50 -0400
|
634
|
+
Processing by BooksController#update as HTML
|
635
|
+
Parameters: {"id"=>"1", "book"=>{"name"=>"changed book"}}
|
636
|
+
[1m[35mBook Load (0.0ms)[0m SELECT "books".* FROM "books" WHERE "books"."id" = ? LIMIT 1 [["id", "1"]]
|
637
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
638
|
+
[1m[35m (0.2ms)[0m UPDATE "books" SET "name" = 'changed book', "updated_at" = '2014-04-23 23:19:50.159776' WHERE "books"."id" = 1
|
639
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
640
|
+
Redirected to http://www.example.com/books/1
|
641
|
+
Completed 302 Found in 2.7ms (ActiveRecord: 0.3ms)
|
642
|
+
[1m[35mBook Load (0.0ms)[0m SELECT "books".* FROM "books" WHERE "books"."id" = ? LIMIT 1 [["id", 1]]
|
643
|
+
[1m[36m (0.3ms)[0m [1mrollback transaction[0m
|
644
|
+
[1m[35m (0.0ms)[0m begin transaction
|
645
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
646
|
+
[1m[35m (0.0ms)[0m begin transaction
|
647
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
648
|
+
[1m[35m (0.0ms)[0m begin transaction
|
649
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
650
|
+
[1m[35m (0.0ms)[0m begin transaction
|
651
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
652
|
+
[1m[35m (0.0ms)[0m begin transaction
|
653
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
654
|
+
[1m[35m (0.0ms)[0m begin transaction
|
655
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
656
|
+
[1m[35m (0.0ms)[0m begin transaction
|
657
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
658
|
+
[1m[35m (0.0ms)[0m begin transaction
|
659
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
660
|
+
[1m[35m (0.0ms)[0m begin transaction
|
661
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
662
|
+
[1m[35m (0.0ms)[0m begin transaction
|
663
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
664
|
+
[1m[35m (0.0ms)[0m begin transaction
|
665
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
666
|
+
[1m[35m (0.0ms)[0m begin transaction
|
667
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
668
|
+
[1m[35m (0.0ms)[0m begin transaction
|
669
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
670
|
+
[1m[35m (0.0ms)[0m begin transaction
|
671
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
672
|
+
[1m[35m (0.0ms)[0m begin transaction
|
673
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
674
|
+
[1m[35m (0.0ms)[0m begin transaction
|
675
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
676
|
+
[1m[35m (0.0ms)[0m begin transaction
|
677
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
678
|
+
[1m[35m (0.0ms)[0m begin transaction
|
679
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
680
|
+
[1m[35m (0.0ms)[0m begin transaction
|
681
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
682
|
+
[1m[35m (0.0ms)[0m begin transaction
|
683
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
684
|
+
[1m[35m (0.0ms)[0m begin transaction
|
685
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
686
|
+
[1m[35m (0.0ms)[0m begin transaction
|
687
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
688
|
+
[1m[35m (0.0ms)[0m begin transaction
|
689
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
690
|
+
[1m[35m (0.0ms)[0m begin transaction
|
691
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
692
|
+
[1m[35m (0.0ms)[0m begin transaction
|
693
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
694
|
+
[1m[35m (0.0ms)[0m begin transaction
|
695
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
696
|
+
[1m[35m (0.0ms)[0m begin transaction
|
697
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
698
|
+
[1m[35m (0.0ms)[0m begin transaction
|
699
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
700
|
+
[1m[35m (0.0ms)[0m begin transaction
|
701
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
702
|
+
[1m[35m (0.0ms)[0m begin transaction
|
703
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
704
|
+
[1m[35m (0.0ms)[0m begin transaction
|
705
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
706
|
+
[1m[35m (0.0ms)[0m begin transaction
|
707
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
708
|
+
[1m[35m (0.0ms)[0m begin transaction
|
709
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
710
|
+
[1m[35m (0.0ms)[0m begin transaction
|
711
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
712
|
+
[1m[35m (0.0ms)[0m begin transaction
|
713
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
714
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
715
|
+
[1m[35m (0.1ms)[0m begin transaction
|
716
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
717
|
+
[1m[35m (0.0ms)[0m begin transaction
|
718
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
719
|
+
[1m[35m (0.0ms)[0m begin transaction
|
720
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
721
|
+
[1m[35m (0.0ms)[0m begin transaction
|
722
|
+
[1m[36mSQL (1.9ms)[0m [1mINSERT INTO "books" ("created_at", "id", "name", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", Wed, 23 Apr 2014 23:19:52 UTC +00:00], ["id", 1], ["name", "Flying Brains"], ["updated_at", Wed, 23 Apr 2014 23:19:52 UTC +00:00]]
|
723
|
+
[1m[35m (0.8ms)[0m rollback transaction
|
724
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
725
|
+
[1m[35m (0.0ms)[0m commit transaction
|
726
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
727
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "books" ("created_at", "id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 23 Apr 2014 23:19:52 UTC +00:00], ["id", 1], ["name", "Je Vous Presente, Kathlyn"], ["updated_at", Wed, 23 Apr 2014 23:19:52 UTC +00:00]]
|
728
|
+
[1m[36m (0.3ms)[0m [1mrollback transaction[0m
|
729
|
+
[1m[35m (0.1ms)[0m begin transaction
|
730
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
731
|
+
[1m[35m (0.0ms)[0m begin transaction
|
732
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "books" ("created_at", "id", "name", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", Wed, 23 Apr 2014 23:19:52 UTC +00:00], ["id", 1], ["name", "Hard Boiled Wizard"], ["updated_at", Wed, 23 Apr 2014 23:19:52 UTC +00:00]]
|
733
|
+
[1m[35m (0.3ms)[0m rollback transaction
|
734
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
735
|
+
[1m[35m (0.0ms)[0m commit transaction
|
736
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
737
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "books" ("created_at", "id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 23 Apr 2014 23:19:52 UTC +00:00], ["id", 1], ["name", "When Presley Met Cindy"], ["updated_at", Wed, 23 Apr 2014 23:19:52 UTC +00:00]]
|
738
|
+
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|
739
|
+
[1m[35m (0.0ms)[0m begin transaction
|
740
|
+
--------------------------------
|
741
|
+
BooksControllerTest: test_create
|
742
|
+
--------------------------------
|
743
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
744
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 23 Apr 2014 23:19:52 UTC +00:00], ["name", "I am Tears"], ["updated_at", Wed, 23 Apr 2014 23:19:52 UTC +00:00]]
|
745
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
746
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
747
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Wed, 23 Apr 2014 23:19:52 UTC +00:00], ["name", "The Hungry Brains from Across the Ocean"], ["updated_at", Wed, 23 Apr 2014 23:19:52 UTC +00:00]]
|
748
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
749
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
750
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 23 Apr 2014 23:19:52 UTC +00:00], ["name", "Je Vous Presente, Xzavier"], ["updated_at", Wed, 23 Apr 2014 23:19:52 UTC +00:00]]
|
751
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
752
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
753
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Wed, 23 Apr 2014 23:19:52 UTC +00:00], ["name", "The Blonde Man from Outer Space"], ["updated_at", Wed, 23 Apr 2014 23:19:52 UTC +00:00]]
|
754
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
755
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
756
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 23 Apr 2014 23:19:52 UTC +00:00], ["name", "The Mutant from 7198 Leagues"], ["updated_at", Wed, 23 Apr 2014 23:19:52 UTC +00:00]]
|
757
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
758
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "books"
|
759
|
+
Processing by BooksController#create as HTML
|
760
|
+
Parameters: {"book"=>{"name"=>"newly-created-book"}}
|
761
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
762
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 23 Apr 2014 23:19:52 UTC +00:00], ["name", "newly-created-book"], ["updated_at", Wed, 23 Apr 2014 23:19:52 UTC +00:00]]
|
763
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
764
|
+
Redirected to http://test.host/books
|
765
|
+
Completed 302 Found in 2ms (ActiveRecord: 0.2ms)
|
766
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "books"
|
767
|
+
[1m[36m (0.3ms)[0m [1mrollback transaction[0m
|
768
|
+
[1m[35m (0.1ms)[0m begin transaction
|
769
|
+
-------------------------------
|
770
|
+
BooksControllerTest: test_index
|
771
|
+
-------------------------------
|
772
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
773
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 23 Apr 2014 23:19:52 UTC +00:00], ["name", "Journey of the Hungry Wizard"], ["updated_at", Wed, 23 Apr 2014 23:19:52 UTC +00:00]]
|
774
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
775
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
776
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Wed, 23 Apr 2014 23:19:52 UTC +00:00], ["name", "Forbidden Mutant"], ["updated_at", Wed, 23 Apr 2014 23:19:52 UTC +00:00]]
|
777
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
778
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
779
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 23 Apr 2014 23:19:52 UTC +00:00], ["name", "The Cousins from Murray Hill"], ["updated_at", Wed, 23 Apr 2014 23:19:52 UTC +00:00]]
|
780
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
781
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
782
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Wed, 23 Apr 2014 23:19:52 UTC +00:00], ["name", "The Ninja from 11701 Leagues"], ["updated_at", Wed, 23 Apr 2014 23:19:52 UTC +00:00]]
|
783
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
784
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
785
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 23 Apr 2014 23:19:52 UTC +00:00], ["name", "Blue Witch"], ["updated_at", Wed, 23 Apr 2014 23:19:52 UTC +00:00]]
|
786
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
787
|
+
Processing by BooksController#index as HTML
|
788
|
+
Completed 200 OK in 9ms (Views: 8.5ms | ActiveRecord: 0.0ms)
|
789
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "books"
|
790
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
791
|
+
[1m[35m (0.1ms)[0m begin transaction
|
792
|
+
------------------------------
|
793
|
+
BooksControllerTest: test_show
|
794
|
+
------------------------------
|
795
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
796
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 23 Apr 2014 23:19:52 UTC +00:00], ["name", "Tokyo Men"], ["updated_at", Wed, 23 Apr 2014 23:19:52 UTC +00:00]]
|
797
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
798
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
799
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Wed, 23 Apr 2014 23:19:52 UTC +00:00], ["name", "Red Men"], ["updated_at", Wed, 23 Apr 2014 23:19:52 UTC +00:00]]
|
800
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
801
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
802
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 23 Apr 2014 23:19:52 UTC +00:00], ["name", "The Red Rose of Scotland"], ["updated_at", Wed, 23 Apr 2014 23:19:52 UTC +00:00]]
|
803
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
804
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
805
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Wed, 23 Apr 2014 23:19:52 UTC +00:00], ["name", "Nuclear Rain"], ["updated_at", Wed, 23 Apr 2014 23:19:52 UTC +00:00]]
|
806
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
807
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
808
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 23 Apr 2014 23:19:52 UTC +00:00], ["name", "The Wolf from Hell"], ["updated_at", Wed, 23 Apr 2014 23:19:52 UTC +00:00]]
|
809
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
810
|
+
Processing by BooksController#show as HTML
|
811
|
+
Parameters: {"id"=>"1"}
|
812
|
+
[1m[35mBook Load (0.1ms)[0m SELECT "books".* FROM "books" WHERE "books"."id" = ? LIMIT 1 [["id", "1"]]
|
813
|
+
Completed 200 OK in 3ms (Views: 1.5ms | ActiveRecord: 0.1ms)
|
814
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
815
|
+
[1m[35m (0.0ms)[0m begin transaction
|
816
|
+
-----------------------------------------------------------------------
|
817
|
+
FastlyHeadersTest: test_/books/:id_show_page_should_have_fastly_headers
|
818
|
+
-----------------------------------------------------------------------
|
819
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
820
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "books" ("created_at", "id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 23 Apr 2014 23:19:52 UTC +00:00], ["id", 1], ["name", "The Pickpocket"], ["updated_at", Wed, 23 Apr 2014 23:19:52 UTC +00:00]]
|
821
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
822
|
+
Started GET "/books/1" for 127.0.0.1 at 2014-04-23 19:19:52 -0400
|
823
|
+
Processing by BooksController#show as HTML
|
824
|
+
Parameters: {"id"=>"1"}
|
825
|
+
[1m[35mBook Load (0.1ms)[0m SELECT "books".* FROM "books" WHERE "books"."id" = ? LIMIT 1 [["id", "1"]]
|
826
|
+
Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.1ms)
|
827
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
828
|
+
[1m[35m (0.0ms)[0m begin transaction
|
829
|
+
--------------------------------------------------------------------
|
830
|
+
FastlyHeadersTest: test_/books_index_page_should_have_fastly_headers
|
831
|
+
--------------------------------------------------------------------
|
832
|
+
Started GET "/books" for 127.0.0.1 at 2014-04-23 19:19:52 -0400
|
833
|
+
Processing by BooksController#index as HTML
|
834
|
+
Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
|
835
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
836
|
+
[1m[35m (0.0ms)[0m begin transaction
|
837
|
+
----------------------------------------------------------------------------------------------
|
838
|
+
FastlyHeadersTest: test_DELETE_/books/:id_should_not_have_fastly_headers/_fastly_header_values
|
839
|
+
----------------------------------------------------------------------------------------------
|
840
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
841
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "books" ("created_at", "id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 23 Apr 2014 23:19:52 UTC +00:00], ["id", 1], ["name", "Legend of Blue Demon"], ["updated_at", Wed, 23 Apr 2014 23:19:52 UTC +00:00]]
|
842
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
843
|
+
Started DELETE "/books/1" for 127.0.0.1 at 2014-04-23 19:19:52 -0400
|
844
|
+
Processing by BooksController#destroy as HTML
|
845
|
+
Parameters: {"id"=>"1"}
|
846
|
+
[1m[35mBook Load (0.1ms)[0m SELECT "books".* FROM "books" WHERE "books"."id" = ? LIMIT 1 [["id", "1"]]
|
847
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
848
|
+
[1m[35mSQL (0.2ms)[0m DELETE FROM "books" WHERE "books"."id" = ? [["id", 1]]
|
849
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
850
|
+
Redirected to http://www.example.com/books
|
851
|
+
Completed 302 Found in 2ms (ActiveRecord: 0.4ms)
|
852
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "books" WHERE "books"."id" = 1
|
853
|
+
[1m[36m (0.3ms)[0m [1mrollback transaction[0m
|
854
|
+
[1m[35m (0.1ms)[0m begin transaction
|
855
|
+
----------------------------------------------------------------------------------------
|
856
|
+
FastlyHeadersTest: test_POST_/books_should_not_have_fastly_headers/_fastly_header_values
|
857
|
+
----------------------------------------------------------------------------------------
|
858
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "books"[0m
|
859
|
+
Started POST "/books" for 127.0.0.1 at 2014-04-23 19:19:52 -0400
|
860
|
+
Processing by BooksController#create as HTML
|
861
|
+
Parameters: {"book"=>{"name"=>"some new book"}}
|
862
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
863
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Wed, 23 Apr 2014 23:19:52 UTC +00:00], ["name", "some new book"], ["updated_at", Wed, 23 Apr 2014 23:19:52 UTC +00:00]]
|
864
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
865
|
+
Redirected to http://www.example.com/books
|
866
|
+
Completed 302 Found in 2ms (ActiveRecord: 0.3ms)
|
867
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "books"[0m
|
868
|
+
[1m[35m (0.3ms)[0m rollback transaction
|
869
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
870
|
+
-------------------------------------------------------------------------------------------
|
871
|
+
FastlyHeadersTest: test_PUT_/books/:id_should_not_have_fastly_headers/_fastly_header_values
|
872
|
+
-------------------------------------------------------------------------------------------
|
873
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
874
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "books" ("created_at", "id", "name", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", Wed, 23 Apr 2014 23:19:52 UTC +00:00], ["id", 1], ["name", "some new book"], ["updated_at", Wed, 23 Apr 2014 23:19:52 UTC +00:00]]
|
875
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
876
|
+
Started PUT "/books/1" for 127.0.0.1 at 2014-04-23 19:19:52 -0400
|
877
|
+
Processing by BooksController#update as HTML
|
878
|
+
Parameters: {"id"=>"1", "book"=>{"name"=>"changed book"}}
|
879
|
+
[1m[36mBook Load (0.0ms)[0m [1mSELECT "books".* FROM "books" WHERE "books"."id" = ? LIMIT 1[0m [["id", "1"]]
|
880
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
881
|
+
[1m[36mSQL (0.3ms)[0m [1mUPDATE "books" SET "name" = ?, "updated_at" = ? WHERE "books"."id" = 1[0m [["name", "changed book"], ["updated_at", Wed, 23 Apr 2014 23:19:52 UTC +00:00]]
|
882
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
883
|
+
Redirected to http://www.example.com/books/1
|
884
|
+
Completed 302 Found in 3ms (ActiveRecord: 0.5ms)
|
885
|
+
[1m[36mBook Load (0.0ms)[0m [1mSELECT "books".* FROM "books" WHERE "books"."id" = ? LIMIT 1[0m [["id", 1]]
|
886
|
+
[1m[35m (0.3ms)[0m rollback transaction
|
887
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
888
|
+
[1m[35m (0.0ms)[0m commit transaction
|
889
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
890
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
891
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
892
|
+
-------------------------------------------------------------------------------------------------
|
893
|
+
FastlyRails::CacheControlHeadersTest: test_sets_cache_control_headers_on_actioncontroller_request
|
894
|
+
-------------------------------------------------------------------------------------------------
|
895
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
896
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
897
|
+
[1m[35m (0.0ms)[0m commit transaction
|
898
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
899
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
900
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
901
|
+
[1m[35m (0.0ms)[0m commit transaction
|
902
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
903
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
904
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
905
|
+
[1m[35m (0.0ms)[0m commit transaction
|
906
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
907
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
908
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
909
|
+
[1m[35m (0.0ms)[0m commit transaction
|
910
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
911
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
912
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
913
|
+
[1m[35m (0.1ms)[0m commit transaction
|
914
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
915
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
916
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
917
|
+
[1m[35m (0.0ms)[0m commit transaction
|
918
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
919
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
920
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
921
|
+
[1m[35m (0.0ms)[0m commit transaction
|
922
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
923
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
924
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
925
|
+
[1m[35m (0.0ms)[0m commit transaction
|
926
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
927
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
928
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
929
|
+
[1m[35m (0.0ms)[0m commit transaction
|
930
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
931
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
932
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
933
|
+
[1m[35m (0.0ms)[0m commit transaction
|
934
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
935
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
936
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
937
|
+
[1m[35m (0.0ms)[0m commit transaction
|
938
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
939
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
940
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
941
|
+
[1m[35m (0.0ms)[0m commit transaction
|
942
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
943
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
944
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
945
|
+
[1m[35m (0.0ms)[0m commit transaction
|
946
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
947
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
948
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
949
|
+
[1m[35m (0.0ms)[0m commit transaction
|
950
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
951
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
952
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
953
|
+
[1m[35m (0.0ms)[0m commit transaction
|
954
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
955
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
956
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
957
|
+
[1m[35m (0.0ms)[0m commit transaction
|
958
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
959
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
960
|
+
Connecting to database specified by database.yml
|
961
|
+
[1m[36m (0.0ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
962
|
+
Migrating to CreateBooks (20140407202136)
|
963
|
+
[1m[35m (0.1ms)[0m begin transaction
|
964
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
965
|
+
[1m[35m (0.0ms)[0m begin transaction
|
966
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
967
|
+
[1m[35mSQL (2.1ms)[0m INSERT INTO "books" ("created_at", "id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 23 Apr 2014 23:21:01 UTC +00:00], ["id", 1], ["name", "The Death Rain from the Black Lagoon"], ["updated_at", Wed, 23 Apr 2014 23:21:01 UTC +00:00]]
|
968
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
969
|
+
[1m[35m (0.7ms)[0m rollback transaction
|
970
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
971
|
+
[1m[35m (0.0ms)[0m commit transaction
|
972
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
973
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
974
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "books" ("created_at", "id", "name", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", Wed, 23 Apr 2014 23:21:01 UTC +00:00], ["id", 1], ["name", "Legend of Cousins"], ["updated_at", Wed, 23 Apr 2014 23:21:01 UTC +00:00]]
|
975
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
976
|
+
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|
977
|
+
[1m[35m (0.0ms)[0m begin transaction
|
978
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
979
|
+
[1m[35m (0.0ms)[0m begin transaction
|
980
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
981
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "books" ("created_at", "id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 23 Apr 2014 23:21:01 UTC +00:00], ["id", 1], ["name", "The Cat Who Fell to Earth"], ["updated_at", Wed, 23 Apr 2014 23:21:01 UTC +00:00]]
|
982
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
983
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
984
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
985
|
+
[1m[35m (0.0ms)[0m commit transaction
|
986
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
987
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
988
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
989
|
+
[1m[35m (0.0ms)[0m commit transaction
|
990
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
991
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
992
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "books" ("created_at", "id", "name", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", Wed, 23 Apr 2014 23:21:01 UTC +00:00], ["id", 1], ["name", "Death Mutant 2: Son of Death Mutant"], ["updated_at", Wed, 23 Apr 2014 23:21:01 UTC +00:00]]
|
993
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
994
|
+
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|
995
|
+
[1m[35m (0.0ms)[0m begin transaction
|
996
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
997
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 23 Apr 2014 23:21:01 UTC +00:00], ["name", "The Ultra Rain from Mars"], ["updated_at", Wed, 23 Apr 2014 23:21:01 UTC +00:00]]
|
998
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
999
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1000
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Wed, 23 Apr 2014 23:21:01 UTC +00:00], ["name", "The Tokyo Clash with a Thousand Faces"], ["updated_at", Wed, 23 Apr 2014 23:21:01 UTC +00:00]]
|
1001
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1002
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1003
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 23 Apr 2014 23:21:01 UTC +00:00], ["name", "The Bloody World Who Fell to Earth"], ["updated_at", Wed, 23 Apr 2014 23:21:01 UTC +00:00]]
|
1004
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1005
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1006
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Wed, 23 Apr 2014 23:21:01 UTC +00:00], ["name", "Legend of Cousins"], ["updated_at", Wed, 23 Apr 2014 23:21:01 UTC +00:00]]
|
1007
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1008
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1009
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 23 Apr 2014 23:21:01 UTC +00:00], ["name", "Ultra Mutant"], ["updated_at", Wed, 23 Apr 2014 23:21:01 UTC +00:00]]
|
1010
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1011
|
+
[1m[35m (0.0ms)[0m SELECT COUNT(*) FROM "books"
|
1012
|
+
Processing by BooksController#create as HTML
|
1013
|
+
Parameters: {"book"=>{"name"=>"newly-created-book"}}
|
1014
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1015
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 23 Apr 2014 23:21:01 UTC +00:00], ["name", "newly-created-book"], ["updated_at", Wed, 23 Apr 2014 23:21:01 UTC +00:00]]
|
1016
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1017
|
+
Redirected to http://test.host/books
|
1018
|
+
Completed 302 Found in 1.7ms (ActiveRecord: 0.2ms)
|
1019
|
+
[1m[35m (0.0ms)[0m SELECT COUNT(*) FROM "books"
|
1020
|
+
[1m[36m (0.3ms)[0m [1mrollback transaction[0m
|
1021
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1022
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1023
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 23 Apr 2014 23:21:01 UTC +00:00], ["name", "Blue Witch"], ["updated_at", Wed, 23 Apr 2014 23:21:01 UTC +00:00]]
|
1024
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1025
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1026
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Wed, 23 Apr 2014 23:21:01 UTC +00:00], ["name", "Je Vous Presente, Theo"], ["updated_at", Wed, 23 Apr 2014 23:21:01 UTC +00:00]]
|
1027
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1028
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1029
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 23 Apr 2014 23:21:01 UTC +00:00], ["name", "Nuclear World"], ["updated_at", Wed, 23 Apr 2014 23:21:01 UTC +00:00]]
|
1030
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1031
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1032
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Wed, 23 Apr 2014 23:21:01 UTC +00:00], ["name", "Nuclear Tears: The Kennith Purdy PhD Story"], ["updated_at", Wed, 23 Apr 2014 23:21:01 UTC +00:00]]
|
1033
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1034
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1035
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 23 Apr 2014 23:21:01 UTC +00:00], ["name", "Blue Cousins"], ["updated_at", Wed, 23 Apr 2014 23:21:01 UTC +00:00]]
|
1036
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1037
|
+
Processing by BooksController#index as HTML
|
1038
|
+
[1m[35mBook Load (0.1ms)[0m SELECT "books".* FROM "books"
|
1039
|
+
Completed 200 OK in 6.4ms (Views: 5.3ms | ActiveRecord: 0.1ms)
|
1040
|
+
[1m[36m (0.3ms)[0m [1mrollback transaction[0m
|
1041
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1042
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1043
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 23 Apr 2014 23:21:01 UTC +00:00], ["name", "The Forbidden Dreams That Came to Dinner"], ["updated_at", Wed, 23 Apr 2014 23:21:01 UTC +00:00]]
|
1044
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1045
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1046
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Wed, 23 Apr 2014 23:21:01 UTC +00:00], ["name", "The Action Cat from Across the Ocean"], ["updated_at", Wed, 23 Apr 2014 23:21:01 UTC +00:00]]
|
1047
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1048
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1049
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 23 Apr 2014 23:21:01 UTC +00:00], ["name", "The Fake Thief with a Thousand Faces"], ["updated_at", Wed, 23 Apr 2014 23:21:01 UTC +00:00]]
|
1050
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1051
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1052
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Wed, 23 Apr 2014 23:21:01 UTC +00:00], ["name", "Planet of the Red Blow"], ["updated_at", Wed, 23 Apr 2014 23:21:01 UTC +00:00]]
|
1053
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1054
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1055
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 23 Apr 2014 23:21:01 UTC +00:00], ["name", "The Ninja from Pound Ridge East"], ["updated_at", Wed, 23 Apr 2014 23:21:01 UTC +00:00]]
|
1056
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1057
|
+
Processing by BooksController#show as HTML
|
1058
|
+
Parameters: {"id"=>"1"}
|
1059
|
+
[1m[35mBook Load (0.1ms)[0m SELECT "books".* FROM "books" WHERE "books"."id" = ? LIMIT 1 [["id", "1"]]
|
1060
|
+
Completed 200 OK in 2.5ms (Views: 1.2ms | ActiveRecord: 0.1ms)
|
1061
|
+
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|
1062
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1063
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1064
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "books" ("created_at", "id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 23 Apr 2014 23:21:01 UTC +00:00], ["id", 1], ["name", "Journey of the Nuclear Hills"], ["updated_at", Wed, 23 Apr 2014 23:21:01 UTC +00:00]]
|
1065
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1066
|
+
Started GET "/books/1" for 127.0.0.1 at 2014-04-23 19:21:01 -0400
|
1067
|
+
Processing by BooksController#show as HTML
|
1068
|
+
Parameters: {"id"=>"1"}
|
1069
|
+
[1m[35mBook Load (0.1ms)[0m SELECT "books".* FROM "books" WHERE "books"."id" = ? LIMIT 1 [["id", "1"]]
|
1070
|
+
Completed 200 OK in 1.7ms (Views: 0.9ms | ActiveRecord: 0.1ms)
|
1071
|
+
[1m[36m (0.3ms)[0m [1mrollback transaction[0m
|
1072
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1073
|
+
Started GET "/books" for 127.0.0.1 at 2014-04-23 19:21:01 -0400
|
1074
|
+
Processing by BooksController#index as HTML
|
1075
|
+
[1m[36mBook Load (0.2ms)[0m [1mSELECT "books".* FROM "books" [0m
|
1076
|
+
Completed 200 OK in 1.4ms (Views: 0.8ms | ActiveRecord: 0.2ms)
|
1077
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1078
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1079
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1080
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "books" ("created_at", "id", "name", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", Wed, 23 Apr 2014 23:21:01 UTC +00:00], ["id", 1], ["name", "Action Ninja"], ["updated_at", Wed, 23 Apr 2014 23:21:01 UTC +00:00]]
|
1081
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1082
|
+
Started DELETE "/books/1" for 127.0.0.1 at 2014-04-23 19:21:01 -0400
|
1083
|
+
Processing by BooksController#destroy as HTML
|
1084
|
+
Parameters: {"id"=>"1"}
|
1085
|
+
[1m[36mBook Load (0.0ms)[0m [1mSELECT "books".* FROM "books" WHERE "books"."id" = ? LIMIT 1[0m [["id", "1"]]
|
1086
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1087
|
+
[1m[36mSQL (0.2ms)[0m [1mDELETE FROM "books" WHERE "books"."id" = ?[0m [["id", 1]]
|
1088
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1089
|
+
Redirected to http://www.example.com/books
|
1090
|
+
Completed 302 Found in 1.9ms (ActiveRecord: 0.3ms)
|
1091
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "books" WHERE "books"."id" = 1[0m
|
1092
|
+
[1m[35m (0.3ms)[0m rollback transaction
|
1093
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1094
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "books"
|
1095
|
+
Started POST "/books" for 127.0.0.1 at 2014-04-23 19:21:01 -0400
|
1096
|
+
Processing by BooksController#create as HTML
|
1097
|
+
Parameters: {"book"=>{"name"=>"some new book"}}
|
1098
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1099
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 23 Apr 2014 23:21:01 UTC +00:00], ["name", "some new book"], ["updated_at", Wed, 23 Apr 2014 23:21:01 UTC +00:00]]
|
1100
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1101
|
+
Redirected to http://www.example.com/books
|
1102
|
+
Completed 302 Found in 1.4ms (ActiveRecord: 0.3ms)
|
1103
|
+
[1m[35m (0.0ms)[0m SELECT COUNT(*) FROM "books"
|
1104
|
+
[1m[36m (0.3ms)[0m [1mrollback transaction[0m
|
1105
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1106
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1107
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "books" ("created_at", "id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 23 Apr 2014 23:21:01 UTC +00:00], ["id", 1], ["name", "some new book"], ["updated_at", Wed, 23 Apr 2014 23:21:01 UTC +00:00]]
|
1108
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1109
|
+
Started PUT "/books/1" for 127.0.0.1 at 2014-04-23 19:21:01 -0400
|
1110
|
+
Processing by BooksController#update as HTML
|
1111
|
+
Parameters: {"id"=>"1", "book"=>{"name"=>"changed book"}}
|
1112
|
+
[1m[35mBook Load (0.0ms)[0m SELECT "books".* FROM "books" WHERE "books"."id" = ? LIMIT 1 [["id", "1"]]
|
1113
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1114
|
+
[1m[35m (0.3ms)[0m UPDATE "books" SET "name" = 'changed book', "updated_at" = '2014-04-23 23:21:01.813750' WHERE "books"."id" = 1
|
1115
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1116
|
+
Redirected to http://www.example.com/books/1
|
1117
|
+
Completed 302 Found in 3.1ms (ActiveRecord: 0.4ms)
|
1118
|
+
[1m[35mBook Load (0.0ms)[0m SELECT "books".* FROM "books" WHERE "books"."id" = ? LIMIT 1 [["id", 1]]
|
1119
|
+
[1m[36m (0.3ms)[0m [1mrollback transaction[0m
|
1120
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1121
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
1122
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1123
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
1124
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1125
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
1126
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1127
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
1128
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1129
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
1130
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1131
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
1132
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1133
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
1134
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1135
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
1136
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1137
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
1138
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1139
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
1140
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1141
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
1142
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1143
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
1144
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1145
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
1146
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1147
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
1148
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1149
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
1150
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1151
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
1152
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1153
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
1154
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1155
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
1156
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1157
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
1158
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1159
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
1160
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1161
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
1162
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1163
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
1164
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1165
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
1166
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1167
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
1168
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1169
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
1170
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1171
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
1172
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1173
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
1174
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1175
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
1176
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1177
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
1178
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1179
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
1180
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1181
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
1182
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1183
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
1184
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1185
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
1186
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1187
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
1188
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1189
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
1190
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
1191
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1192
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
1193
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1194
|
+
[1m[36mSQL (1.7ms)[0m [1mINSERT INTO "books" ("created_at", "id", "name", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", Wed, 23 Apr 2014 23:21:03 UTC +00:00], ["id", 1], ["name", "The Death Jungle from the Black Lagoon"], ["updated_at", Wed, 23 Apr 2014 23:21:03 UTC +00:00]]
|
1195
|
+
[1m[35m (0.9ms)[0m rollback transaction
|
1196
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1197
|
+
[1m[35m (0.0ms)[0m commit transaction
|
1198
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1199
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1200
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1201
|
+
[1m[35m (0.1ms)[0m commit transaction
|
1202
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1203
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "books" ("created_at", "id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 23 Apr 2014 23:21:03 UTC +00:00], ["id", 1], ["name", "Fake Diaries"], ["updated_at", Wed, 23 Apr 2014 23:21:03 UTC +00:00]]
|
1204
|
+
[1m[36m (0.3ms)[0m [1mrollback transaction[0m
|
1205
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1206
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
1207
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1208
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "books" ("created_at", "id", "name", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", Wed, 23 Apr 2014 23:21:03 UTC +00:00], ["id", 1], ["name", "Nuclear World"], ["updated_at", Wed, 23 Apr 2014 23:21:03 UTC +00:00]]
|
1209
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
1210
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1211
|
+
[1m[35m (0.0ms)[0m commit transaction
|
1212
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1213
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "books" ("created_at", "id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 23 Apr 2014 23:21:03 UTC +00:00], ["id", 1], ["name", "The Dangerous Gypsy from the Black Lagoon"], ["updated_at", Wed, 23 Apr 2014 23:21:03 UTC +00:00]]
|
1214
|
+
[1m[36m (0.3ms)[0m [1mrollback transaction[0m
|
1215
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1216
|
+
--------------------------------
|
1217
|
+
BooksControllerTest: test_create
|
1218
|
+
--------------------------------
|
1219
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1220
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 23 Apr 2014 23:21:03 UTC +00:00], ["name", "The Rain from Outer Space"], ["updated_at", Wed, 23 Apr 2014 23:21:03 UTC +00:00]]
|
1221
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1222
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1223
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Wed, 23 Apr 2014 23:21:03 UTC +00:00], ["name", "Hills 2: Electric Boogaloo"], ["updated_at", Wed, 23 Apr 2014 23:21:03 UTC +00:00]]
|
1224
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1225
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1226
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 23 Apr 2014 23:21:03 UTC +00:00], ["name", "Death Mutant"], ["updated_at", Wed, 23 Apr 2014 23:21:03 UTC +00:00]]
|
1227
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1228
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1229
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Wed, 23 Apr 2014 23:21:03 UTC +00:00], ["name", "Dr. Tentacle"], ["updated_at", Wed, 23 Apr 2014 23:21:03 UTC +00:00]]
|
1230
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1231
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1232
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 23 Apr 2014 23:21:03 UTC +00:00], ["name", "The Red Rose of Scotland"], ["updated_at", Wed, 23 Apr 2014 23:21:03 UTC +00:00]]
|
1233
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1234
|
+
[1m[35m (0.0ms)[0m SELECT COUNT(*) FROM "books"
|
1235
|
+
Processing by BooksController#create as HTML
|
1236
|
+
Parameters: {"book"=>{"name"=>"newly-created-book"}}
|
1237
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1238
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 23 Apr 2014 23:21:03 UTC +00:00], ["name", "newly-created-book"], ["updated_at", Wed, 23 Apr 2014 23:21:03 UTC +00:00]]
|
1239
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1240
|
+
Redirected to http://test.host/books
|
1241
|
+
Completed 302 Found in 2ms (ActiveRecord: 0.2ms)
|
1242
|
+
[1m[35m (0.0ms)[0m SELECT COUNT(*) FROM "books"
|
1243
|
+
[1m[36m (0.5ms)[0m [1mrollback transaction[0m
|
1244
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1245
|
+
-------------------------------
|
1246
|
+
BooksControllerTest: test_index
|
1247
|
+
-------------------------------
|
1248
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1249
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 23 Apr 2014 23:21:03 UTC +00:00], ["name", "The Electric Dreams from Mars"], ["updated_at", Wed, 23 Apr 2014 23:21:03 UTC +00:00]]
|
1250
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1251
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1252
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Wed, 23 Apr 2014 23:21:03 UTC +00:00], ["name", "Champagne Tears"], ["updated_at", Wed, 23 Apr 2014 23:21:03 UTC +00:00]]
|
1253
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1254
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1255
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 23 Apr 2014 23:21:03 UTC +00:00], ["name", "2755 A.D."], ["updated_at", Wed, 23 Apr 2014 23:21:03 UTC +00:00]]
|
1256
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1257
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1258
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Wed, 23 Apr 2014 23:21:03 UTC +00:00], ["name", "Red Man"], ["updated_at", Wed, 23 Apr 2014 23:21:03 UTC +00:00]]
|
1259
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1260
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1261
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 23 Apr 2014 23:21:03 UTC +00:00], ["name", "Je Vous Presente, Mazie"], ["updated_at", Wed, 23 Apr 2014 23:21:03 UTC +00:00]]
|
1262
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1263
|
+
Processing by BooksController#index as HTML
|
1264
|
+
Completed 200 OK in 9ms (Views: 8.9ms | ActiveRecord: 0.0ms)
|
1265
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "books"
|
1266
|
+
[1m[36m (0.5ms)[0m [1mrollback transaction[0m
|
1267
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1268
|
+
------------------------------
|
1269
|
+
BooksControllerTest: test_show
|
1270
|
+
------------------------------
|
1271
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1272
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 23 Apr 2014 23:21:03 UTC +00:00], ["name", "Dangerous Brains"], ["updated_at", Wed, 23 Apr 2014 23:21:03 UTC +00:00]]
|
1273
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1274
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1275
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Wed, 23 Apr 2014 23:21:03 UTC +00:00], ["name", "Christmas on Moore Mount"], ["updated_at", Wed, 23 Apr 2014 23:21:03 UTC +00:00]]
|
1276
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1277
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1278
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 23 Apr 2014 23:21:03 UTC +00:00], ["name", "Bloody Hills"], ["updated_at", Wed, 23 Apr 2014 23:21:03 UTC +00:00]]
|
1279
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1280
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1281
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Wed, 23 Apr 2014 23:21:03 UTC +00:00], ["name", "Ultra Brain"], ["updated_at", Wed, 23 Apr 2014 23:21:03 UTC +00:00]]
|
1282
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1283
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1284
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 23 Apr 2014 23:21:03 UTC +00:00], ["name", "Rise of the City"], ["updated_at", Wed, 23 Apr 2014 23:21:03 UTC +00:00]]
|
1285
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1286
|
+
Processing by BooksController#show as HTML
|
1287
|
+
Parameters: {"id"=>"1"}
|
1288
|
+
[1m[35mBook Load (0.1ms)[0m SELECT "books".* FROM "books" WHERE "books"."id" = ? LIMIT 1 [["id", "1"]]
|
1289
|
+
Completed 200 OK in 3ms (Views: 1.4ms | ActiveRecord: 0.1ms)
|
1290
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
1291
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1292
|
+
-----------------------------------------------------------------------
|
1293
|
+
FastlyHeadersTest: test_/books/:id_show_page_should_have_fastly_headers
|
1294
|
+
-----------------------------------------------------------------------
|
1295
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1296
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "books" ("created_at", "id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 23 Apr 2014 23:21:03 UTC +00:00], ["id", 1], ["name", "Codename: Mutant"], ["updated_at", Wed, 23 Apr 2014 23:21:03 UTC +00:00]]
|
1297
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1298
|
+
Started GET "/books/1" for 127.0.0.1 at 2014-04-23 19:21:03 -0400
|
1299
|
+
Processing by BooksController#show as HTML
|
1300
|
+
Parameters: {"id"=>"1"}
|
1301
|
+
[1m[35mBook Load (0.1ms)[0m SELECT "books".* FROM "books" WHERE "books"."id" = ? LIMIT 1 [["id", "1"]]
|
1302
|
+
Completed 200 OK in 2ms (Views: 0.8ms | ActiveRecord: 0.1ms)
|
1303
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
1304
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1305
|
+
--------------------------------------------------------------------
|
1306
|
+
FastlyHeadersTest: test_/books_index_page_should_have_fastly_headers
|
1307
|
+
--------------------------------------------------------------------
|
1308
|
+
Started GET "/books" for 127.0.0.1 at 2014-04-23 19:21:03 -0400
|
1309
|
+
Processing by BooksController#index as HTML
|
1310
|
+
Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
1311
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
1312
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1313
|
+
----------------------------------------------------------------------------------------------
|
1314
|
+
FastlyHeadersTest: test_DELETE_/books/:id_should_not_have_fastly_headers/_fastly_header_values
|
1315
|
+
----------------------------------------------------------------------------------------------
|
1316
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1317
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "books" ("created_at", "id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 23 Apr 2014 23:21:03 UTC +00:00], ["id", 1], ["name", "The Witch from Across the Ocean"], ["updated_at", Wed, 23 Apr 2014 23:21:03 UTC +00:00]]
|
1318
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1319
|
+
Started DELETE "/books/1" for 127.0.0.1 at 2014-04-23 19:21:03 -0400
|
1320
|
+
Processing by BooksController#destroy as HTML
|
1321
|
+
Parameters: {"id"=>"1"}
|
1322
|
+
[1m[35mBook Load (0.1ms)[0m SELECT "books".* FROM "books" WHERE "books"."id" = ? LIMIT 1 [["id", "1"]]
|
1323
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1324
|
+
[1m[35mSQL (0.3ms)[0m DELETE FROM "books" WHERE "books"."id" = ? [["id", 1]]
|
1325
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1326
|
+
Redirected to http://www.example.com/books
|
1327
|
+
Completed 302 Found in 2ms (ActiveRecord: 0.4ms)
|
1328
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "books" WHERE "books"."id" = 1
|
1329
|
+
[1m[36m (0.3ms)[0m [1mrollback transaction[0m
|
1330
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1331
|
+
----------------------------------------------------------------------------------------
|
1332
|
+
FastlyHeadersTest: test_POST_/books_should_not_have_fastly_headers/_fastly_header_values
|
1333
|
+
----------------------------------------------------------------------------------------
|
1334
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "books"[0m
|
1335
|
+
Started POST "/books" for 127.0.0.1 at 2014-04-23 19:21:03 -0400
|
1336
|
+
Processing by BooksController#create as HTML
|
1337
|
+
Parameters: {"book"=>{"name"=>"some new book"}}
|
1338
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1339
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Wed, 23 Apr 2014 23:21:03 UTC +00:00], ["name", "some new book"], ["updated_at", Wed, 23 Apr 2014 23:21:03 UTC +00:00]]
|
1340
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1341
|
+
Redirected to http://www.example.com/books
|
1342
|
+
Completed 302 Found in 2ms (ActiveRecord: 0.4ms)
|
1343
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "books"[0m
|
1344
|
+
[1m[35m (0.3ms)[0m rollback transaction
|
1345
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1346
|
+
-------------------------------------------------------------------------------------------
|
1347
|
+
FastlyHeadersTest: test_PUT_/books/:id_should_not_have_fastly_headers/_fastly_header_values
|
1348
|
+
-------------------------------------------------------------------------------------------
|
1349
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1350
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "books" ("created_at", "id", "name", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", Wed, 23 Apr 2014 23:21:03 UTC +00:00], ["id", 1], ["name", "some new book"], ["updated_at", Wed, 23 Apr 2014 23:21:03 UTC +00:00]]
|
1351
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1352
|
+
Started PUT "/books/1" for 127.0.0.1 at 2014-04-23 19:21:03 -0400
|
1353
|
+
Processing by BooksController#update as HTML
|
1354
|
+
Parameters: {"id"=>"1", "book"=>{"name"=>"changed book"}}
|
1355
|
+
[1m[36mBook Load (0.0ms)[0m [1mSELECT "books".* FROM "books" WHERE "books"."id" = ? LIMIT 1[0m [["id", "1"]]
|
1356
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1357
|
+
[1m[36mSQL (0.3ms)[0m [1mUPDATE "books" SET "name" = ?, "updated_at" = ? WHERE "books"."id" = 1[0m [["name", "changed book"], ["updated_at", Wed, 23 Apr 2014 23:21:03 UTC +00:00]]
|
1358
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1359
|
+
Redirected to http://www.example.com/books/1
|
1360
|
+
Completed 302 Found in 3ms (ActiveRecord: 0.4ms)
|
1361
|
+
[1m[36mBook Load (0.0ms)[0m [1mSELECT "books".* FROM "books" WHERE "books"."id" = ? LIMIT 1[0m [["id", 1]]
|
1362
|
+
[1m[35m (0.3ms)[0m rollback transaction
|
1363
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1364
|
+
[1m[35m (0.0ms)[0m commit transaction
|
1365
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1366
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1367
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1368
|
+
-------------------------------------------------------------------------------------------------
|
1369
|
+
FastlyRails::CacheControlHeadersTest: test_sets_cache_control_headers_on_actioncontroller_request
|
1370
|
+
-------------------------------------------------------------------------------------------------
|
1371
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1372
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1373
|
+
[1m[35m (0.0ms)[0m commit transaction
|
1374
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1375
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1376
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1377
|
+
[1m[35m (0.0ms)[0m commit transaction
|
1378
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1379
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1380
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1381
|
+
[1m[35m (0.0ms)[0m commit transaction
|
1382
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1383
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1384
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1385
|
+
[1m[35m (0.0ms)[0m commit transaction
|
1386
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1387
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1388
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1389
|
+
[1m[35m (0.0ms)[0m commit transaction
|
1390
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1391
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1392
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1393
|
+
[1m[35m (0.0ms)[0m commit transaction
|
1394
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1395
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1396
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1397
|
+
[1m[35m (0.0ms)[0m commit transaction
|
1398
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1399
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1400
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1401
|
+
[1m[35m (0.0ms)[0m commit transaction
|
1402
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1403
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1404
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1405
|
+
[1m[35m (0.0ms)[0m commit transaction
|
1406
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1407
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1408
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1409
|
+
[1m[35m (0.0ms)[0m commit transaction
|
1410
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1411
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1412
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1413
|
+
[1m[35m (0.0ms)[0m commit transaction
|
1414
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1415
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1416
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1417
|
+
[1m[35m (0.0ms)[0m commit transaction
|
1418
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1419
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1420
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1421
|
+
[1m[35m (0.0ms)[0m commit transaction
|
1422
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1423
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1424
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1425
|
+
[1m[35m (0.0ms)[0m commit transaction
|
1426
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1427
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1428
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1429
|
+
[1m[35m (0.0ms)[0m commit transaction
|
1430
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1431
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1432
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1433
|
+
[1m[35m (0.0ms)[0m commit transaction
|
1434
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1435
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1436
|
+
Connecting to database specified by database.yml
|
1437
|
+
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
1438
|
+
Migrating to CreateBooks (20140407202136)
|
1439
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1440
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
1441
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1442
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1443
|
+
[1m[35mSQL (2.7ms)[0m INSERT INTO "books" ("created_at", "id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Thu, 24 Apr 2014 06:41:33 UTC +00:00], ["id", 1], ["name", "Flying Cousins"], ["updated_at", Thu, 24 Apr 2014 06:41:33 UTC +00:00]]
|
1444
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1445
|
+
[1m[35m (0.3ms)[0m rollback transaction
|
1446
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1447
|
+
[1m[35m (0.0ms)[0m commit transaction
|
1448
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1449
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1450
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "books" ("created_at", "id", "name", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", Thu, 24 Apr 2014 06:41:33 UTC +00:00], ["id", 1], ["name", "Time of the Pickpocket"], ["updated_at", Thu, 24 Apr 2014 06:41:33 UTC +00:00]]
|
1451
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1452
|
+
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|
1453
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1454
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
1455
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1456
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1457
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "books" ("created_at", "id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Thu, 24 Apr 2014 06:41:33 UTC +00:00], ["id", 1], ["name", "The Dreams from Across the Ocean"], ["updated_at", Thu, 24 Apr 2014 06:41:33 UTC +00:00]]
|
1458
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1459
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
1460
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1461
|
+
[1m[35m (0.0ms)[0m commit transaction
|
1462
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1463
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1464
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "books" ("created_at", "id", "name", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", Thu, 24 Apr 2014 06:41:33 UTC +00:00], ["id", 1], ["name", "Blonde Jungle"], ["updated_at", Thu, 24 Apr 2014 06:41:33 UTC +00:00]]
|
1465
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1466
|
+
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|
1467
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1468
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
1469
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1470
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
1471
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1472
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1473
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 24 Apr 2014 06:41:33 UTC +00:00], ["name", "Invasion of the Identity"], ["updated_at", Thu, 24 Apr 2014 06:41:33 UTC +00:00]]
|
1474
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1475
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1476
|
+
[1m[36mSQL (0.8ms)[0m [1mINSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Thu, 24 Apr 2014 06:41:33 UTC +00:00], ["name", "The Dreams from Mars"], ["updated_at", Thu, 24 Apr 2014 06:41:33 UTC +00:00]]
|
1477
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1478
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1479
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 24 Apr 2014 06:41:33 UTC +00:00], ["name", "Blonde Gypsy"], ["updated_at", Thu, 24 Apr 2014 06:41:33 UTC +00:00]]
|
1480
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1481
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1482
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Thu, 24 Apr 2014 06:41:33 UTC +00:00], ["name", "Je Vous Presente, Mya"], ["updated_at", Thu, 24 Apr 2014 06:41:33 UTC +00:00]]
|
1483
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1484
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1485
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 24 Apr 2014 06:41:33 UTC +00:00], ["name", "Legend of Gypsy"], ["updated_at", Thu, 24 Apr 2014 06:41:33 UTC +00:00]]
|
1486
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1487
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "books"
|
1488
|
+
Processing by BooksController#create as HTML
|
1489
|
+
Parameters: {"book"=>{"name"=>"newly-created-book"}}
|
1490
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1491
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 24 Apr 2014 06:41:33 UTC +00:00], ["name", "newly-created-book"], ["updated_at", Thu, 24 Apr 2014 06:41:33 UTC +00:00]]
|
1492
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1493
|
+
Redirected to http://test.host/books
|
1494
|
+
Completed 302 Found in 1.9ms (ActiveRecord: 0.2ms)
|
1495
|
+
[1m[35m (0.0ms)[0m SELECT COUNT(*) FROM "books"
|
1496
|
+
[1m[36m (0.3ms)[0m [1mrollback transaction[0m
|
1497
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1498
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1499
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 24 Apr 2014 06:41:33 UTC +00:00], ["name", "Nuclear Tears"], ["updated_at", Thu, 24 Apr 2014 06:41:33 UTC +00:00]]
|
1500
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1501
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1502
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Thu, 24 Apr 2014 06:41:33 UTC +00:00], ["name", "Hungry Jungle"], ["updated_at", Thu, 24 Apr 2014 06:41:33 UTC +00:00]]
|
1503
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1504
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1505
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 24 Apr 2014 06:41:33 UTC +00:00], ["name", "Death Demon"], ["updated_at", Thu, 24 Apr 2014 06:41:33 UTC +00:00]]
|
1506
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1507
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1508
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Thu, 24 Apr 2014 06:41:33 UTC +00:00], ["name", "Flying Blow"], ["updated_at", Thu, 24 Apr 2014 06:41:33 UTC +00:00]]
|
1509
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1510
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1511
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 24 Apr 2014 06:41:33 UTC +00:00], ["name", "Curse of the Action Cat"], ["updated_at", Thu, 24 Apr 2014 06:41:33 UTC +00:00]]
|
1512
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1513
|
+
Processing by BooksController#index as HTML
|
1514
|
+
[1m[35mBook Load (0.1ms)[0m SELECT "books".* FROM "books"
|
1515
|
+
Completed 200 OK in 7.1ms (Views: 6.1ms | ActiveRecord: 0.1ms)
|
1516
|
+
[1m[36m (0.3ms)[0m [1mrollback transaction[0m
|
1517
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1518
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1519
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 24 Apr 2014 06:41:33 UTC +00:00], ["name", "Return of the Ninjas"], ["updated_at", Thu, 24 Apr 2014 06:41:33 UTC +00:00]]
|
1520
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1521
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1522
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Thu, 24 Apr 2014 06:41:33 UTC +00:00], ["name", "Christmas on Aufderhar Lakes"], ["updated_at", Thu, 24 Apr 2014 06:41:33 UTC +00:00]]
|
1523
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1524
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1525
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 24 Apr 2014 06:41:33 UTC +00:00], ["name", "The Men from 2886 Leagues"], ["updated_at", Thu, 24 Apr 2014 06:41:33 UTC +00:00]]
|
1526
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1527
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1528
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Thu, 24 Apr 2014 06:41:33 UTC +00:00], ["name", "Ultra Wizard"], ["updated_at", Thu, 24 Apr 2014 06:41:33 UTC +00:00]]
|
1529
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1530
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1531
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 24 Apr 2014 06:41:33 UTC +00:00], ["name", "Invasion of the Blue Dreams"], ["updated_at", Thu, 24 Apr 2014 06:41:33 UTC +00:00]]
|
1532
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1533
|
+
Processing by BooksController#show as HTML
|
1534
|
+
Parameters: {"id"=>"1"}
|
1535
|
+
[1m[35mBook Load (0.1ms)[0m SELECT "books".* FROM "books" WHERE "books"."id" = ? LIMIT 1 [["id", "1"]]
|
1536
|
+
Completed 200 OK in 3.3ms (Views: 1.7ms | ActiveRecord: 0.1ms)
|
1537
|
+
[1m[36m (0.3ms)[0m [1mrollback transaction[0m
|
1538
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1539
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1540
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "books" ("created_at", "id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Thu, 24 Apr 2014 06:41:33 UTC +00:00], ["id", 1], ["name", "Forbidden City"], ["updated_at", Thu, 24 Apr 2014 06:41:33 UTC +00:00]]
|
1541
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1542
|
+
Started GET "/books/1" for 127.0.0.1 at 2014-04-24 02:41:33 -0400
|
1543
|
+
Processing by BooksController#show as HTML
|
1544
|
+
Parameters: {"id"=>"1"}
|
1545
|
+
[1m[35mBook Load (0.0ms)[0m SELECT "books".* FROM "books" WHERE "books"."id" = ? LIMIT 1 [["id", "1"]]
|
1546
|
+
Completed 200 OK in 1.4ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
1547
|
+
[1m[36m (0.3ms)[0m [1mrollback transaction[0m
|
1548
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1549
|
+
Started GET "/books" for 127.0.0.1 at 2014-04-24 02:41:33 -0400
|
1550
|
+
Processing by BooksController#index as HTML
|
1551
|
+
[1m[36mBook Load (0.1ms)[0m [1mSELECT "books".* FROM "books" [0m
|
1552
|
+
Completed 200 OK in 1.2ms (Views: 0.7ms | ActiveRecord: 0.1ms)
|
1553
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1554
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1555
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1556
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "books" ("created_at", "id", "name", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", Thu, 24 Apr 2014 06:41:33 UTC +00:00], ["id", 1], ["name", "Death Dreams"], ["updated_at", Thu, 24 Apr 2014 06:41:33 UTC +00:00]]
|
1557
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1558
|
+
Started DELETE "/books/1" for 127.0.0.1 at 2014-04-24 02:41:33 -0400
|
1559
|
+
Processing by BooksController#destroy as HTML
|
1560
|
+
Parameters: {"id"=>"1"}
|
1561
|
+
[1m[36mBook Load (0.1ms)[0m [1mSELECT "books".* FROM "books" WHERE "books"."id" = ? LIMIT 1[0m [["id", "1"]]
|
1562
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1563
|
+
[1m[36mSQL (0.3ms)[0m [1mDELETE FROM "books" WHERE "books"."id" = ?[0m [["id", 1]]
|
1564
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1565
|
+
Redirected to http://www.example.com/books
|
1566
|
+
Completed 302 Found in 2.0ms (ActiveRecord: 0.4ms)
|
1567
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "books" WHERE "books"."id" = 1[0m
|
1568
|
+
[1m[35m (0.3ms)[0m rollback transaction
|
1569
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1570
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "books"
|
1571
|
+
Started POST "/books" for 127.0.0.1 at 2014-04-24 02:41:34 -0400
|
1572
|
+
Processing by BooksController#create as HTML
|
1573
|
+
Parameters: {"book"=>{"name"=>"some new book"}}
|
1574
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1575
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 24 Apr 2014 06:41:34 UTC +00:00], ["name", "some new book"], ["updated_at", Thu, 24 Apr 2014 06:41:34 UTC +00:00]]
|
1576
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1577
|
+
Redirected to http://www.example.com/books
|
1578
|
+
Completed 302 Found in 1.6ms (ActiveRecord: 0.4ms)
|
1579
|
+
[1m[35m (0.0ms)[0m SELECT COUNT(*) FROM "books"
|
1580
|
+
[1m[36m (0.3ms)[0m [1mrollback transaction[0m
|
1581
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1582
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1583
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "books" ("created_at", "id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Thu, 24 Apr 2014 06:41:34 UTC +00:00], ["id", 1], ["name", "some new book"], ["updated_at", Thu, 24 Apr 2014 06:41:34 UTC +00:00]]
|
1584
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1585
|
+
Started PUT "/books/1" for 127.0.0.1 at 2014-04-24 02:41:34 -0400
|
1586
|
+
Processing by BooksController#update as HTML
|
1587
|
+
Parameters: {"id"=>"1", "book"=>{"name"=>"changed book"}}
|
1588
|
+
[1m[35mBook Load (0.0ms)[0m SELECT "books".* FROM "books" WHERE "books"."id" = ? LIMIT 1 [["id", "1"]]
|
1589
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1590
|
+
[1m[35m (0.3ms)[0m UPDATE "books" SET "name" = 'changed book', "updated_at" = '2014-04-24 06:41:34.012970' WHERE "books"."id" = 1
|
1591
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1592
|
+
Redirected to http://www.example.com/books/1
|
1593
|
+
Completed 302 Found in 2.7ms (ActiveRecord: 0.4ms)
|
1594
|
+
[1m[35mBook Load (0.0ms)[0m SELECT "books".* FROM "books" WHERE "books"."id" = ? LIMIT 1 [["id", 1]]
|
1595
|
+
[1m[36m (0.3ms)[0m [1mrollback transaction[0m
|
1596
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1597
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
1598
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1599
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
1600
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1601
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
1602
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1603
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
1604
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1605
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
1606
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1607
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
1608
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1609
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
1610
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1611
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
1612
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1613
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
1614
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1615
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
1616
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1617
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
1618
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1619
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
1620
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1621
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
1622
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1623
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
1624
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1625
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
1626
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1627
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
1628
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1629
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
1630
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1631
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
1632
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1633
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
1634
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1635
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
1636
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1637
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
1638
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1639
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
1640
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1641
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
1642
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1643
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
1644
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1645
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
1646
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1647
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
1648
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1649
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
1650
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1651
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
1652
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1653
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
1654
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1655
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
1656
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1657
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
1658
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1659
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
1660
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1661
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
1662
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1663
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
1664
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1665
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
1666
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
1667
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1668
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
1669
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1670
|
+
[1m[36mSQL (2.1ms)[0m [1mINSERT INTO "books" ("created_at", "id", "name", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", Thu, 24 Apr 2014 06:41:35 UTC +00:00], ["id", 1], ["name", "Beast 2: Electric Boogaloo"], ["updated_at", Thu, 24 Apr 2014 06:41:35 UTC +00:00]]
|
1671
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
1672
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1673
|
+
[1m[35m (0.0ms)[0m commit transaction
|
1674
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1675
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "books" ("created_at", "id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Thu, 24 Apr 2014 06:41:35 UTC +00:00], ["id", 1], ["name", "The Gypsy Without a Fly"], ["updated_at", Thu, 24 Apr 2014 06:41:35 UTC +00:00]]
|
1676
|
+
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|
1677
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1678
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
1679
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1680
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "books" ("created_at", "id", "name", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", Thu, 24 Apr 2014 06:41:35 UTC +00:00], ["id", 1], ["name", "Flying Mutant"], ["updated_at", Thu, 24 Apr 2014 06:41:35 UTC +00:00]]
|
1681
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
1682
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1683
|
+
[1m[35m (0.0ms)[0m commit transaction
|
1684
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1685
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1686
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1687
|
+
[1m[35m (0.0ms)[0m commit transaction
|
1688
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1689
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "books" ("created_at", "id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Thu, 24 Apr 2014 06:41:35 UTC +00:00], ["id", 1], ["name", "I Married a Brain"], ["updated_at", Thu, 24 Apr 2014 06:41:35 UTC +00:00]]
|
1690
|
+
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|
1691
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1692
|
+
--------------------------------
|
1693
|
+
BooksControllerTest: test_create
|
1694
|
+
--------------------------------
|
1695
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1696
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 24 Apr 2014 06:41:36 UTC +00:00], ["name", "Green Jungle"], ["updated_at", Thu, 24 Apr 2014 06:41:36 UTC +00:00]]
|
1697
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1698
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1699
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Thu, 24 Apr 2014 06:41:36 UTC +00:00], ["name", "Codename: Ninja"], ["updated_at", Thu, 24 Apr 2014 06:41:36 UTC +00:00]]
|
1700
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1701
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1702
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 24 Apr 2014 06:41:36 UTC +00:00], ["name", "The Blow"], ["updated_at", Thu, 24 Apr 2014 06:41:36 UTC +00:00]]
|
1703
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1704
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1705
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Thu, 24 Apr 2014 06:41:36 UTC +00:00], ["name", "Danger Identity"], ["updated_at", Thu, 24 Apr 2014 06:41:36 UTC +00:00]]
|
1706
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1707
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1708
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 24 Apr 2014 06:41:36 UTC +00:00], ["name", "Case of the Missing Thief"], ["updated_at", Thu, 24 Apr 2014 06:41:36 UTC +00:00]]
|
1709
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1710
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "books"
|
1711
|
+
Processing by BooksController#create as HTML
|
1712
|
+
Parameters: {"book"=>{"name"=>"newly-created-book"}}
|
1713
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1714
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 24 Apr 2014 06:41:36 UTC +00:00], ["name", "newly-created-book"], ["updated_at", Thu, 24 Apr 2014 06:41:36 UTC +00:00]]
|
1715
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1716
|
+
Redirected to http://test.host/books
|
1717
|
+
Completed 302 Found in 2ms (ActiveRecord: 0.2ms)
|
1718
|
+
[1m[35m (0.0ms)[0m SELECT COUNT(*) FROM "books"
|
1719
|
+
[1m[36m (0.3ms)[0m [1mrollback transaction[0m
|
1720
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1721
|
+
-------------------------------
|
1722
|
+
BooksControllerTest: test_index
|
1723
|
+
-------------------------------
|
1724
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1725
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 24 Apr 2014 06:41:36 UTC +00:00], ["name", "Dr. Diaries"], ["updated_at", Thu, 24 Apr 2014 06:41:36 UTC +00:00]]
|
1726
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1727
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1728
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Thu, 24 Apr 2014 06:41:36 UTC +00:00], ["name", "The Danger Diaries from Across the Ocean"], ["updated_at", Thu, 24 Apr 2014 06:41:36 UTC +00:00]]
|
1729
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1730
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1731
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 24 Apr 2014 06:41:36 UTC +00:00], ["name", "I Married a Electric Ninjas"], ["updated_at", Thu, 24 Apr 2014 06:41:36 UTC +00:00]]
|
1732
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1733
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1734
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Thu, 24 Apr 2014 06:41:36 UTC +00:00], ["name", "The Dreams Who Fell to Earth"], ["updated_at", Thu, 24 Apr 2014 06:41:36 UTC +00:00]]
|
1735
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1736
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1737
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 24 Apr 2014 06:41:36 UTC +00:00], ["name", "Dr. Beast"], ["updated_at", Thu, 24 Apr 2014 06:41:36 UTC +00:00]]
|
1738
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1739
|
+
Processing by BooksController#index as HTML
|
1740
|
+
Completed 200 OK in 10ms (Views: 9.9ms | ActiveRecord: 0.0ms)
|
1741
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "books"
|
1742
|
+
[1m[36m (0.3ms)[0m [1mrollback transaction[0m
|
1743
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1744
|
+
------------------------------
|
1745
|
+
BooksControllerTest: test_show
|
1746
|
+
------------------------------
|
1747
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1748
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 24 Apr 2014 06:41:36 UTC +00:00], ["name", "Curse of the Tokyo Gypsy"], ["updated_at", Thu, 24 Apr 2014 06:41:36 UTC +00:00]]
|
1749
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1750
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1751
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Thu, 24 Apr 2014 06:41:36 UTC +00:00], ["name", "The Flying Mutant Who Fell to Earth"], ["updated_at", Thu, 24 Apr 2014 06:41:36 UTC +00:00]]
|
1752
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1753
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1754
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 24 Apr 2014 06:41:36 UTC +00:00], ["name", "Je Vous Presente, Ben"], ["updated_at", Thu, 24 Apr 2014 06:41:36 UTC +00:00]]
|
1755
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1756
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1757
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Thu, 24 Apr 2014 06:41:36 UTC +00:00], ["name", "The Beast Without a Beast"], ["updated_at", Thu, 24 Apr 2014 06:41:36 UTC +00:00]]
|
1758
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1759
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1760
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 24 Apr 2014 06:41:36 UTC +00:00], ["name", "Champagne Jungle"], ["updated_at", Thu, 24 Apr 2014 06:41:36 UTC +00:00]]
|
1761
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1762
|
+
Processing by BooksController#show as HTML
|
1763
|
+
Parameters: {"id"=>"1"}
|
1764
|
+
[1m[35mBook Load (0.1ms)[0m SELECT "books".* FROM "books" WHERE "books"."id" = ? LIMIT 1 [["id", "1"]]
|
1765
|
+
Completed 200 OK in 3ms (Views: 1.2ms | ActiveRecord: 0.1ms)
|
1766
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
1767
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1768
|
+
-----------------------------------------------------------------------
|
1769
|
+
FastlyHeadersTest: test_/books/:id_show_page_should_have_fastly_headers
|
1770
|
+
-----------------------------------------------------------------------
|
1771
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1772
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "books" ("created_at", "id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Thu, 24 Apr 2014 06:41:36 UTC +00:00], ["id", 1], ["name", "The Blow Who Fell to Earth"], ["updated_at", Thu, 24 Apr 2014 06:41:36 UTC +00:00]]
|
1773
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1774
|
+
Started GET "/books/1" for 127.0.0.1 at 2014-04-24 02:41:36 -0400
|
1775
|
+
Processing by BooksController#show as HTML
|
1776
|
+
Parameters: {"id"=>"1"}
|
1777
|
+
[1m[35mBook Load (0.1ms)[0m SELECT "books".* FROM "books" WHERE "books"."id" = ? LIMIT 1 [["id", "1"]]
|
1778
|
+
Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.1ms)
|
1779
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
1780
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1781
|
+
--------------------------------------------------------------------
|
1782
|
+
FastlyHeadersTest: test_/books_index_page_should_have_fastly_headers
|
1783
|
+
--------------------------------------------------------------------
|
1784
|
+
Started GET "/books" for 127.0.0.1 at 2014-04-24 02:41:36 -0400
|
1785
|
+
Processing by BooksController#index as HTML
|
1786
|
+
Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
|
1787
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
1788
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1789
|
+
----------------------------------------------------------------------------------------------
|
1790
|
+
FastlyHeadersTest: test_DELETE_/books/:id_should_not_have_fastly_headers/_fastly_header_values
|
1791
|
+
----------------------------------------------------------------------------------------------
|
1792
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1793
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "books" ("created_at", "id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Thu, 24 Apr 2014 06:41:36 UTC +00:00], ["id", 1], ["name", "Blue Clash"], ["updated_at", Thu, 24 Apr 2014 06:41:36 UTC +00:00]]
|
1794
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1795
|
+
Started DELETE "/books/1" for 127.0.0.1 at 2014-04-24 02:41:36 -0400
|
1796
|
+
Processing by BooksController#destroy as HTML
|
1797
|
+
Parameters: {"id"=>"1"}
|
1798
|
+
[1m[35mBook Load (0.0ms)[0m SELECT "books".* FROM "books" WHERE "books"."id" = ? LIMIT 1 [["id", "1"]]
|
1799
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1800
|
+
[1m[35mSQL (0.3ms)[0m DELETE FROM "books" WHERE "books"."id" = ? [["id", 1]]
|
1801
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1802
|
+
Redirected to http://www.example.com/books
|
1803
|
+
Completed 302 Found in 2ms (ActiveRecord: 0.4ms)
|
1804
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "books" WHERE "books"."id" = 1
|
1805
|
+
[1m[36m (0.3ms)[0m [1mrollback transaction[0m
|
1806
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1807
|
+
----------------------------------------------------------------------------------------
|
1808
|
+
FastlyHeadersTest: test_POST_/books_should_not_have_fastly_headers/_fastly_header_values
|
1809
|
+
----------------------------------------------------------------------------------------
|
1810
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "books"[0m
|
1811
|
+
Started POST "/books" for 127.0.0.1 at 2014-04-24 02:41:36 -0400
|
1812
|
+
Processing by BooksController#create as HTML
|
1813
|
+
Parameters: {"book"=>{"name"=>"some new book"}}
|
1814
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1815
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Thu, 24 Apr 2014 06:41:36 UTC +00:00], ["name", "some new book"], ["updated_at", Thu, 24 Apr 2014 06:41:36 UTC +00:00]]
|
1816
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1817
|
+
Redirected to http://www.example.com/books
|
1818
|
+
Completed 302 Found in 1ms (ActiveRecord: 0.3ms)
|
1819
|
+
[1m[36m (0.0ms)[0m [1mSELECT COUNT(*) FROM "books"[0m
|
1820
|
+
[1m[35m (0.3ms)[0m rollback transaction
|
1821
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1822
|
+
-------------------------------------------------------------------------------------------
|
1823
|
+
FastlyHeadersTest: test_PUT_/books/:id_should_not_have_fastly_headers/_fastly_header_values
|
1824
|
+
-------------------------------------------------------------------------------------------
|
1825
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1826
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "books" ("created_at", "id", "name", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", Thu, 24 Apr 2014 06:41:36 UTC +00:00], ["id", 1], ["name", "some new book"], ["updated_at", Thu, 24 Apr 2014 06:41:36 UTC +00:00]]
|
1827
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1828
|
+
Started PUT "/books/1" for 127.0.0.1 at 2014-04-24 02:41:36 -0400
|
1829
|
+
Processing by BooksController#update as HTML
|
1830
|
+
Parameters: {"id"=>"1", "book"=>{"name"=>"changed book"}}
|
1831
|
+
[1m[36mBook Load (0.0ms)[0m [1mSELECT "books".* FROM "books" WHERE "books"."id" = ? LIMIT 1[0m [["id", "1"]]
|
1832
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1833
|
+
[1m[36mSQL (0.3ms)[0m [1mUPDATE "books" SET "name" = ?, "updated_at" = ? WHERE "books"."id" = 1[0m [["name", "changed book"], ["updated_at", Thu, 24 Apr 2014 06:41:36 UTC +00:00]]
|
1834
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1835
|
+
Redirected to http://www.example.com/books/1
|
1836
|
+
Completed 302 Found in 3ms (ActiveRecord: 0.5ms)
|
1837
|
+
[1m[36mBook Load (0.0ms)[0m [1mSELECT "books".* FROM "books" WHERE "books"."id" = ? LIMIT 1[0m [["id", 1]]
|
1838
|
+
[1m[35m (0.3ms)[0m rollback transaction
|
1839
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1840
|
+
[1m[35m (0.0ms)[0m commit transaction
|
1841
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1842
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1843
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1844
|
+
-------------------------------------------------------------------------------------------------
|
1845
|
+
FastlyRails::CacheControlHeadersTest: test_sets_cache_control_headers_on_actioncontroller_request
|
1846
|
+
-------------------------------------------------------------------------------------------------
|
1847
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1848
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1849
|
+
[1m[35m (0.0ms)[0m commit transaction
|
1850
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1851
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1852
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1853
|
+
[1m[35m (0.0ms)[0m commit transaction
|
1854
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1855
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1856
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1857
|
+
[1m[35m (0.0ms)[0m commit transaction
|
1858
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1859
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1860
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1861
|
+
[1m[35m (0.0ms)[0m commit transaction
|
1862
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1863
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1864
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1865
|
+
[1m[35m (0.0ms)[0m commit transaction
|
1866
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1867
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1868
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1869
|
+
[1m[35m (0.0ms)[0m commit transaction
|
1870
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1871
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1872
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1873
|
+
[1m[35m (0.0ms)[0m commit transaction
|
1874
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1875
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1876
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1877
|
+
[1m[35m (0.0ms)[0m commit transaction
|
1878
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1879
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1880
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1881
|
+
[1m[35m (0.0ms)[0m commit transaction
|
1882
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1883
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1884
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1885
|
+
[1m[35m (0.0ms)[0m commit transaction
|
1886
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1887
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1888
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1889
|
+
[1m[35m (0.0ms)[0m commit transaction
|
1890
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1891
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1892
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1893
|
+
[1m[35m (0.0ms)[0m commit transaction
|
1894
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1895
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1896
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1897
|
+
[1m[35m (0.0ms)[0m commit transaction
|
1898
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1899
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1900
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1901
|
+
[1m[35m (0.0ms)[0m commit transaction
|
1902
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1903
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1904
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1905
|
+
[1m[35m (0.0ms)[0m commit transaction
|
1906
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1907
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1908
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1909
|
+
[1m[35m (0.0ms)[0m commit transaction
|
1910
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1911
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1912
|
+
Connecting to database specified by database.yml
|
1913
|
+
[1m[36m (0.0ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
1914
|
+
Migrating to CreateBooks (20140407202136)
|
1915
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1916
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
1917
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1918
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1919
|
+
[1m[35mSQL (2.5ms)[0m INSERT INTO "books" ("created_at", "id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Thu, 24 Apr 2014 06:44:47 UTC +00:00], ["id", 1], ["name", "The Men from Across the Ocean"], ["updated_at", Thu, 24 Apr 2014 06:44:47 UTC +00:00]]
|
1920
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1921
|
+
[1m[35m (0.8ms)[0m rollback transaction
|
1922
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1923
|
+
[1m[35m (0.0ms)[0m commit transaction
|
1924
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1925
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1926
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1927
|
+
[1m[35m (0.0ms)[0m commit transaction
|
1928
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1929
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1930
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "books" ("created_at", "id", "name", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", Thu, 24 Apr 2014 06:44:47 UTC +00:00], ["id", 1], ["name", "Hard Boiled City"], ["updated_at", Thu, 24 Apr 2014 06:44:47 UTC +00:00]]
|
1931
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1932
|
+
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|
1933
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1934
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
1935
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1936
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1937
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "books" ("created_at", "id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Thu, 24 Apr 2014 06:44:47 UTC +00:00], ["id", 1], ["name", "The Blue Fly Who Fell to Earth"], ["updated_at", Thu, 24 Apr 2014 06:44:47 UTC +00:00]]
|
1938
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1939
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
1940
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1941
|
+
[1m[35m (0.0ms)[0m commit transaction
|
1942
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1943
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1944
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "books" ("created_at", "id", "name", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", Thu, 24 Apr 2014 06:44:47 UTC +00:00], ["id", 1], ["name", "Dangerous Witch"], ["updated_at", Thu, 24 Apr 2014 06:44:47 UTC +00:00]]
|
1945
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1946
|
+
[1m[36m (0.3ms)[0m [1mrollback transaction[0m
|
1947
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1948
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1949
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 24 Apr 2014 06:44:47 UTC +00:00], ["name", "Killer Hills"], ["updated_at", Thu, 24 Apr 2014 06:44:47 UTC +00:00]]
|
1950
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1951
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1952
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Thu, 24 Apr 2014 06:44:47 UTC +00:00], ["name", "Je Vous Presente, Mya"], ["updated_at", Thu, 24 Apr 2014 06:44:47 UTC +00:00]]
|
1953
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1954
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1955
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 24 Apr 2014 06:44:47 UTC +00:00], ["name", "Hungry Pickpocket: The Shawna Friesen Story"], ["updated_at", Thu, 24 Apr 2014 06:44:47 UTC +00:00]]
|
1956
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1957
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1958
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Thu, 24 Apr 2014 06:44:47 UTC +00:00], ["name", "Action Tears"], ["updated_at", Thu, 24 Apr 2014 06:44:47 UTC +00:00]]
|
1959
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1960
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1961
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 24 Apr 2014 06:44:47 UTC +00:00], ["name", "Time of the Blonde Tentacle"], ["updated_at", Thu, 24 Apr 2014 06:44:47 UTC +00:00]]
|
1962
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1963
|
+
[1m[35m (0.0ms)[0m SELECT COUNT(*) FROM "books"
|
1964
|
+
Processing by BooksController#create as HTML
|
1965
|
+
Parameters: {"book"=>{"name"=>"newly-created-book"}}
|
1966
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1967
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 24 Apr 2014 06:44:47 UTC +00:00], ["name", "newly-created-book"], ["updated_at", Thu, 24 Apr 2014 06:44:47 UTC +00:00]]
|
1968
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1969
|
+
Redirected to http://test.host/books
|
1970
|
+
Completed 302 Found in 1.5ms (ActiveRecord: 0.2ms)
|
1971
|
+
[1m[35m (0.0ms)[0m SELECT COUNT(*) FROM "books"
|
1972
|
+
[1m[36m (0.3ms)[0m [1mrollback transaction[0m
|
1973
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1974
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1975
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 24 Apr 2014 06:44:47 UTC +00:00], ["name", "The Tears Who Fell to Earth"], ["updated_at", Thu, 24 Apr 2014 06:44:47 UTC +00:00]]
|
1976
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1977
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1978
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Thu, 24 Apr 2014 06:44:47 UTC +00:00], ["name", "When Efrain Met Helene"], ["updated_at", Thu, 24 Apr 2014 06:44:47 UTC +00:00]]
|
1979
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1980
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1981
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 24 Apr 2014 06:44:47 UTC +00:00], ["name", "The Dangerous Pickpocket from Hell"], ["updated_at", Thu, 24 Apr 2014 06:44:47 UTC +00:00]]
|
1982
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1983
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1984
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Thu, 24 Apr 2014 06:44:47 UTC +00:00], ["name", "Christmas on Caleb Views"], ["updated_at", Thu, 24 Apr 2014 06:44:47 UTC +00:00]]
|
1985
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1986
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1987
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 24 Apr 2014 06:44:47 UTC +00:00], ["name", "Journey of the Tokyo Wizard"], ["updated_at", Thu, 24 Apr 2014 06:44:47 UTC +00:00]]
|
1988
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1989
|
+
Processing by BooksController#index as HTML
|
1990
|
+
[1m[35mBook Load (0.1ms)[0m SELECT "books".* FROM "books"
|
1991
|
+
Completed 200 OK in 5.7ms (Views: 4.8ms | ActiveRecord: 0.1ms)
|
1992
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
1993
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1994
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1995
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 24 Apr 2014 06:44:47 UTC +00:00], ["name", "Hungry Woman"], ["updated_at", Thu, 24 Apr 2014 06:44:47 UTC +00:00]]
|
1996
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1997
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1998
|
+
[1m[36mSQL (4.0ms)[0m [1mINSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Thu, 24 Apr 2014 06:44:47 UTC +00:00], ["name", "Red Rain: The Lindsey Hartmann Story"], ["updated_at", Thu, 24 Apr 2014 06:44:47 UTC +00:00]]
|
1999
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
2000
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
2001
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 24 Apr 2014 06:44:47 UTC +00:00], ["name", "Christmas on Jewess Skyway"], ["updated_at", Thu, 24 Apr 2014 06:44:47 UTC +00:00]]
|
2002
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2003
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
2004
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Thu, 24 Apr 2014 06:44:47 UTC +00:00], ["name", "I Married a Men"], ["updated_at", Thu, 24 Apr 2014 06:44:47 UTC +00:00]]
|
2005
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
2006
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
2007
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 24 Apr 2014 06:44:47 UTC +00:00], ["name", "Je Vous Presente, Ludie"], ["updated_at", Thu, 24 Apr 2014 06:44:47 UTC +00:00]]
|
2008
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2009
|
+
Processing by BooksController#show as HTML
|
2010
|
+
Parameters: {"id"=>"1"}
|
2011
|
+
[1m[35mBook Load (0.1ms)[0m SELECT "books".* FROM "books" WHERE "books"."id" = ? LIMIT 1 [["id", "1"]]
|
2012
|
+
Completed 200 OK in 3.0ms (Views: 1.5ms | ActiveRecord: 0.1ms)
|
2013
|
+
[1m[36m (0.3ms)[0m [1mrollback transaction[0m
|
2014
|
+
[1m[35m (0.0ms)[0m begin transaction
|
2015
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
2016
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "books" ("created_at", "id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Thu, 24 Apr 2014 06:44:47 UTC +00:00], ["id", 1], ["name", "Electric Ninjas 2: Son of Electric Ninjas"], ["updated_at", Thu, 24 Apr 2014 06:44:47 UTC +00:00]]
|
2017
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2018
|
+
Started GET "/books/1" for 127.0.0.1 at 2014-04-24 02:44:47 -0400
|
2019
|
+
Processing by BooksController#show as HTML
|
2020
|
+
Parameters: {"id"=>"1"}
|
2021
|
+
[1m[35mBook Load (0.0ms)[0m SELECT "books".* FROM "books" WHERE "books"."id" = ? LIMIT 1 [["id", "1"]]
|
2022
|
+
Completed 200 OK in 1.7ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
2023
|
+
[1m[36m (0.3ms)[0m [1mrollback transaction[0m
|
2024
|
+
[1m[35m (0.0ms)[0m begin transaction
|
2025
|
+
Started GET "/books" for 127.0.0.1 at 2014-04-24 02:44:47 -0400
|
2026
|
+
Processing by BooksController#index as HTML
|
2027
|
+
[1m[36mBook Load (0.1ms)[0m [1mSELECT "books".* FROM "books" [0m
|
2028
|
+
Completed 200 OK in 1.3ms (Views: 0.8ms | ActiveRecord: 0.1ms)
|
2029
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
2030
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2031
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
2032
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "books" ("created_at", "id", "name", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", Thu, 24 Apr 2014 06:44:47 UTC +00:00], ["id", 1], ["name", "1795 A.D."], ["updated_at", Thu, 24 Apr 2014 06:44:47 UTC +00:00]]
|
2033
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
2034
|
+
Started DELETE "/books/1" for 127.0.0.1 at 2014-04-24 02:44:47 -0400
|
2035
|
+
Processing by BooksController#destroy as HTML
|
2036
|
+
Parameters: {"id"=>"1"}
|
2037
|
+
[1m[36mBook Load (0.0ms)[0m [1mSELECT "books".* FROM "books" WHERE "books"."id" = ? LIMIT 1[0m [["id", "1"]]
|
2038
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
2039
|
+
[1m[36mSQL (0.3ms)[0m [1mDELETE FROM "books" WHERE "books"."id" = ?[0m [["id", 1]]
|
2040
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
2041
|
+
Redirected to http://www.example.com/books
|
2042
|
+
Completed 302 Found in 1.8ms (ActiveRecord: 0.4ms)
|
2043
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "books" WHERE "books"."id" = 1[0m
|
2044
|
+
[1m[35m (0.4ms)[0m rollback transaction
|
2045
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2046
|
+
[1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "books"
|
2047
|
+
Started POST "/books" for 127.0.0.1 at 2014-04-24 02:44:47 -0400
|
2048
|
+
Processing by BooksController#create as HTML
|
2049
|
+
Parameters: {"book"=>{"name"=>"some new book"}}
|
2050
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2051
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 24 Apr 2014 06:44:47 UTC +00:00], ["name", "some new book"], ["updated_at", Thu, 24 Apr 2014 06:44:47 UTC +00:00]]
|
2052
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2053
|
+
Redirected to http://www.example.com/books
|
2054
|
+
Completed 302 Found in 1.8ms (ActiveRecord: 0.4ms)
|
2055
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "books"
|
2056
|
+
[1m[36m (0.3ms)[0m [1mrollback transaction[0m
|
2057
|
+
[1m[35m (0.0ms)[0m begin transaction
|
2058
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
2059
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "books" ("created_at", "id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Thu, 24 Apr 2014 06:44:47 UTC +00:00], ["id", 1], ["name", "some new book"], ["updated_at", Thu, 24 Apr 2014 06:44:47 UTC +00:00]]
|
2060
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2061
|
+
Started PUT "/books/1" for 127.0.0.1 at 2014-04-24 02:44:47 -0400
|
2062
|
+
Processing by BooksController#update as HTML
|
2063
|
+
Parameters: {"id"=>"1", "book"=>{"name"=>"changed book"}}
|
2064
|
+
[1m[35mBook Load (0.0ms)[0m SELECT "books".* FROM "books" WHERE "books"."id" = ? LIMIT 1 [["id", "1"]]
|
2065
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
2066
|
+
[1m[35m (0.3ms)[0m UPDATE "books" SET "name" = 'changed book', "updated_at" = '2014-04-24 06:44:47.467063' WHERE "books"."id" = 1
|
2067
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2068
|
+
Redirected to http://www.example.com/books/1
|
2069
|
+
Completed 302 Found in 3.1ms (ActiveRecord: 0.4ms)
|
2070
|
+
[1m[35mBook Load (0.0ms)[0m SELECT "books".* FROM "books" WHERE "books"."id" = ? LIMIT 1 [["id", 1]]
|
2071
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
2072
|
+
[1m[35m (0.0ms)[0m begin transaction
|
2073
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
2074
|
+
[1m[35m (0.0ms)[0m begin transaction
|
2075
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
2076
|
+
[1m[35m (0.0ms)[0m begin transaction
|
2077
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
2078
|
+
[1m[35m (0.0ms)[0m begin transaction
|
2079
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
2080
|
+
[1m[35m (0.0ms)[0m begin transaction
|
2081
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
2082
|
+
[1m[35m (0.0ms)[0m begin transaction
|
2083
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
2084
|
+
[1m[35m (0.0ms)[0m begin transaction
|
2085
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
2086
|
+
[1m[35m (0.0ms)[0m begin transaction
|
2087
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
2088
|
+
[1m[35m (0.0ms)[0m begin transaction
|
2089
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
2090
|
+
[1m[35m (0.0ms)[0m begin transaction
|
2091
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
2092
|
+
[1m[35m (0.0ms)[0m begin transaction
|
2093
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
2094
|
+
[1m[35m (0.0ms)[0m begin transaction
|
2095
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
2096
|
+
[1m[35m (0.0ms)[0m begin transaction
|
2097
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
2098
|
+
[1m[35m (0.0ms)[0m begin transaction
|
2099
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
2100
|
+
[1m[35m (0.0ms)[0m begin transaction
|
2101
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
2102
|
+
[1m[35m (0.0ms)[0m begin transaction
|
2103
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
2104
|
+
[1m[35m (0.0ms)[0m begin transaction
|
2105
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
2106
|
+
[1m[35m (0.0ms)[0m begin transaction
|
2107
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
2108
|
+
[1m[35m (0.0ms)[0m begin transaction
|
2109
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
2110
|
+
[1m[35m (0.0ms)[0m begin transaction
|
2111
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
2112
|
+
[1m[35m (0.0ms)[0m begin transaction
|
2113
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
2114
|
+
[1m[35m (0.0ms)[0m begin transaction
|
2115
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
2116
|
+
[1m[35m (0.0ms)[0m begin transaction
|
2117
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
2118
|
+
[1m[35m (0.0ms)[0m begin transaction
|
2119
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
2120
|
+
[1m[35m (0.0ms)[0m begin transaction
|
2121
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
2122
|
+
[1m[35m (0.0ms)[0m begin transaction
|
2123
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
2124
|
+
[1m[35m (0.0ms)[0m begin transaction
|
2125
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
2126
|
+
[1m[35m (0.0ms)[0m begin transaction
|
2127
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
2128
|
+
[1m[35m (0.0ms)[0m begin transaction
|
2129
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
2130
|
+
[1m[35m (0.0ms)[0m begin transaction
|
2131
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
2132
|
+
[1m[35m (0.0ms)[0m begin transaction
|
2133
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
2134
|
+
[1m[35m (0.0ms)[0m begin transaction
|
2135
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
2136
|
+
[1m[35m (0.0ms)[0m begin transaction
|
2137
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
2138
|
+
[1m[35m (0.0ms)[0m begin transaction
|
2139
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
2140
|
+
[1m[35m (0.0ms)[0m begin transaction
|
2141
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
2142
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
2143
|
+
[1m[35m (0.1ms)[0m begin transaction
|
2144
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
2145
|
+
[1m[35m (0.0ms)[0m begin transaction
|
2146
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
2147
|
+
[1m[35m (0.0ms)[0m begin transaction
|
2148
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
2149
|
+
[1m[35m (0.0ms)[0m begin transaction
|
2150
|
+
[1m[36mSQL (1.7ms)[0m [1mINSERT INTO "books" ("created_at", "id", "name", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", Thu, 24 Apr 2014 06:44:49 UTC +00:00], ["id", 1], ["name", "The Fly from Bushwick South"], ["updated_at", Thu, 24 Apr 2014 06:44:49 UTC +00:00]]
|
2151
|
+
[1m[35m (0.7ms)[0m rollback transaction
|
2152
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2153
|
+
[1m[35m (0.0ms)[0m commit transaction
|
2154
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2155
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "books" ("created_at", "id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Thu, 24 Apr 2014 06:44:49 UTC +00:00], ["id", 1], ["name", "Red Dreams"], ["updated_at", Thu, 24 Apr 2014 06:44:49 UTC +00:00]]
|
2156
|
+
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|
2157
|
+
[1m[35m (0.1ms)[0m begin transaction
|
2158
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
2159
|
+
[1m[35m (0.0ms)[0m begin transaction
|
2160
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "books" ("created_at", "id", "name", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", Thu, 24 Apr 2014 06:44:49 UTC +00:00], ["id", 1], ["name", "Season of the Tokyo Gypsy"], ["updated_at", Thu, 24 Apr 2014 06:44:49 UTC +00:00]]
|
2161
|
+
[1m[35m (0.3ms)[0m rollback transaction
|
2162
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2163
|
+
[1m[35m (0.0ms)[0m commit transaction
|
2164
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2165
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "books" ("created_at", "id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Thu, 24 Apr 2014 06:44:49 UTC +00:00], ["id", 1], ["name", "Je Vous Presente, Fiona"], ["updated_at", Thu, 24 Apr 2014 06:44:49 UTC +00:00]]
|
2166
|
+
[1m[36m (0.3ms)[0m [1mrollback transaction[0m
|
2167
|
+
[1m[35m (0.0ms)[0m begin transaction
|
2168
|
+
--------------------------------
|
2169
|
+
BooksControllerTest: test_create
|
2170
|
+
--------------------------------
|
2171
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2172
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 24 Apr 2014 06:44:49 UTC +00:00], ["name", "The Green Brains That Came to Dinner"], ["updated_at", Thu, 24 Apr 2014 06:44:49 UTC +00:00]]
|
2173
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2174
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
2175
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Thu, 24 Apr 2014 06:44:49 UTC +00:00], ["name", "The Ninjas Who Fell to Earth"], ["updated_at", Thu, 24 Apr 2014 06:44:49 UTC +00:00]]
|
2176
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
2177
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
2178
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 24 Apr 2014 06:44:49 UTC +00:00], ["name", "Legend of Woman"], ["updated_at", Thu, 24 Apr 2014 06:44:49 UTC +00:00]]
|
2179
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2180
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
2181
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Thu, 24 Apr 2014 06:44:49 UTC +00:00], ["name", "Invasion of the Electric Monster"], ["updated_at", Thu, 24 Apr 2014 06:44:49 UTC +00:00]]
|
2182
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
2183
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
2184
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 24 Apr 2014 06:44:49 UTC +00:00], ["name", "A Fistful of Hills"], ["updated_at", Thu, 24 Apr 2014 06:44:49 UTC +00:00]]
|
2185
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2186
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "books"
|
2187
|
+
Processing by BooksController#create as HTML
|
2188
|
+
Parameters: {"book"=>{"name"=>"newly-created-book"}}
|
2189
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
2190
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 24 Apr 2014 06:44:49 UTC +00:00], ["name", "newly-created-book"], ["updated_at", Thu, 24 Apr 2014 06:44:49 UTC +00:00]]
|
2191
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2192
|
+
Redirected to http://test.host/books
|
2193
|
+
Completed 302 Found in 2ms (ActiveRecord: 0.2ms)
|
2194
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "books"
|
2195
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
2196
|
+
[1m[35m (0.1ms)[0m begin transaction
|
2197
|
+
-------------------------------
|
2198
|
+
BooksControllerTest: test_index
|
2199
|
+
-------------------------------
|
2200
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
2201
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 24 Apr 2014 06:44:49 UTC +00:00], ["name", "The Women from 16865 Leagues"], ["updated_at", Thu, 24 Apr 2014 06:44:49 UTC +00:00]]
|
2202
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2203
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
2204
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Thu, 24 Apr 2014 06:44:49 UTC +00:00], ["name", "Return of the Man"], ["updated_at", Thu, 24 Apr 2014 06:44:49 UTC +00:00]]
|
2205
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
2206
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
2207
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 24 Apr 2014 06:44:49 UTC +00:00], ["name", "Planet of the Jungle"], ["updated_at", Thu, 24 Apr 2014 06:44:49 UTC +00:00]]
|
2208
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2209
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
2210
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Thu, 24 Apr 2014 06:44:49 UTC +00:00], ["name", "Action Ninja"], ["updated_at", Thu, 24 Apr 2014 06:44:49 UTC +00:00]]
|
2211
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
2212
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
2213
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 24 Apr 2014 06:44:49 UTC +00:00], ["name", "Time of the Dreams"], ["updated_at", Thu, 24 Apr 2014 06:44:49 UTC +00:00]]
|
2214
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2215
|
+
Processing by BooksController#index as HTML
|
2216
|
+
Completed 200 OK in 9ms (Views: 8.5ms | ActiveRecord: 0.0ms)
|
2217
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "books"
|
2218
|
+
[1m[36m (0.3ms)[0m [1mrollback transaction[0m
|
2219
|
+
[1m[35m (0.0ms)[0m begin transaction
|
2220
|
+
------------------------------
|
2221
|
+
BooksControllerTest: test_show
|
2222
|
+
------------------------------
|
2223
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
2224
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 24 Apr 2014 06:44:49 UTC +00:00], ["name", "A Fistful of Friday"], ["updated_at", Thu, 24 Apr 2014 06:44:49 UTC +00:00]]
|
2225
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2226
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
2227
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Thu, 24 Apr 2014 06:44:49 UTC +00:00], ["name", "The Woman from 6957 Leagues"], ["updated_at", Thu, 24 Apr 2014 06:44:49 UTC +00:00]]
|
2228
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
2229
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
2230
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 24 Apr 2014 06:44:49 UTC +00:00], ["name", "The Tentacle from Outer Space"], ["updated_at", Thu, 24 Apr 2014 06:44:49 UTC +00:00]]
|
2231
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
111
2232
|
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
112
|
-
[1m[36mSQL (0.
|
2233
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Thu, 24 Apr 2014 06:44:49 UTC +00:00], ["name", "Invasion of the Men"], ["updated_at", Thu, 24 Apr 2014 06:44:49 UTC +00:00]]
|
113
2234
|
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
114
|
-
|
2235
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
2236
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 24 Apr 2014 06:44:49 UTC +00:00], ["name", "Dangerous Fly"], ["updated_at", Thu, 24 Apr 2014 06:44:49 UTC +00:00]]
|
2237
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
115
2238
|
Processing by BooksController#show as HTML
|
116
2239
|
Parameters: {"id"=>"1"}
|
117
|
-
[1m[
|
118
|
-
Completed 200 OK in
|
119
|
-
[1m[
|
120
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
121
|
-
Started GET "/books" for 127.0.0.1 at 2014-04-27 17:15:52 -0700
|
122
|
-
Processing by BooksController#index as HTML
|
123
|
-
[1m[35mBook Load (0.1ms)[0m SELECT "books".* FROM "books"
|
124
|
-
Completed 200 OK in 1.5ms (Views: 0.9ms | ActiveRecord: 0.1ms)
|
125
|
-
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
2240
|
+
[1m[35mBook Load (0.1ms)[0m SELECT "books".* FROM "books" WHERE "books"."id" = ? LIMIT 1 [["id", "1"]]
|
2241
|
+
Completed 200 OK in 3ms (Views: 1.2ms | ActiveRecord: 0.1ms)
|
2242
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
126
2243
|
[1m[35m (0.0ms)[0m begin transaction
|
2244
|
+
-----------------------------------------------------------------------
|
2245
|
+
FastlyHeadersTest: test_/books/:id_show_page_should_have_fastly_headers
|
2246
|
+
-----------------------------------------------------------------------
|
127
2247
|
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
128
|
-
[1m[35mSQL (0.
|
2248
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "books" ("created_at", "id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Thu, 24 Apr 2014 06:44:49 UTC +00:00], ["id", 1], ["name", "Dr. Cousins"], ["updated_at", Thu, 24 Apr 2014 06:44:49 UTC +00:00]]
|
129
2249
|
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
130
|
-
Started
|
2250
|
+
Started GET "/books/1" for 127.0.0.1 at 2014-04-24 02:44:49 -0400
|
2251
|
+
Processing by BooksController#show as HTML
|
2252
|
+
Parameters: {"id"=>"1"}
|
2253
|
+
[1m[35mBook Load (0.1ms)[0m SELECT "books".* FROM "books" WHERE "books"."id" = ? LIMIT 1 [["id", "1"]]
|
2254
|
+
Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.1ms)
|
2255
|
+
[1m[36m (0.3ms)[0m [1mrollback transaction[0m
|
2256
|
+
[1m[35m (0.1ms)[0m begin transaction
|
2257
|
+
--------------------------------------------------------------------
|
2258
|
+
FastlyHeadersTest: test_/books_index_page_should_have_fastly_headers
|
2259
|
+
--------------------------------------------------------------------
|
2260
|
+
Started GET "/books" for 127.0.0.1 at 2014-04-24 02:44:49 -0400
|
2261
|
+
Processing by BooksController#index as HTML
|
2262
|
+
Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
2263
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
2264
|
+
[1m[35m (0.0ms)[0m begin transaction
|
2265
|
+
----------------------------------------------------------------------------------------------
|
2266
|
+
FastlyHeadersTest: test_DELETE_/books/:id_should_not_have_fastly_headers/_fastly_header_values
|
2267
|
+
----------------------------------------------------------------------------------------------
|
2268
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2269
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "books" ("created_at", "id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Thu, 24 Apr 2014 06:44:49 UTC +00:00], ["id", 1], ["name", "Hard Boiled Witch"], ["updated_at", Thu, 24 Apr 2014 06:44:49 UTC +00:00]]
|
2270
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2271
|
+
Started DELETE "/books/1" for 127.0.0.1 at 2014-04-24 02:44:49 -0400
|
131
2272
|
Processing by BooksController#destroy as HTML
|
132
2273
|
Parameters: {"id"=>"1"}
|
133
|
-
[1m[35mBook Load (0.
|
2274
|
+
[1m[35mBook Load (0.1ms)[0m SELECT "books".* FROM "books" WHERE "books"."id" = ? LIMIT 1 [["id", "1"]]
|
134
2275
|
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
135
|
-
[1m[35mSQL (0.
|
2276
|
+
[1m[35mSQL (0.3ms)[0m DELETE FROM "books" WHERE "books"."id" = ? [["id", 1]]
|
136
2277
|
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
137
2278
|
Redirected to http://www.example.com/books
|
138
|
-
Completed 302 Found in
|
2279
|
+
Completed 302 Found in 2ms (ActiveRecord: 0.4ms)
|
139
2280
|
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "books" WHERE "books"."id" = 1
|
140
2281
|
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
141
|
-
[1m[35m (0.
|
142
|
-
|
143
|
-
|
2282
|
+
[1m[35m (0.1ms)[0m begin transaction
|
2283
|
+
----------------------------------------------------------------------------------------
|
2284
|
+
FastlyHeadersTest: test_POST_/books_should_not_have_fastly_headers/_fastly_header_values
|
2285
|
+
----------------------------------------------------------------------------------------
|
2286
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "books"[0m
|
2287
|
+
Started POST "/books" for 127.0.0.1 at 2014-04-24 02:44:49 -0400
|
144
2288
|
Processing by BooksController#create as HTML
|
145
2289
|
Parameters: {"book"=>{"name"=>"some new book"}}
|
146
2290
|
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
147
|
-
[1m[36mSQL (0.
|
148
|
-
[1m[35m (0.
|
2291
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Thu, 24 Apr 2014 06:44:49 UTC +00:00], ["name", "some new book"], ["updated_at", Thu, 24 Apr 2014 06:44:49 UTC +00:00]]
|
2292
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
149
2293
|
Redirected to http://www.example.com/books
|
150
|
-
Completed 302 Found in
|
151
|
-
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "books"
|
2294
|
+
Completed 302 Found in 2ms (ActiveRecord: 0.4ms)
|
2295
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "books"[0m
|
152
2296
|
[1m[35m (0.3ms)[0m rollback transaction
|
153
2297
|
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
154
|
-
|
155
|
-
|
2298
|
+
-------------------------------------------------------------------------------------------
|
2299
|
+
FastlyHeadersTest: test_PUT_/books/:id_should_not_have_fastly_headers/_fastly_header_values
|
2300
|
+
-------------------------------------------------------------------------------------------
|
2301
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2302
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "books" ("created_at", "id", "name", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", Thu, 24 Apr 2014 06:44:49 UTC +00:00], ["id", 1], ["name", "some new book"], ["updated_at", Thu, 24 Apr 2014 06:44:49 UTC +00:00]]
|
156
2303
|
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
157
|
-
Started PUT "/books/1" for 127.0.0.1 at 2014-04-
|
2304
|
+
Started PUT "/books/1" for 127.0.0.1 at 2014-04-24 02:44:49 -0400
|
158
2305
|
Processing by BooksController#update as HTML
|
159
2306
|
Parameters: {"id"=>"1", "book"=>{"name"=>"changed book"}}
|
160
2307
|
[1m[36mBook Load (0.0ms)[0m [1mSELECT "books".* FROM "books" WHERE "books"."id" = ? LIMIT 1[0m [["id", "1"]]
|
161
2308
|
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
162
|
-
[1m[
|
2309
|
+
[1m[36mSQL (0.3ms)[0m [1mUPDATE "books" SET "name" = ?, "updated_at" = ? WHERE "books"."id" = 1[0m [["name", "changed book"], ["updated_at", Thu, 24 Apr 2014 06:44:49 UTC +00:00]]
|
163
2310
|
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
164
2311
|
Redirected to http://www.example.com/books/1
|
165
|
-
Completed 302 Found in
|
2312
|
+
Completed 302 Found in 3ms (ActiveRecord: 0.5ms)
|
166
2313
|
[1m[36mBook Load (0.0ms)[0m [1mSELECT "books".* FROM "books" WHERE "books"."id" = ? LIMIT 1[0m [["id", 1]]
|
167
|
-
[1m[35m (0.
|
2314
|
+
[1m[35m (0.3ms)[0m rollback transaction
|
168
2315
|
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
169
2316
|
[1m[35m (0.0ms)[0m commit transaction
|
170
2317
|
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
171
2318
|
[1m[35m (0.0ms)[0m rollback transaction
|
172
2319
|
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
173
|
-
|
2320
|
+
-------------------------------------------------------------------------------------------------
|
2321
|
+
FastlyRails::CacheControlHeadersTest: test_sets_cache_control_headers_on_actioncontroller_request
|
2322
|
+
-------------------------------------------------------------------------------------------------
|
2323
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
174
2324
|
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
175
2325
|
[1m[35m (0.0ms)[0m commit transaction
|
176
2326
|
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
@@ -178,11 +2328,11 @@ Completed 302 Found in 3.2ms (ActiveRecord: 0.4ms)
|
|
178
2328
|
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
179
2329
|
[1m[35m (0.0ms)[0m commit transaction
|
180
2330
|
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
181
|
-
[1m[35m (0.
|
2331
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
182
2332
|
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
183
|
-
[1m[35m (0.
|
2333
|
+
[1m[35m (0.0ms)[0m commit transaction
|
184
2334
|
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
185
|
-
[1m[35m (0.
|
2335
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
186
2336
|
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
187
2337
|
[1m[35m (0.0ms)[0m commit transaction
|
188
2338
|
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
@@ -221,7 +2371,7 @@ Completed 302 Found in 3.2ms (ActiveRecord: 0.4ms)
|
|
221
2371
|
[1m[35m (0.0ms)[0m rollback transaction
|
222
2372
|
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
223
2373
|
[1m[35m (0.0ms)[0m commit transaction
|
224
|
-
[1m[36m (0.
|
2374
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
225
2375
|
[1m[35m (0.0ms)[0m rollback transaction
|
226
2376
|
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
227
2377
|
[1m[35m (0.0ms)[0m commit transaction
|
@@ -236,16 +2386,16 @@ Completed 302 Found in 3.2ms (ActiveRecord: 0.4ms)
|
|
236
2386
|
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
237
2387
|
[1m[35m (0.0ms)[0m rollback transaction
|
238
2388
|
Connecting to database specified by database.yml
|
239
|
-
[1m[36m (0.
|
2389
|
+
[1m[36m (0.0ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
240
2390
|
Migrating to CreateBooks (20140407202136)
|
241
2391
|
[1m[35m (0.1ms)[0m begin transaction
|
242
2392
|
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
243
2393
|
[1m[35m (0.0ms)[0m begin transaction
|
244
2394
|
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
245
|
-
[1m[35mSQL (
|
2395
|
+
[1m[35mSQL (3.9ms)[0m INSERT INTO "books" ("created_at", "id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Fri, 25 Apr 2014 23:32:54 UTC +00:00], ["id", 1], ["name", "Je Vous Presente, Stanton"], ["updated_at", Fri, 25 Apr 2014 23:32:54 UTC +00:00]]
|
246
2396
|
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
247
|
-
[1m[35m (
|
248
|
-
[1m[36m (0.
|
2397
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
2398
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
249
2399
|
[1m[35m (0.0ms)[0m commit transaction
|
250
2400
|
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
251
2401
|
[1m[35m (0.0ms)[0m rollback transaction
|
@@ -253,146 +2403,146 @@ Migrating to CreateBooks (20140407202136)
|
|
253
2403
|
[1m[35m (0.0ms)[0m commit transaction
|
254
2404
|
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
255
2405
|
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
256
|
-
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "books" ("created_at", "id", "name", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at",
|
2406
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "books" ("created_at", "id", "name", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", Fri, 25 Apr 2014 23:32:54 UTC +00:00], ["id", 1], ["name", "Flying Men: The Patricia Eichmann Sr. Story"], ["updated_at", Fri, 25 Apr 2014 23:32:54 UTC +00:00]]
|
257
2407
|
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
258
|
-
[1m[36m (0.
|
2408
|
+
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|
259
2409
|
[1m[35m (0.0ms)[0m begin transaction
|
260
2410
|
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
261
2411
|
[1m[35m (0.0ms)[0m begin transaction
|
262
2412
|
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
263
|
-
[1m[35mSQL (0.
|
2413
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "books" ("created_at", "id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Fri, 25 Apr 2014 23:32:54 UTC +00:00], ["id", 1], ["name", "The Monster Who Fell to Earth"], ["updated_at", Fri, 25 Apr 2014 23:32:54 UTC +00:00]]
|
264
2414
|
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
265
2415
|
[1m[35m (0.2ms)[0m rollback transaction
|
266
2416
|
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
267
2417
|
[1m[35m (0.0ms)[0m commit transaction
|
268
2418
|
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
269
2419
|
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
270
|
-
[1m[36mSQL (0.
|
2420
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "books" ("created_at", "id", "name", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", Fri, 25 Apr 2014 23:32:54 UTC +00:00], ["id", 1], ["name", "Season of the Pickpocket"], ["updated_at", Fri, 25 Apr 2014 23:32:54 UTC +00:00]]
|
271
2421
|
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
272
2422
|
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|
273
2423
|
[1m[35m (0.0ms)[0m begin transaction
|
274
2424
|
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
275
|
-
[1m[35mSQL (0.3ms)[0m INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at",
|
2425
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 25 Apr 2014 23:32:54 UTC +00:00], ["name", "The Blow"], ["updated_at", Fri, 25 Apr 2014 23:32:54 UTC +00:00]]
|
276
2426
|
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
277
2427
|
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
278
|
-
[1m[36mSQL (0.
|
2428
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Fri, 25 Apr 2014 23:32:54 UTC +00:00], ["name", "Return of the Forbidden Monster"], ["updated_at", Fri, 25 Apr 2014 23:32:54 UTC +00:00]]
|
279
2429
|
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
280
2430
|
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
281
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at",
|
2431
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 25 Apr 2014 23:32:54 UTC +00:00], ["name", "I am Flying Tears"], ["updated_at", Fri, 25 Apr 2014 23:32:54 UTC +00:00]]
|
282
2432
|
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
283
2433
|
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
284
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at",
|
2434
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Fri, 25 Apr 2014 23:32:54 UTC +00:00], ["name", "Hard Boiled Clash"], ["updated_at", Fri, 25 Apr 2014 23:32:54 UTC +00:00]]
|
285
2435
|
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
286
2436
|
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
287
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at",
|
2437
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 25 Apr 2014 23:32:54 UTC +00:00], ["name", "Case of the Missing City"], ["updated_at", Fri, 25 Apr 2014 23:32:54 UTC +00:00]]
|
288
2438
|
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
289
2439
|
[1m[35m (0.0ms)[0m SELECT COUNT(*) FROM "books"
|
290
2440
|
Processing by BooksController#create as HTML
|
291
2441
|
Parameters: {"book"=>{"name"=>"newly-created-book"}}
|
292
2442
|
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
293
|
-
[1m[35mSQL (0.
|
2443
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 25 Apr 2014 23:32:54 UTC +00:00], ["name", "newly-created-book"], ["updated_at", Fri, 25 Apr 2014 23:32:54 UTC +00:00]]
|
294
2444
|
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
295
2445
|
Redirected to http://test.host/books
|
296
2446
|
Completed 302 Found in 1.8ms (ActiveRecord: 0.2ms)
|
297
2447
|
[1m[35m (0.0ms)[0m SELECT COUNT(*) FROM "books"
|
298
|
-
[1m[36m (0.
|
2448
|
+
[1m[36m (0.3ms)[0m [1mrollback transaction[0m
|
299
2449
|
[1m[35m (0.0ms)[0m begin transaction
|
300
2450
|
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
301
|
-
[1m[35mSQL (0.3ms)[0m INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at",
|
2451
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 25 Apr 2014 23:32:54 UTC +00:00], ["name", "The Electric Tears That Came to Dinner"], ["updated_at", Fri, 25 Apr 2014 23:32:54 UTC +00:00]]
|
302
2452
|
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
303
2453
|
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
304
|
-
[1m[36mSQL (0.
|
2454
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Fri, 25 Apr 2014 23:32:54 UTC +00:00], ["name", "Codename: Wolf"], ["updated_at", Fri, 25 Apr 2014 23:32:54 UTC +00:00]]
|
305
2455
|
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
306
2456
|
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
307
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at",
|
2457
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 25 Apr 2014 23:32:54 UTC +00:00], ["name", "Time of the Death World"], ["updated_at", Fri, 25 Apr 2014 23:32:54 UTC +00:00]]
|
308
2458
|
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
309
2459
|
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
310
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at",
|
2460
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Fri, 25 Apr 2014 23:32:54 UTC +00:00], ["name", "The American Wolf from Across the Ocean"], ["updated_at", Fri, 25 Apr 2014 23:32:54 UTC +00:00]]
|
311
2461
|
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
312
2462
|
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
313
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at",
|
2463
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 25 Apr 2014 23:32:54 UTC +00:00], ["name", "The Ultra Rain from the Black Lagoon"], ["updated_at", Fri, 25 Apr 2014 23:32:54 UTC +00:00]]
|
314
2464
|
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
315
2465
|
Processing by BooksController#index as HTML
|
316
2466
|
[1m[35mBook Load (0.1ms)[0m SELECT "books".* FROM "books"
|
317
|
-
Completed 200 OK in
|
318
|
-
[1m[36m (0.
|
2467
|
+
Completed 200 OK in 8.1ms (Views: 7.1ms | ActiveRecord: 0.1ms)
|
2468
|
+
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|
319
2469
|
[1m[35m (0.0ms)[0m begin transaction
|
320
2470
|
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
321
|
-
[1m[35mSQL (0.3ms)[0m INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at",
|
2471
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 25 Apr 2014 23:32:55 UTC +00:00], ["name", "Killer Man"], ["updated_at", Fri, 25 Apr 2014 23:32:55 UTC +00:00]]
|
322
2472
|
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
323
2473
|
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
324
|
-
[1m[36mSQL (0.
|
2474
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Fri, 25 Apr 2014 23:32:55 UTC +00:00], ["name", "Death Clash"], ["updated_at", Fri, 25 Apr 2014 23:32:55 UTC +00:00]]
|
325
2475
|
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
326
2476
|
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
327
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at",
|
2477
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 25 Apr 2014 23:32:55 UTC +00:00], ["name", "The Forbidden Man Who Fell to Earth"], ["updated_at", Fri, 25 Apr 2014 23:32:55 UTC +00:00]]
|
328
2478
|
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
329
2479
|
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
330
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at",
|
2480
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Fri, 25 Apr 2014 23:32:55 UTC +00:00], ["name", "The Tentacle from 14032 Leagues"], ["updated_at", Fri, 25 Apr 2014 23:32:55 UTC +00:00]]
|
331
2481
|
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
332
2482
|
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
333
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at",
|
2483
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 25 Apr 2014 23:32:55 UTC +00:00], ["name", "The Tears from the Black Lagoon"], ["updated_at", Fri, 25 Apr 2014 23:32:55 UTC +00:00]]
|
334
2484
|
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
335
2485
|
Processing by BooksController#show as HTML
|
336
2486
|
Parameters: {"id"=>"1"}
|
337
2487
|
[1m[35mBook Load (0.1ms)[0m SELECT "books".* FROM "books" WHERE "books"."id" = ? LIMIT 1 [["id", "1"]]
|
338
|
-
Completed 200 OK in
|
339
|
-
[1m[36m (0.
|
2488
|
+
Completed 200 OK in 3.7ms (Views: 1.7ms | ActiveRecord: 0.1ms)
|
2489
|
+
[1m[36m (0.3ms)[0m [1mrollback transaction[0m
|
340
2490
|
[1m[35m (0.0ms)[0m begin transaction
|
341
2491
|
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
342
|
-
[1m[35mSQL (0.3ms)[0m INSERT INTO "books" ("created_at", "id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at",
|
2492
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "books" ("created_at", "id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Fri, 25 Apr 2014 23:32:55 UTC +00:00], ["id", 1], ["name", "Electric Cousins"], ["updated_at", Fri, 25 Apr 2014 23:32:55 UTC +00:00]]
|
343
2493
|
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
344
|
-
Started GET "/books/1" for 127.0.0.1 at 2014-04-
|
2494
|
+
Started GET "/books/1" for 127.0.0.1 at 2014-04-25 19:32:55 -0400
|
345
2495
|
Processing by BooksController#show as HTML
|
346
2496
|
Parameters: {"id"=>"1"}
|
347
2497
|
[1m[35mBook Load (0.0ms)[0m SELECT "books".* FROM "books" WHERE "books"."id" = ? LIMIT 1 [["id", "1"]]
|
348
|
-
Completed 200 OK in 1.
|
349
|
-
[1m[36m (0.
|
2498
|
+
Completed 200 OK in 1.5ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
2499
|
+
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|
350
2500
|
[1m[35m (0.0ms)[0m begin transaction
|
351
|
-
Started GET "/books" for 127.0.0.1 at 2014-04-
|
2501
|
+
Started GET "/books" for 127.0.0.1 at 2014-04-25 19:32:55 -0400
|
352
2502
|
Processing by BooksController#index as HTML
|
353
2503
|
[1m[36mBook Load (0.1ms)[0m [1mSELECT "books".* FROM "books" [0m
|
354
2504
|
Completed 200 OK in 1.4ms (Views: 0.9ms | ActiveRecord: 0.1ms)
|
355
|
-
[1m[35m (0.
|
2505
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
356
2506
|
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
357
2507
|
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
358
|
-
[1m[36mSQL (0.
|
2508
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "books" ("created_at", "id", "name", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", Fri, 25 Apr 2014 23:32:55 UTC +00:00], ["id", 1], ["name", "Red Friday 2: Son of Red Friday"], ["updated_at", Fri, 25 Apr 2014 23:32:55 UTC +00:00]]
|
359
2509
|
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
360
|
-
Started DELETE "/books/1" for 127.0.0.1 at 2014-04-
|
2510
|
+
Started DELETE "/books/1" for 127.0.0.1 at 2014-04-25 19:32:55 -0400
|
361
2511
|
Processing by BooksController#destroy as HTML
|
362
2512
|
Parameters: {"id"=>"1"}
|
363
2513
|
[1m[36mBook Load (0.0ms)[0m [1mSELECT "books".* FROM "books" WHERE "books"."id" = ? LIMIT 1[0m [["id", "1"]]
|
364
|
-
[1m[35m (0.
|
365
|
-
[1m[36mSQL (0.
|
366
|
-
[1m[35m (0.
|
2514
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
2515
|
+
[1m[36mSQL (0.3ms)[0m [1mDELETE FROM "books" WHERE "books"."id" = ?[0m [["id", 1]]
|
2516
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
367
2517
|
Redirected to http://www.example.com/books
|
368
|
-
Completed 302 Found in 2.
|
2518
|
+
Completed 302 Found in 2.1ms (ActiveRecord: 0.4ms)
|
369
2519
|
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "books" WHERE "books"."id" = 1[0m
|
370
|
-
[1m[35m (0.
|
2520
|
+
[1m[35m (0.3ms)[0m rollback transaction
|
371
2521
|
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
372
2522
|
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "books"
|
373
|
-
Started POST "/books" for 127.0.0.1 at 2014-04-
|
2523
|
+
Started POST "/books" for 127.0.0.1 at 2014-04-25 19:32:55 -0400
|
374
2524
|
Processing by BooksController#create as HTML
|
375
2525
|
Parameters: {"book"=>{"name"=>"some new book"}}
|
376
2526
|
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
377
|
-
[1m[35mSQL (0.3ms)[0m INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at",
|
2527
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 25 Apr 2014 23:32:55 UTC +00:00], ["name", "some new book"], ["updated_at", Fri, 25 Apr 2014 23:32:55 UTC +00:00]]
|
378
2528
|
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
379
2529
|
Redirected to http://www.example.com/books
|
380
|
-
Completed 302 Found in 1.
|
2530
|
+
Completed 302 Found in 1.7ms (ActiveRecord: 0.3ms)
|
381
2531
|
[1m[35m (0.0ms)[0m SELECT COUNT(*) FROM "books"
|
382
2532
|
[1m[36m (0.3ms)[0m [1mrollback transaction[0m
|
383
2533
|
[1m[35m (0.0ms)[0m begin transaction
|
384
2534
|
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
385
|
-
[1m[35mSQL (0.3ms)[0m INSERT INTO "books" ("created_at", "id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at",
|
2535
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "books" ("created_at", "id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Fri, 25 Apr 2014 23:32:55 UTC +00:00], ["id", 1], ["name", "some new book"], ["updated_at", Fri, 25 Apr 2014 23:32:55 UTC +00:00]]
|
386
2536
|
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
387
|
-
Started PUT "/books/1" for 127.0.0.1 at 2014-04-
|
2537
|
+
Started PUT "/books/1" for 127.0.0.1 at 2014-04-25 19:32:55 -0400
|
388
2538
|
Processing by BooksController#update as HTML
|
389
2539
|
Parameters: {"id"=>"1", "book"=>{"name"=>"changed book"}}
|
390
2540
|
[1m[35mBook Load (0.0ms)[0m SELECT "books".* FROM "books" WHERE "books"."id" = ? LIMIT 1 [["id", "1"]]
|
391
2541
|
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
392
|
-
[1m[35m (0.3ms)[0m UPDATE "books" SET "name" = 'changed book', "updated_at" = '2014-04-
|
2542
|
+
[1m[35m (0.3ms)[0m UPDATE "books" SET "name" = 'changed book', "updated_at" = '2014-04-25 23:32:55.048365' WHERE "books"."id" = 1
|
393
2543
|
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
394
2544
|
Redirected to http://www.example.com/books/1
|
395
|
-
Completed 302 Found in 3.
|
2545
|
+
Completed 302 Found in 3.3ms (ActiveRecord: 0.4ms)
|
396
2546
|
[1m[35mBook Load (0.0ms)[0m SELECT "books".* FROM "books" WHERE "books"."id" = ? LIMIT 1 [["id", 1]]
|
397
2547
|
[1m[36m (0.3ms)[0m [1mrollback transaction[0m
|
398
2548
|
[1m[35m (0.0ms)[0m begin transaction
|
@@ -408,10 +2558,14 @@ Completed 302 Found in 3.4ms (ActiveRecord: 0.4ms)
|
|
408
2558
|
[1m[35m (0.0ms)[0m begin transaction
|
409
2559
|
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
410
2560
|
[1m[35m (0.0ms)[0m begin transaction
|
2561
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
2562
|
+
[1m[35m (0.0ms)[0m begin transaction
|
2563
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
2564
|
+
[1m[35m (0.0ms)[0m begin transaction
|
411
2565
|
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
412
2566
|
[1m[35m (0.0ms)[0m begin transaction
|
413
2567
|
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
414
|
-
[1m[35m (0.
|
2568
|
+
[1m[35m (0.0ms)[0m begin transaction
|
415
2569
|
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
416
2570
|
[1m[35m (0.0ms)[0m begin transaction
|
417
2571
|
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
@@ -460,134 +2614,376 @@ Completed 302 Found in 3.4ms (ActiveRecord: 0.4ms)
|
|
460
2614
|
[1m[35m (0.0ms)[0m begin transaction
|
461
2615
|
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
462
2616
|
[1m[35m (0.0ms)[0m begin transaction
|
463
|
-
[1m[36m (0.
|
2617
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
2618
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
2619
|
+
[1m[35m (0.1ms)[0m begin transaction
|
2620
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
2621
|
+
[1m[35m (0.0ms)[0m begin transaction
|
2622
|
+
[1m[36mSQL (2.2ms)[0m [1mINSERT INTO "books" ("created_at", "id", "name", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", Fri, 25 Apr 2014 23:32:57 UTC +00:00], ["id", 1], ["name", "Bloody Brain"], ["updated_at", Fri, 25 Apr 2014 23:32:57 UTC +00:00]]
|
2623
|
+
[1m[35m (0.7ms)[0m rollback transaction
|
2624
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2625
|
+
[1m[35m (0.0ms)[0m commit transaction
|
2626
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2627
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "books" ("created_at", "id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Fri, 25 Apr 2014 23:32:57 UTC +00:00], ["id", 1], ["name", "302 A.D."], ["updated_at", Fri, 25 Apr 2014 23:32:57 UTC +00:00]]
|
2628
|
+
[1m[36m (0.3ms)[0m [1mrollback transaction[0m
|
464
2629
|
[1m[35m (0.0ms)[0m begin transaction
|
465
2630
|
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
466
2631
|
[1m[35m (0.0ms)[0m begin transaction
|
2632
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "books" ("created_at", "id", "name", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", Fri, 25 Apr 2014 23:32:57 UTC +00:00], ["id", 1], ["name", "Forbidden Witch"], ["updated_at", Fri, 25 Apr 2014 23:32:57 UTC +00:00]]
|
2633
|
+
[1m[35m (0.3ms)[0m rollback transaction
|
2634
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2635
|
+
[1m[35m (0.0ms)[0m commit transaction
|
2636
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2637
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
2638
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2639
|
+
[1m[35m (0.0ms)[0m commit transaction
|
2640
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2641
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "books" ("created_at", "id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Fri, 25 Apr 2014 23:32:57 UTC +00:00], ["id", 1], ["name", "The Wolves from Across the Ocean"], ["updated_at", Fri, 25 Apr 2014 23:32:57 UTC +00:00]]
|
2642
|
+
[1m[36m (0.3ms)[0m [1mrollback transaction[0m
|
2643
|
+
[1m[35m (0.0ms)[0m begin transaction
|
2644
|
+
--------------------------------
|
2645
|
+
BooksControllerTest: test_create
|
2646
|
+
--------------------------------
|
2647
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2648
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 25 Apr 2014 23:32:57 UTC +00:00], ["name", "Season of the Women"], ["updated_at", Fri, 25 Apr 2014 23:32:57 UTC +00:00]]
|
2649
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2650
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
2651
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Fri, 25 Apr 2014 23:32:57 UTC +00:00], ["name", "Red Wolf"], ["updated_at", Fri, 25 Apr 2014 23:32:57 UTC +00:00]]
|
2652
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
2653
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
2654
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 25 Apr 2014 23:32:57 UTC +00:00], ["name", "Je Vous Presente, Laverne"], ["updated_at", Fri, 25 Apr 2014 23:32:57 UTC +00:00]]
|
2655
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2656
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2657
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Fri, 25 Apr 2014 23:32:57 UTC +00:00], ["name", "Hungry Jungle: The Edgar Reinger Story"], ["updated_at", Fri, 25 Apr 2014 23:32:57 UTC +00:00]]
|
2658
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
2659
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
2660
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 25 Apr 2014 23:32:57 UTC +00:00], ["name", "The Nuclear Men from Hell"], ["updated_at", Fri, 25 Apr 2014 23:32:57 UTC +00:00]]
|
2661
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2662
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "books"
|
2663
|
+
Processing by BooksController#create as HTML
|
2664
|
+
Parameters: {"book"=>{"name"=>"newly-created-book"}}
|
2665
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
2666
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 25 Apr 2014 23:32:57 UTC +00:00], ["name", "newly-created-book"], ["updated_at", Fri, 25 Apr 2014 23:32:57 UTC +00:00]]
|
2667
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2668
|
+
Redirected to http://test.host/books
|
2669
|
+
Completed 302 Found in 2ms (ActiveRecord: 0.2ms)
|
2670
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "books"
|
2671
|
+
[1m[36m (0.3ms)[0m [1mrollback transaction[0m
|
2672
|
+
[1m[35m (0.0ms)[0m begin transaction
|
2673
|
+
-------------------------------
|
2674
|
+
BooksControllerTest: test_index
|
2675
|
+
-------------------------------
|
2676
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
2677
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 25 Apr 2014 23:32:57 UTC +00:00], ["name", "The Red Cousins Who Fell to Earth"], ["updated_at", Fri, 25 Apr 2014 23:32:57 UTC +00:00]]
|
2678
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2679
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
2680
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Fri, 25 Apr 2014 23:32:57 UTC +00:00], ["name", "The Beast with a Thousand Faces"], ["updated_at", Fri, 25 Apr 2014 23:32:57 UTC +00:00]]
|
2681
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
2682
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
2683
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 25 Apr 2014 23:32:57 UTC +00:00], ["name", "Blue Blow"], ["updated_at", Fri, 25 Apr 2014 23:32:57 UTC +00:00]]
|
2684
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2685
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
2686
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Fri, 25 Apr 2014 23:32:57 UTC +00:00], ["name", "Season of the Woman"], ["updated_at", Fri, 25 Apr 2014 23:32:57 UTC +00:00]]
|
2687
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
2688
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
2689
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 25 Apr 2014 23:32:57 UTC +00:00], ["name", "War of the Jungle"], ["updated_at", Fri, 25 Apr 2014 23:32:57 UTC +00:00]]
|
2690
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2691
|
+
Processing by BooksController#index as HTML
|
2692
|
+
Completed 200 OK in 12ms (Views: 11.7ms | ActiveRecord: 0.0ms)
|
2693
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "books"
|
2694
|
+
[1m[36m (0.3ms)[0m [1mrollback transaction[0m
|
2695
|
+
[1m[35m (0.0ms)[0m begin transaction
|
2696
|
+
------------------------------
|
2697
|
+
BooksControllerTest: test_show
|
2698
|
+
------------------------------
|
2699
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
2700
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 25 Apr 2014 23:32:57 UTC +00:00], ["name", "The Danger Diaries from Across the Ocean"], ["updated_at", Fri, 25 Apr 2014 23:32:57 UTC +00:00]]
|
2701
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2702
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
2703
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Fri, 25 Apr 2014 23:32:57 UTC +00:00], ["name", "Journey of the Flying Wolf"], ["updated_at", Fri, 25 Apr 2014 23:32:57 UTC +00:00]]
|
2704
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
2705
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
2706
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 25 Apr 2014 23:32:57 UTC +00:00], ["name", "War of the Rain"], ["updated_at", Fri, 25 Apr 2014 23:32:57 UTC +00:00]]
|
2707
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2708
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
2709
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Fri, 25 Apr 2014 23:32:57 UTC +00:00], ["name", "Return of the Nuclear Wolves"], ["updated_at", Fri, 25 Apr 2014 23:32:57 UTC +00:00]]
|
2710
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
2711
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
2712
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 25 Apr 2014 23:32:57 UTC +00:00], ["name", "Blue Witch"], ["updated_at", Fri, 25 Apr 2014 23:32:57 UTC +00:00]]
|
2713
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2714
|
+
Processing by BooksController#show as HTML
|
2715
|
+
Parameters: {"id"=>"1"}
|
2716
|
+
[1m[35mBook Load (0.1ms)[0m SELECT "books".* FROM "books" WHERE "books"."id" = ? LIMIT 1 [["id", "1"]]
|
2717
|
+
Completed 200 OK in 3ms (Views: 1.3ms | ActiveRecord: 0.1ms)
|
2718
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
2719
|
+
[1m[35m (0.0ms)[0m begin transaction
|
2720
|
+
-----------------------------------------------------------------------
|
2721
|
+
FastlyHeadersTest: test_/books/:id_show_page_should_have_fastly_headers
|
2722
|
+
-----------------------------------------------------------------------
|
2723
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
2724
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "books" ("created_at", "id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Fri, 25 Apr 2014 23:32:57 UTC +00:00], ["id", 1], ["name", "Wizard 2: Electric Boogaloo"], ["updated_at", Fri, 25 Apr 2014 23:32:57 UTC +00:00]]
|
2725
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2726
|
+
Started GET "/books/1" for 127.0.0.1 at 2014-04-25 19:32:57 -0400
|
2727
|
+
Processing by BooksController#show as HTML
|
2728
|
+
Parameters: {"id"=>"1"}
|
2729
|
+
[1m[35mBook Load (0.1ms)[0m SELECT "books".* FROM "books" WHERE "books"."id" = ? LIMIT 1 [["id", "1"]]
|
2730
|
+
Completed 200 OK in 2ms (Views: 0.8ms | ActiveRecord: 0.1ms)
|
2731
|
+
[1m[36m (0.3ms)[0m [1mrollback transaction[0m
|
2732
|
+
[1m[35m (0.0ms)[0m begin transaction
|
2733
|
+
--------------------------------------------------------------------
|
2734
|
+
FastlyHeadersTest: test_/books_index_page_should_have_fastly_headers
|
2735
|
+
--------------------------------------------------------------------
|
2736
|
+
Started GET "/books" for 127.0.0.1 at 2014-04-25 19:32:57 -0400
|
2737
|
+
Processing by BooksController#index as HTML
|
2738
|
+
Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
|
467
2739
|
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
2740
|
+
[1m[35m (0.0ms)[0m begin transaction
|
2741
|
+
----------------------------------------------------------------------------------------------
|
2742
|
+
FastlyHeadersTest: test_DELETE_/books/:id_should_not_have_fastly_headers/_fastly_header_values
|
2743
|
+
----------------------------------------------------------------------------------------------
|
2744
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
2745
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "books" ("created_at", "id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Fri, 25 Apr 2014 23:32:57 UTC +00:00], ["id", 1], ["name", "The Women from 6460 Leagues"], ["updated_at", Fri, 25 Apr 2014 23:32:57 UTC +00:00]]
|
2746
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2747
|
+
Started DELETE "/books/1" for 127.0.0.1 at 2014-04-25 19:32:57 -0400
|
2748
|
+
Processing by BooksController#destroy as HTML
|
2749
|
+
Parameters: {"id"=>"1"}
|
2750
|
+
[1m[35mBook Load (0.0ms)[0m SELECT "books".* FROM "books" WHERE "books"."id" = ? LIMIT 1 [["id", "1"]]
|
2751
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
2752
|
+
[1m[35mSQL (0.3ms)[0m DELETE FROM "books" WHERE "books"."id" = ? [["id", 1]]
|
2753
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2754
|
+
Redirected to http://www.example.com/books
|
2755
|
+
Completed 302 Found in 2ms (ActiveRecord: 0.4ms)
|
2756
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "books" WHERE "books"."id" = 1
|
2757
|
+
[1m[36m (0.3ms)[0m [1mrollback transaction[0m
|
2758
|
+
[1m[35m (0.0ms)[0m begin transaction
|
2759
|
+
----------------------------------------------------------------------------------------
|
2760
|
+
FastlyHeadersTest: test_POST_/books_should_not_have_fastly_headers/_fastly_header_values
|
2761
|
+
----------------------------------------------------------------------------------------
|
2762
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "books"[0m
|
2763
|
+
Started POST "/books" for 127.0.0.1 at 2014-04-25 19:32:57 -0400
|
2764
|
+
Processing by BooksController#create as HTML
|
2765
|
+
Parameters: {"book"=>{"name"=>"some new book"}}
|
2766
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
2767
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Fri, 25 Apr 2014 23:32:57 UTC +00:00], ["name", "some new book"], ["updated_at", Fri, 25 Apr 2014 23:32:57 UTC +00:00]]
|
2768
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
2769
|
+
Redirected to http://www.example.com/books
|
2770
|
+
Completed 302 Found in 1ms (ActiveRecord: 0.3ms)
|
2771
|
+
[1m[36m (0.0ms)[0m [1mSELECT COUNT(*) FROM "books"[0m
|
2772
|
+
[1m[35m (0.3ms)[0m rollback transaction
|
2773
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2774
|
+
-------------------------------------------------------------------------------------------
|
2775
|
+
FastlyHeadersTest: test_PUT_/books/:id_should_not_have_fastly_headers/_fastly_header_values
|
2776
|
+
-------------------------------------------------------------------------------------------
|
2777
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
2778
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "books" ("created_at", "id", "name", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", Fri, 25 Apr 2014 23:32:57 UTC +00:00], ["id", 1], ["name", "some new book"], ["updated_at", Fri, 25 Apr 2014 23:32:57 UTC +00:00]]
|
2779
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
2780
|
+
Started PUT "/books/1" for 127.0.0.1 at 2014-04-25 19:32:57 -0400
|
2781
|
+
Processing by BooksController#update as HTML
|
2782
|
+
Parameters: {"id"=>"1", "book"=>{"name"=>"changed book"}}
|
2783
|
+
[1m[36mBook Load (0.1ms)[0m [1mSELECT "books".* FROM "books" WHERE "books"."id" = ? LIMIT 1[0m [["id", "1"]]
|
2784
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
2785
|
+
[1m[36mSQL (0.4ms)[0m [1mUPDATE "books" SET "name" = ?, "updated_at" = ? WHERE "books"."id" = 1[0m [["name", "changed book"], ["updated_at", Fri, 25 Apr 2014 23:32:57 UTC +00:00]]
|
2786
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
2787
|
+
Redirected to http://www.example.com/books/1
|
2788
|
+
Completed 302 Found in 3ms (ActiveRecord: 0.6ms)
|
2789
|
+
[1m[36mBook Load (0.0ms)[0m [1mSELECT "books".* FROM "books" WHERE "books"."id" = ? LIMIT 1[0m [["id", 1]]
|
2790
|
+
[1m[35m (0.3ms)[0m rollback transaction
|
2791
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2792
|
+
[1m[35m (0.0ms)[0m commit transaction
|
2793
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2794
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
2795
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2796
|
+
-------------------------------------------------------------------------------------------------
|
2797
|
+
FastlyRails::CacheControlHeadersTest: test_sets_cache_control_headers_on_actioncontroller_request
|
2798
|
+
-------------------------------------------------------------------------------------------------
|
2799
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
2800
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2801
|
+
[1m[35m (0.0ms)[0m commit transaction
|
2802
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2803
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
2804
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2805
|
+
[1m[35m (0.0ms)[0m commit transaction
|
2806
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2807
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
2808
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2809
|
+
[1m[35m (0.0ms)[0m commit transaction
|
2810
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2811
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
2812
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2813
|
+
[1m[35m (0.0ms)[0m commit transaction
|
2814
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2815
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
2816
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2817
|
+
[1m[35m (0.0ms)[0m commit transaction
|
2818
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2819
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
2820
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2821
|
+
[1m[35m (0.0ms)[0m commit transaction
|
2822
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2823
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
2824
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2825
|
+
[1m[35m (0.0ms)[0m commit transaction
|
2826
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2827
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
2828
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2829
|
+
[1m[35m (0.0ms)[0m commit transaction
|
2830
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2831
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
2832
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2833
|
+
[1m[35m (0.0ms)[0m commit transaction
|
2834
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2835
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
2836
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2837
|
+
[1m[35m (0.0ms)[0m commit transaction
|
2838
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2839
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
2840
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2841
|
+
[1m[35m (0.0ms)[0m commit transaction
|
2842
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2843
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
2844
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2845
|
+
[1m[35m (0.0ms)[0m commit transaction
|
2846
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2847
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
2848
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2849
|
+
[1m[35m (0.0ms)[0m commit transaction
|
2850
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2851
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
2852
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2853
|
+
[1m[35m (0.0ms)[0m commit transaction
|
2854
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2855
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
2856
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2857
|
+
[1m[35m (0.0ms)[0m commit transaction
|
2858
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2859
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
2860
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2861
|
+
[1m[35m (0.0ms)[0m commit transaction
|
2862
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2863
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
468
2864
|
Connecting to database specified by database.yml
|
469
|
-
[1m[36m (0.
|
2865
|
+
[1m[36m (0.0ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
470
2866
|
Migrating to CreateBooks (20140407202136)
|
471
2867
|
[1m[35m (0.1ms)[0m begin transaction
|
472
2868
|
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
473
2869
|
[1m[35m (0.0ms)[0m begin transaction
|
474
|
-
[1m[36m (0.
|
475
|
-
[1m[35mSQL (
|
2870
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2871
|
+
[1m[35mSQL (4.0ms)[0m INSERT INTO "books" ("created_at", "id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Mon, 28 Apr 2014 15:44:15 UTC +00:00], ["id", 1], ["name", "Codename: Brains"], ["updated_at", Mon, 28 Apr 2014 15:44:15 UTC +00:00]]
|
476
2872
|
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
477
|
-
[1m[35m (
|
478
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
479
|
-
[1m[35m (0.0ms)[0m commit transaction
|
480
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
481
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
2873
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
482
2874
|
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
483
2875
|
[1m[35m (0.0ms)[0m commit transaction
|
484
2876
|
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
485
2877
|
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
486
|
-
[1m[36mSQL (0.
|
2878
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "books" ("created_at", "id", "name", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", Mon, 28 Apr 2014 15:44:15 UTC +00:00], ["id", 1], ["name", "The Clash Who Fell to Earth"], ["updated_at", Mon, 28 Apr 2014 15:44:15 UTC +00:00]]
|
487
2879
|
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
488
2880
|
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|
489
2881
|
[1m[35m (0.0ms)[0m begin transaction
|
490
2882
|
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
491
2883
|
[1m[35m (0.0ms)[0m begin transaction
|
492
2884
|
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
493
|
-
[1m[35mSQL (0.
|
2885
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "books" ("created_at", "id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Mon, 28 Apr 2014 15:44:15 UTC +00:00], ["id", 1], ["name", "769 A.D."], ["updated_at", Mon, 28 Apr 2014 15:44:15 UTC +00:00]]
|
494
2886
|
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
495
|
-
[1m[35m (0.
|
2887
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
496
2888
|
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
497
2889
|
[1m[35m (0.0ms)[0m commit transaction
|
498
2890
|
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
499
2891
|
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
500
|
-
[1m[36mSQL (0.
|
2892
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "books" ("created_at", "id", "name", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", Mon, 28 Apr 2014 15:44:15 UTC +00:00], ["id", 1], ["name", "The White Rose of Wales"], ["updated_at", Mon, 28 Apr 2014 15:44:15 UTC +00:00]]
|
501
2893
|
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
502
2894
|
[1m[36m (0.3ms)[0m [1mrollback transaction[0m
|
503
2895
|
[1m[35m (0.0ms)[0m begin transaction
|
2896
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
2897
|
+
[1m[35m (0.0ms)[0m begin transaction
|
2898
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
2899
|
+
[1m[35m (0.0ms)[0m begin transaction
|
504
2900
|
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
505
|
-
[1m[35mSQL (0.
|
2901
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Mon, 28 Apr 2014 15:44:15 UTC +00:00], ["name", "City 2: Electric Boogaloo"], ["updated_at", Mon, 28 Apr 2014 15:44:15 UTC +00:00]]
|
506
2902
|
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
507
2903
|
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
508
|
-
[1m[36mSQL (0.
|
2904
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Mon, 28 Apr 2014 15:44:15 UTC +00:00], ["name", "The Wolf from Mars"], ["updated_at", Mon, 28 Apr 2014 15:44:15 UTC +00:00]]
|
509
2905
|
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
510
|
-
[1m[36m (0.
|
511
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Mon, 28 Apr 2014
|
2906
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
2907
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Mon, 28 Apr 2014 15:44:15 UTC +00:00], ["name", "Blue Ninja"], ["updated_at", Mon, 28 Apr 2014 15:44:15 UTC +00:00]]
|
512
2908
|
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
513
2909
|
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
514
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Mon, 28 Apr 2014
|
2910
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Mon, 28 Apr 2014 15:44:15 UTC +00:00], ["name", "I Married a Wizard"], ["updated_at", Mon, 28 Apr 2014 15:44:15 UTC +00:00]]
|
515
2911
|
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
516
2912
|
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
517
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Mon, 28 Apr 2014
|
2913
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Mon, 28 Apr 2014 15:44:15 UTC +00:00], ["name", "The Fly Who Fell to Earth"], ["updated_at", Mon, 28 Apr 2014 15:44:15 UTC +00:00]]
|
518
2914
|
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
519
|
-
[1m[35m (0.
|
2915
|
+
[1m[35m (0.0ms)[0m SELECT COUNT(*) FROM "books"
|
520
2916
|
Processing by BooksController#create as HTML
|
521
2917
|
Parameters: {"book"=>{"name"=>"newly-created-book"}}
|
522
2918
|
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
523
|
-
[1m[35mSQL (0.2ms)[0m INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Mon, 28 Apr 2014
|
2919
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Mon, 28 Apr 2014 15:44:15 UTC +00:00], ["name", "newly-created-book"], ["updated_at", Mon, 28 Apr 2014 15:44:15 UTC +00:00]]
|
524
2920
|
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
525
2921
|
Redirected to http://test.host/books
|
526
|
-
Completed 302 Found in
|
527
|
-
[1m[35m (0.
|
528
|
-
[1m[36m (0.
|
2922
|
+
Completed 302 Found in 1.8ms (ActiveRecord: 0.2ms)
|
2923
|
+
[1m[35m (0.0ms)[0m SELECT COUNT(*) FROM "books"
|
2924
|
+
[1m[36m (0.3ms)[0m [1mrollback transaction[0m
|
529
2925
|
[1m[35m (0.0ms)[0m begin transaction
|
530
2926
|
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
531
|
-
[1m[35mSQL (0.3ms)[0m INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Mon, 28 Apr 2014
|
2927
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Mon, 28 Apr 2014 15:44:15 UTC +00:00], ["name", "The Diaries from Hell"], ["updated_at", Mon, 28 Apr 2014 15:44:15 UTC +00:00]]
|
532
2928
|
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
533
2929
|
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
534
|
-
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Mon, 28 Apr 2014
|
2930
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Mon, 28 Apr 2014 15:44:15 UTC +00:00], ["name", "The Action Diaries from Hell"], ["updated_at", Mon, 28 Apr 2014 15:44:15 UTC +00:00]]
|
535
2931
|
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
536
2932
|
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
537
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Mon, 28 Apr 2014
|
2933
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Mon, 28 Apr 2014 15:44:15 UTC +00:00], ["name", "Bloody Wizard"], ["updated_at", Mon, 28 Apr 2014 15:44:15 UTC +00:00]]
|
538
2934
|
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
539
2935
|
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
540
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Mon, 28 Apr 2014
|
2936
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Mon, 28 Apr 2014 15:44:15 UTC +00:00], ["name", "Champagne Tears"], ["updated_at", Mon, 28 Apr 2014 15:44:15 UTC +00:00]]
|
541
2937
|
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
542
2938
|
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
543
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Mon, 28 Apr 2014
|
2939
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Mon, 28 Apr 2014 15:44:15 UTC +00:00], ["name", "The Danger Wolf Who Fell to Earth"], ["updated_at", Mon, 28 Apr 2014 15:44:15 UTC +00:00]]
|
544
2940
|
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
545
2941
|
Processing by BooksController#index as HTML
|
546
2942
|
[1m[35mBook Load (0.1ms)[0m SELECT "books".* FROM "books"
|
547
|
-
Completed 200 OK in
|
548
|
-
[1m[36m (0.
|
2943
|
+
Completed 200 OK in 9.0ms (Views: 8.0ms | ActiveRecord: 0.1ms)
|
2944
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
549
2945
|
[1m[35m (0.0ms)[0m begin transaction
|
550
2946
|
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
551
|
-
[1m[35mSQL (0.3ms)[0m INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Mon, 28 Apr 2014
|
2947
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Mon, 28 Apr 2014 15:44:15 UTC +00:00], ["name", "The Wolf with a Thousand Faces"], ["updated_at", Mon, 28 Apr 2014 15:44:15 UTC +00:00]]
|
552
2948
|
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
553
2949
|
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
554
|
-
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Mon, 28 Apr 2014
|
2950
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Mon, 28 Apr 2014 15:44:15 UTC +00:00], ["name", "The Witch from Hell"], ["updated_at", Mon, 28 Apr 2014 15:44:15 UTC +00:00]]
|
555
2951
|
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
556
2952
|
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
557
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Mon, 28 Apr 2014
|
2953
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Mon, 28 Apr 2014 15:44:15 UTC +00:00], ["name", "The Monster That Came to Dinner"], ["updated_at", Mon, 28 Apr 2014 15:44:15 UTC +00:00]]
|
558
2954
|
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
559
2955
|
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
560
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Mon, 28 Apr 2014
|
2956
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Mon, 28 Apr 2014 15:44:15 UTC +00:00], ["name", "Planet of the Blonde Witch"], ["updated_at", Mon, 28 Apr 2014 15:44:15 UTC +00:00]]
|
561
2957
|
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
562
2958
|
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
563
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Mon, 28 Apr 2014
|
2959
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Mon, 28 Apr 2014 15:44:15 UTC +00:00], ["name", "I am Champagne Witch"], ["updated_at", Mon, 28 Apr 2014 15:44:15 UTC +00:00]]
|
564
2960
|
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
565
2961
|
Processing by BooksController#show as HTML
|
566
2962
|
Parameters: {"id"=>"1"}
|
567
2963
|
[1m[35mBook Load (0.1ms)[0m SELECT "books".* FROM "books" WHERE "books"."id" = ? LIMIT 1 [["id", "1"]]
|
568
|
-
Completed 200 OK in
|
2964
|
+
Completed 200 OK in 3.8ms (Views: 2.1ms | ActiveRecord: 0.1ms)
|
569
2965
|
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
570
2966
|
[1m[35m (0.0ms)[0m begin transaction
|
571
2967
|
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
572
|
-
[1m[35mSQL (0.3ms)[0m INSERT INTO "books" ("created_at", "id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Mon, 28 Apr 2014
|
2968
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "books" ("created_at", "id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Mon, 28 Apr 2014 15:44:15 UTC +00:00], ["id", 1], ["name", "Christmas on Brett Mountains"], ["updated_at", Mon, 28 Apr 2014 15:44:15 UTC +00:00]]
|
573
2969
|
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
574
|
-
Started GET "/books/1" for 127.0.0.1 at 2014-04-
|
2970
|
+
Started GET "/books/1" for 127.0.0.1 at 2014-04-28 11:44:15 -0400
|
575
2971
|
Processing by BooksController#show as HTML
|
576
2972
|
Parameters: {"id"=>"1"}
|
577
2973
|
[1m[35mBook Load (0.0ms)[0m SELECT "books".* FROM "books" WHERE "books"."id" = ? LIMIT 1 [["id", "1"]]
|
578
|
-
Completed 200 OK in 1.
|
2974
|
+
Completed 200 OK in 1.6ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
579
2975
|
[1m[36m (0.3ms)[0m [1mrollback transaction[0m
|
580
|
-
[1m[35m (0.
|
581
|
-
Started GET "/books" for 127.0.0.1 at 2014-04-
|
2976
|
+
[1m[35m (0.0ms)[0m begin transaction
|
2977
|
+
Started GET "/books" for 127.0.0.1 at 2014-04-28 11:44:15 -0400
|
582
2978
|
Processing by BooksController#index as HTML
|
583
|
-
[1m[36mBook Load (0.
|
584
|
-
Completed 200 OK in 1.
|
2979
|
+
[1m[36mBook Load (0.1ms)[0m [1mSELECT "books".* FROM "books" [0m
|
2980
|
+
Completed 200 OK in 1.3ms (Views: 0.8ms | ActiveRecord: 0.1ms)
|
585
2981
|
[1m[35m (0.0ms)[0m rollback transaction
|
586
2982
|
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
587
2983
|
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
588
|
-
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "books" ("created_at", "id", "name", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", Mon, 28 Apr 2014
|
2984
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "books" ("created_at", "id", "name", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", Mon, 28 Apr 2014 15:44:15 UTC +00:00], ["id", 1], ["name", "War of the Monster"], ["updated_at", Mon, 28 Apr 2014 15:44:15 UTC +00:00]]
|
589
2985
|
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
590
|
-
Started DELETE "/books/1" for 127.0.0.1 at 2014-04-
|
2986
|
+
Started DELETE "/books/1" for 127.0.0.1 at 2014-04-28 11:44:15 -0400
|
591
2987
|
Processing by BooksController#destroy as HTML
|
592
2988
|
Parameters: {"id"=>"1"}
|
593
2989
|
[1m[36mBook Load (0.0ms)[0m [1mSELECT "books".* FROM "books" WHERE "books"."id" = ? LIMIT 1[0m [["id", "1"]]
|
@@ -595,16 +2991,16 @@ Processing by BooksController#destroy as HTML
|
|
595
2991
|
[1m[36mSQL (0.3ms)[0m [1mDELETE FROM "books" WHERE "books"."id" = ?[0m [["id", 1]]
|
596
2992
|
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
597
2993
|
Redirected to http://www.example.com/books
|
598
|
-
Completed 302 Found in
|
2994
|
+
Completed 302 Found in 1.9ms (ActiveRecord: 0.4ms)
|
599
2995
|
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "books" WHERE "books"."id" = 1[0m
|
600
2996
|
[1m[35m (0.4ms)[0m rollback transaction
|
601
2997
|
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
602
2998
|
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "books"
|
603
|
-
Started POST "/books" for 127.0.0.1 at 2014-04-
|
2999
|
+
Started POST "/books" for 127.0.0.1 at 2014-04-28 11:44:15 -0400
|
604
3000
|
Processing by BooksController#create as HTML
|
605
3001
|
Parameters: {"book"=>{"name"=>"some new book"}}
|
606
3002
|
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
607
|
-
[1m[35mSQL (0.3ms)[0m INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Mon, 28 Apr 2014
|
3003
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Mon, 28 Apr 2014 15:44:15 UTC +00:00], ["name", "some new book"], ["updated_at", Mon, 28 Apr 2014 15:44:15 UTC +00:00]]
|
608
3004
|
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
609
3005
|
Redirected to http://www.example.com/books
|
610
3006
|
Completed 302 Found in 1.6ms (ActiveRecord: 0.3ms)
|
@@ -612,19 +3008,19 @@ Completed 302 Found in 1.6ms (ActiveRecord: 0.3ms)
|
|
612
3008
|
[1m[36m (0.3ms)[0m [1mrollback transaction[0m
|
613
3009
|
[1m[35m (0.0ms)[0m begin transaction
|
614
3010
|
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
615
|
-
[1m[35mSQL (0.3ms)[0m INSERT INTO "books" ("created_at", "id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Mon, 28 Apr 2014
|
3011
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "books" ("created_at", "id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Mon, 28 Apr 2014 15:44:15 UTC +00:00], ["id", 1], ["name", "some new book"], ["updated_at", Mon, 28 Apr 2014 15:44:15 UTC +00:00]]
|
616
3012
|
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
617
|
-
Started PUT "/books/1" for 127.0.0.1 at 2014-04-
|
3013
|
+
Started PUT "/books/1" for 127.0.0.1 at 2014-04-28 11:44:15 -0400
|
618
3014
|
Processing by BooksController#update as HTML
|
619
3015
|
Parameters: {"id"=>"1", "book"=>{"name"=>"changed book"}}
|
620
3016
|
[1m[35mBook Load (0.0ms)[0m SELECT "books".* FROM "books" WHERE "books"."id" = ? LIMIT 1 [["id", "1"]]
|
621
3017
|
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
622
|
-
[1m[35m (0.3ms)[0m UPDATE "books" SET "name" = 'changed book', "updated_at" = '2014-04-28
|
3018
|
+
[1m[35m (0.3ms)[0m UPDATE "books" SET "name" = 'changed book', "updated_at" = '2014-04-28 15:44:15.846453' WHERE "books"."id" = 1
|
623
3019
|
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
624
3020
|
Redirected to http://www.example.com/books/1
|
625
|
-
Completed 302 Found in
|
3021
|
+
Completed 302 Found in 2.9ms (ActiveRecord: 0.4ms)
|
626
3022
|
[1m[35mBook Load (0.0ms)[0m SELECT "books".* FROM "books" WHERE "books"."id" = ? LIMIT 1 [["id", 1]]
|
627
|
-
[1m[36m (0.
|
3023
|
+
[1m[36m (0.3ms)[0m [1mrollback transaction[0m
|
628
3024
|
[1m[35m (0.0ms)[0m begin transaction
|
629
3025
|
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
630
3026
|
[1m[35m (0.0ms)[0m begin transaction
|
@@ -634,23 +3030,23 @@ Completed 302 Found in 3.0ms (ActiveRecord: 0.4ms)
|
|
634
3030
|
[1m[35m (0.0ms)[0m begin transaction
|
635
3031
|
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
636
3032
|
[1m[35m (0.0ms)[0m begin transaction
|
637
|
-
[1m[36m (0.
|
3033
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
638
3034
|
[1m[35m (0.0ms)[0m begin transaction
|
639
3035
|
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
640
3036
|
[1m[35m (0.0ms)[0m begin transaction
|
641
|
-
[1m[36m (0.
|
3037
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
642
3038
|
[1m[35m (0.0ms)[0m begin transaction
|
643
|
-
[1m[36m (0.
|
3039
|
+
[1m[36m (0.1ms)[0m [1mcommit transaction[0m
|
3040
|
+
[1m[35m (0.0ms)[0m begin transaction
|
3041
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
644
3042
|
[1m[35m (0.0ms)[0m begin transaction
|
645
|
-
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
646
|
-
[1m[35m (0.1ms)[0m begin transaction
|
647
3043
|
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
648
3044
|
[1m[35m (0.0ms)[0m begin transaction
|
649
3045
|
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
650
3046
|
[1m[35m (0.0ms)[0m begin transaction
|
651
3047
|
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
652
3048
|
[1m[35m (0.0ms)[0m begin transaction
|
653
|
-
[1m[36m (0.
|
3049
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
654
3050
|
[1m[35m (0.0ms)[0m begin transaction
|
655
3051
|
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
656
3052
|
[1m[35m (0.0ms)[0m begin transaction
|
@@ -699,173 +3095,173 @@ Completed 302 Found in 3.0ms (ActiveRecord: 0.4ms)
|
|
699
3095
|
[1m[35m (0.1ms)[0m begin transaction
|
700
3096
|
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
701
3097
|
[1m[35m (0.0ms)[0m begin transaction
|
702
|
-
[1m[
|
703
|
-
[1m[35m (0.
|
704
|
-
[1m[36m (0.0ms)[0m [
|
705
|
-
[1m[35m (0.0ms)[0m
|
706
|
-
[1m[
|
707
|
-
[1m[35m (0.
|
3098
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
3099
|
+
[1m[35m (0.0ms)[0m begin transaction
|
3100
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
3101
|
+
[1m[35m (0.0ms)[0m begin transaction
|
3102
|
+
[1m[36mSQL (2.4ms)[0m [1mINSERT INTO "books" ("created_at", "id", "name", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", Mon, 28 Apr 2014 15:44:18 UTC +00:00], ["id", 1], ["name", "Blue Thief: The Barton Schinner Story"], ["updated_at", Mon, 28 Apr 2014 15:44:18 UTC +00:00]]
|
3103
|
+
[1m[35m (0.3ms)[0m rollback transaction
|
708
3104
|
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
709
3105
|
[1m[35m (0.0ms)[0m commit transaction
|
710
3106
|
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
711
|
-
[1m[35mSQL (0.3ms)[0m INSERT INTO "books" ("created_at", "id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Mon, 28 Apr 2014
|
3107
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "books" ("created_at", "id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Mon, 28 Apr 2014 15:44:18 UTC +00:00], ["id", 1], ["name", "Hard Boiled Wolf"], ["updated_at", Mon, 28 Apr 2014 15:44:18 UTC +00:00]]
|
712
3108
|
[1m[36m (0.3ms)[0m [1mrollback transaction[0m
|
713
3109
|
[1m[35m (0.0ms)[0m begin transaction
|
714
3110
|
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
715
3111
|
[1m[35m (0.0ms)[0m begin transaction
|
716
|
-
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "books" ("created_at", "id", "name", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", Mon, 28 Apr 2014
|
3112
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "books" ("created_at", "id", "name", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", Mon, 28 Apr 2014 15:44:18 UTC +00:00], ["id", 1], ["name", "When Dejon Met Cicero"], ["updated_at", Mon, 28 Apr 2014 15:44:18 UTC +00:00]]
|
717
3113
|
[1m[35m (0.3ms)[0m rollback transaction
|
718
3114
|
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
719
3115
|
[1m[35m (0.0ms)[0m commit transaction
|
720
3116
|
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
721
|
-
[1m[35mSQL (0.3ms)[0m INSERT INTO "books" ("created_at", "id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Mon, 28 Apr 2014
|
722
|
-
[1m[36m (0.
|
3117
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "books" ("created_at", "id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Mon, 28 Apr 2014 15:44:18 UTC +00:00], ["id", 1], ["name", "Christmas on Windler Plaza"], ["updated_at", Mon, 28 Apr 2014 15:44:18 UTC +00:00]]
|
3118
|
+
[1m[36m (0.3ms)[0m [1mrollback transaction[0m
|
723
3119
|
[1m[35m (0.0ms)[0m begin transaction
|
724
3120
|
--------------------------------
|
725
3121
|
BooksControllerTest: test_create
|
726
3122
|
--------------------------------
|
727
3123
|
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
728
|
-
[1m[35mSQL (0.4ms)[0m INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Mon, 28 Apr 2014
|
3124
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Mon, 28 Apr 2014 15:44:18 UTC +00:00], ["name", "Death Hills"], ["updated_at", Mon, 28 Apr 2014 15:44:18 UTC +00:00]]
|
729
3125
|
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
730
3126
|
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
731
|
-
[1m[36mSQL (0.
|
3127
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Mon, 28 Apr 2014 15:44:18 UTC +00:00], ["name", "Fake Tentacle"], ["updated_at", Mon, 28 Apr 2014 15:44:18 UTC +00:00]]
|
732
3128
|
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
733
|
-
[1m[36m (0.
|
734
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Mon, 28 Apr 2014
|
3129
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
3130
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Mon, 28 Apr 2014 15:44:18 UTC +00:00], ["name", "Legend of Clash"], ["updated_at", Mon, 28 Apr 2014 15:44:18 UTC +00:00]]
|
735
3131
|
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
736
3132
|
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
737
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Mon, 28 Apr 2014
|
3133
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Mon, 28 Apr 2014 15:44:18 UTC +00:00], ["name", "Danger Man"], ["updated_at", Mon, 28 Apr 2014 15:44:18 UTC +00:00]]
|
738
3134
|
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
739
3135
|
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
740
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Mon, 28 Apr 2014
|
3136
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Mon, 28 Apr 2014 15:44:18 UTC +00:00], ["name", "Danger Brains"], ["updated_at", Mon, 28 Apr 2014 15:44:18 UTC +00:00]]
|
741
3137
|
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
742
3138
|
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "books"
|
743
3139
|
Processing by BooksController#create as HTML
|
744
3140
|
Parameters: {"book"=>{"name"=>"newly-created-book"}}
|
745
3141
|
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
746
|
-
[1m[35mSQL (0.
|
3142
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Mon, 28 Apr 2014 15:44:18 UTC +00:00], ["name", "newly-created-book"], ["updated_at", Mon, 28 Apr 2014 15:44:18 UTC +00:00]]
|
747
3143
|
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
748
3144
|
Redirected to http://test.host/books
|
749
|
-
Completed 302 Found in 2ms (ActiveRecord: 0.
|
750
|
-
[1m[35m (0.
|
3145
|
+
Completed 302 Found in 2ms (ActiveRecord: 0.2ms)
|
3146
|
+
[1m[35m (0.0ms)[0m SELECT COUNT(*) FROM "books"
|
751
3147
|
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
752
|
-
[1m[35m (0.
|
3148
|
+
[1m[35m (0.1ms)[0m begin transaction
|
753
3149
|
-------------------------------
|
754
3150
|
BooksControllerTest: test_index
|
755
3151
|
-------------------------------
|
756
3152
|
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
757
|
-
[1m[35mSQL (0.3ms)[0m INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Mon, 28 Apr 2014
|
3153
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Mon, 28 Apr 2014 15:44:18 UTC +00:00], ["name", "When Cleta Met Augustine"], ["updated_at", Mon, 28 Apr 2014 15:44:18 UTC +00:00]]
|
758
3154
|
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
759
3155
|
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
760
|
-
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Mon, 28 Apr 2014
|
3156
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Mon, 28 Apr 2014 15:44:18 UTC +00:00], ["name", "American World"], ["updated_at", Mon, 28 Apr 2014 15:44:18 UTC +00:00]]
|
761
3157
|
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
762
3158
|
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
763
|
-
[1m[35mSQL (0.
|
3159
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Mon, 28 Apr 2014 15:44:18 UTC +00:00], ["name", "Je Vous Presente, Davion"], ["updated_at", Mon, 28 Apr 2014 15:44:18 UTC +00:00]]
|
764
3160
|
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
765
3161
|
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
766
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Mon, 28 Apr 2014
|
3162
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Mon, 28 Apr 2014 15:44:18 UTC +00:00], ["name", "Curse of the Identity"], ["updated_at", Mon, 28 Apr 2014 15:44:18 UTC +00:00]]
|
767
3163
|
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
768
3164
|
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
769
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Mon, 28 Apr 2014
|
3165
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Mon, 28 Apr 2014 15:44:18 UTC +00:00], ["name", "When Kurtis Met Santina"], ["updated_at", Mon, 28 Apr 2014 15:44:18 UTC +00:00]]
|
770
3166
|
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
771
3167
|
Processing by BooksController#index as HTML
|
772
|
-
Completed 200 OK in 15ms (Views:
|
3168
|
+
Completed 200 OK in 15ms (Views: 15.1ms | ActiveRecord: 0.0ms)
|
773
3169
|
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "books"
|
774
|
-
[1m[36m (0.
|
3170
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
775
3171
|
[1m[35m (0.1ms)[0m begin transaction
|
776
3172
|
------------------------------
|
777
3173
|
BooksControllerTest: test_show
|
778
3174
|
------------------------------
|
779
3175
|
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
780
|
-
[1m[35mSQL (0.3ms)[0m INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Mon, 28 Apr 2014
|
3176
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Mon, 28 Apr 2014 15:44:18 UTC +00:00], ["name", "The Flying Cat from the Black Lagoon"], ["updated_at", Mon, 28 Apr 2014 15:44:18 UTC +00:00]]
|
781
3177
|
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
782
3178
|
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
783
|
-
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Mon, 28 Apr 2014
|
3179
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Mon, 28 Apr 2014 15:44:18 UTC +00:00], ["name", "Danger Jungle"], ["updated_at", Mon, 28 Apr 2014 15:44:18 UTC +00:00]]
|
784
3180
|
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
785
3181
|
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
786
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Mon, 28 Apr 2014
|
787
|
-
[1m[36m (0.
|
3182
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Mon, 28 Apr 2014 15:44:18 UTC +00:00], ["name", "The Death Man from Mars"], ["updated_at", Mon, 28 Apr 2014 15:44:18 UTC +00:00]]
|
3183
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
788
3184
|
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
789
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Mon, 28 Apr 2014
|
3185
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Mon, 28 Apr 2014 15:44:18 UTC +00:00], ["name", "The Blonde Ninja from Across the Ocean"], ["updated_at", Mon, 28 Apr 2014 15:44:18 UTC +00:00]]
|
790
3186
|
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
791
3187
|
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
792
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Mon, 28 Apr 2014
|
3188
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Mon, 28 Apr 2014 15:44:18 UTC +00:00], ["name", "The Clash from Outer Space"], ["updated_at", Mon, 28 Apr 2014 15:44:18 UTC +00:00]]
|
793
3189
|
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
794
3190
|
Processing by BooksController#show as HTML
|
795
3191
|
Parameters: {"id"=>"1"}
|
796
3192
|
[1m[35mBook Load (0.1ms)[0m SELECT "books".* FROM "books" WHERE "books"."id" = ? LIMIT 1 [["id", "1"]]
|
797
|
-
Completed 200 OK in 3ms (Views: 1.
|
3193
|
+
Completed 200 OK in 3ms (Views: 1.3ms | ActiveRecord: 0.1ms)
|
798
3194
|
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
799
3195
|
[1m[35m (0.0ms)[0m begin transaction
|
800
3196
|
-----------------------------------------------------------------------
|
801
3197
|
FastlyHeadersTest: test_/books/:id_show_page_should_have_fastly_headers
|
802
3198
|
-----------------------------------------------------------------------
|
803
|
-
[1m[36m (0.
|
804
|
-
[1m[35mSQL (0.3ms)[0m INSERT INTO "books" ("created_at", "id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Mon, 28 Apr 2014
|
3199
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
3200
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "books" ("created_at", "id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Mon, 28 Apr 2014 15:44:18 UTC +00:00], ["id", 1], ["name", "Action Ninja"], ["updated_at", Mon, 28 Apr 2014 15:44:18 UTC +00:00]]
|
805
3201
|
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
806
|
-
Started GET "/books/1" for 127.0.0.1 at 2014-04-
|
3202
|
+
Started GET "/books/1" for 127.0.0.1 at 2014-04-28 11:44:18 -0400
|
807
3203
|
Processing by BooksController#show as HTML
|
808
3204
|
Parameters: {"id"=>"1"}
|
809
3205
|
[1m[35mBook Load (0.1ms)[0m SELECT "books".* FROM "books" WHERE "books"."id" = ? LIMIT 1 [["id", "1"]]
|
810
|
-
Completed 200 OK in 2ms (Views: 0.
|
811
|
-
[1m[36m (0.
|
812
|
-
[1m[35m (0.
|
3206
|
+
Completed 200 OK in 2ms (Views: 0.7ms | ActiveRecord: 0.1ms)
|
3207
|
+
[1m[36m (0.3ms)[0m [1mrollback transaction[0m
|
3208
|
+
[1m[35m (0.1ms)[0m begin transaction
|
813
3209
|
--------------------------------------------------------------------
|
814
3210
|
FastlyHeadersTest: test_/books_index_page_should_have_fastly_headers
|
815
3211
|
--------------------------------------------------------------------
|
816
|
-
Started GET "/books" for 127.0.0.1 at 2014-04-
|
3212
|
+
Started GET "/books" for 127.0.0.1 at 2014-04-28 11:44:18 -0400
|
817
3213
|
Processing by BooksController#index as HTML
|
818
|
-
Completed 200 OK in 1ms (Views: 0.
|
819
|
-
[1m[36m (0.
|
3214
|
+
Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
|
3215
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
820
3216
|
[1m[35m (0.0ms)[0m begin transaction
|
821
3217
|
----------------------------------------------------------------------------------------------
|
822
3218
|
FastlyHeadersTest: test_DELETE_/books/:id_should_not_have_fastly_headers/_fastly_header_values
|
823
3219
|
----------------------------------------------------------------------------------------------
|
824
3220
|
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
825
|
-
[1m[35mSQL (0.3ms)[0m INSERT INTO "books" ("created_at", "id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Mon, 28 Apr 2014
|
826
|
-
[1m[36m (0.
|
827
|
-
Started DELETE "/books/1" for 127.0.0.1 at 2014-04-
|
3221
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "books" ("created_at", "id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Mon, 28 Apr 2014 15:44:18 UTC +00:00], ["id", 1], ["name", "Fly 2: Electric Boogaloo"], ["updated_at", Mon, 28 Apr 2014 15:44:18 UTC +00:00]]
|
3222
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
3223
|
+
Started DELETE "/books/1" for 127.0.0.1 at 2014-04-28 11:44:18 -0400
|
828
3224
|
Processing by BooksController#destroy as HTML
|
829
3225
|
Parameters: {"id"=>"1"}
|
830
|
-
[1m[35mBook Load (0.
|
3226
|
+
[1m[35mBook Load (0.1ms)[0m SELECT "books".* FROM "books" WHERE "books"."id" = ? LIMIT 1 [["id", "1"]]
|
831
3227
|
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
832
3228
|
[1m[35mSQL (0.3ms)[0m DELETE FROM "books" WHERE "books"."id" = ? [["id", 1]]
|
833
3229
|
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
834
3230
|
Redirected to http://www.example.com/books
|
835
|
-
Completed 302 Found in 2ms (ActiveRecord: 0.
|
3231
|
+
Completed 302 Found in 2ms (ActiveRecord: 0.5ms)
|
836
3232
|
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "books" WHERE "books"."id" = 1
|
837
|
-
[1m[36m (0.
|
838
|
-
[1m[35m (0.
|
3233
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
3234
|
+
[1m[35m (0.1ms)[0m begin transaction
|
839
3235
|
----------------------------------------------------------------------------------------
|
840
3236
|
FastlyHeadersTest: test_POST_/books_should_not_have_fastly_headers/_fastly_header_values
|
841
3237
|
----------------------------------------------------------------------------------------
|
842
3238
|
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "books"[0m
|
843
|
-
Started POST "/books" for 127.0.0.1 at 2014-04-
|
3239
|
+
Started POST "/books" for 127.0.0.1 at 2014-04-28 11:44:18 -0400
|
844
3240
|
Processing by BooksController#create as HTML
|
845
3241
|
Parameters: {"book"=>{"name"=>"some new book"}}
|
846
|
-
[1m[35m (0.
|
847
|
-
[1m[36mSQL (0.
|
3242
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
3243
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Mon, 28 Apr 2014 15:44:18 UTC +00:00], ["name", "some new book"], ["updated_at", Mon, 28 Apr 2014 15:44:18 UTC +00:00]]
|
848
3244
|
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
849
3245
|
Redirected to http://www.example.com/books
|
850
|
-
Completed 302 Found in 2ms (ActiveRecord: 0.
|
3246
|
+
Completed 302 Found in 2ms (ActiveRecord: 0.3ms)
|
851
3247
|
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "books"[0m
|
852
3248
|
[1m[35m (0.3ms)[0m rollback transaction
|
853
|
-
[1m[36m (0.
|
3249
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
854
3250
|
-------------------------------------------------------------------------------------------
|
855
3251
|
FastlyHeadersTest: test_PUT_/books/:id_should_not_have_fastly_headers/_fastly_header_values
|
856
3252
|
-------------------------------------------------------------------------------------------
|
857
|
-
[1m[35m (0.
|
858
|
-
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "books" ("created_at", "id", "name", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", Mon, 28 Apr 2014
|
3253
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
3254
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "books" ("created_at", "id", "name", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", Mon, 28 Apr 2014 15:44:18 UTC +00:00], ["id", 1], ["name", "some new book"], ["updated_at", Mon, 28 Apr 2014 15:44:18 UTC +00:00]]
|
859
3255
|
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
860
|
-
Started PUT "/books/1" for 127.0.0.1 at 2014-04-
|
3256
|
+
Started PUT "/books/1" for 127.0.0.1 at 2014-04-28 11:44:18 -0400
|
861
3257
|
Processing by BooksController#update as HTML
|
862
3258
|
Parameters: {"id"=>"1", "book"=>{"name"=>"changed book"}}
|
863
3259
|
[1m[36mBook Load (0.0ms)[0m [1mSELECT "books".* FROM "books" WHERE "books"."id" = ? LIMIT 1[0m [["id", "1"]]
|
864
3260
|
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
865
|
-
[1m[36mSQL (0.4ms)[0m [1mUPDATE "books" SET "name" = ?, "updated_at" = ? WHERE "books"."id" = 1[0m [["name", "changed book"], ["updated_at", Mon, 28 Apr 2014
|
3261
|
+
[1m[36mSQL (0.4ms)[0m [1mUPDATE "books" SET "name" = ?, "updated_at" = ? WHERE "books"."id" = 1[0m [["name", "changed book"], ["updated_at", Mon, 28 Apr 2014 15:44:18 UTC +00:00]]
|
866
3262
|
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
867
3263
|
Redirected to http://www.example.com/books/1
|
868
|
-
Completed 302 Found in 3ms (ActiveRecord: 0.
|
3264
|
+
Completed 302 Found in 3ms (ActiveRecord: 0.5ms)
|
869
3265
|
[1m[36mBook Load (0.0ms)[0m [1mSELECT "books".* FROM "books" WHERE "books"."id" = ? LIMIT 1[0m [["id", 1]]
|
870
3266
|
[1m[35m (0.3ms)[0m rollback transaction
|
871
3267
|
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
@@ -876,7 +3272,7 @@ Completed 302 Found in 3ms (ActiveRecord: 0.6ms)
|
|
876
3272
|
-------------------------------------------------------------------------------------------------
|
877
3273
|
FastlyRails::CacheControlHeadersTest: test_sets_cache_control_headers_on_actioncontroller_request
|
878
3274
|
-------------------------------------------------------------------------------------------------
|
879
|
-
[1m[35m (0.
|
3275
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
880
3276
|
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
881
3277
|
[1m[35m (0.0ms)[0m commit transaction
|
882
3278
|
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
@@ -884,12 +3280,12 @@ FastlyRails::CacheControlHeadersTest: test_sets_cache_control_headers_on_actionc
|
|
884
3280
|
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
885
3281
|
[1m[35m (0.0ms)[0m commit transaction
|
886
3282
|
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
887
|
-
[1m[35m (0.
|
3283
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
888
3284
|
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
889
3285
|
[1m[35m (0.0ms)[0m commit transaction
|
890
3286
|
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
891
|
-
[1m[35m (0.
|
892
|
-
[1m[36m (0.
|
3287
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3288
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
893
3289
|
[1m[35m (0.0ms)[0m commit transaction
|
894
3290
|
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
895
3291
|
[1m[35m (0.0ms)[0m rollback transaction
|
@@ -901,7 +3297,7 @@ FastlyRails::CacheControlHeadersTest: test_sets_cache_control_headers_on_actionc
|
|
901
3297
|
[1m[35m (0.0ms)[0m commit transaction
|
902
3298
|
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
903
3299
|
[1m[35m (0.0ms)[0m rollback transaction
|
904
|
-
[1m[36m (0.
|
3300
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
905
3301
|
[1m[35m (0.0ms)[0m commit transaction
|
906
3302
|
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
907
3303
|
[1m[35m (0.0ms)[0m rollback transaction
|
@@ -911,14 +3307,14 @@ FastlyRails::CacheControlHeadersTest: test_sets_cache_control_headers_on_actionc
|
|
911
3307
|
[1m[35m (0.0ms)[0m rollback transaction
|
912
3308
|
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
913
3309
|
[1m[35m (0.0ms)[0m commit transaction
|
914
|
-
[1m[36m (0.
|
3310
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
915
3311
|
[1m[35m (0.0ms)[0m rollback transaction
|
916
3312
|
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
917
3313
|
[1m[35m (0.0ms)[0m commit transaction
|
918
3314
|
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
919
3315
|
[1m[35m (0.0ms)[0m rollback transaction
|
920
3316
|
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
921
|
-
[1m[35m (0.
|
3317
|
+
[1m[35m (0.0ms)[0m commit transaction
|
922
3318
|
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
923
3319
|
[1m[35m (0.0ms)[0m rollback transaction
|
924
3320
|
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
@@ -928,7 +3324,7 @@ FastlyRails::CacheControlHeadersTest: test_sets_cache_control_headers_on_actionc
|
|
928
3324
|
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
929
3325
|
[1m[35m (0.0ms)[0m commit transaction
|
930
3326
|
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
931
|
-
[1m[35m (0.
|
3327
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
932
3328
|
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
933
3329
|
[1m[35m (0.0ms)[0m commit transaction
|
934
3330
|
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
@@ -936,7 +3332,7 @@ FastlyRails::CacheControlHeadersTest: test_sets_cache_control_headers_on_actionc
|
|
936
3332
|
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
937
3333
|
[1m[35m (0.0ms)[0m commit transaction
|
938
3334
|
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
939
|
-
[1m[35m (0.
|
3335
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
940
3336
|
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
941
3337
|
[1m[35m (0.0ms)[0m commit transaction
|
942
3338
|
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
@@ -951,154 +3347,154 @@ Migrating to CreateBooks (20140407202136)
|
|
951
3347
|
[1m[35m (0.0ms)[0m begin transaction
|
952
3348
|
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
953
3349
|
[1m[35m (0.0ms)[0m begin transaction
|
954
|
-
[1m[36m (0.
|
955
|
-
[1m[35mSQL (
|
3350
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
3351
|
+
[1m[35mSQL (4.1ms)[0m INSERT INTO "books" ("created_at", "id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Sat, 03 May 2014 17:43:26 UTC +00:00], ["id", 1], ["name", "The Wolf That Came to Dinner"], ["updated_at", Sat, 03 May 2014 17:43:26 UTC +00:00]]
|
956
3352
|
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
957
|
-
[1m[35m (
|
3353
|
+
[1m[35m (0.3ms)[0m rollback transaction
|
958
3354
|
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
959
3355
|
[1m[35m (0.0ms)[0m commit transaction
|
960
3356
|
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
961
3357
|
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
962
|
-
[1m[36mSQL (0.
|
3358
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "books" ("created_at", "id", "name", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", Sat, 03 May 2014 17:43:26 UTC +00:00], ["id", 1], ["name", "Death World"], ["updated_at", Sat, 03 May 2014 17:43:26 UTC +00:00]]
|
963
3359
|
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
964
|
-
[1m[36m (0.
|
3360
|
+
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|
965
3361
|
[1m[35m (0.0ms)[0m begin transaction
|
966
3362
|
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
967
3363
|
[1m[35m (0.0ms)[0m begin transaction
|
968
3364
|
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
969
|
-
[1m[35mSQL (0.
|
3365
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "books" ("created_at", "id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Sat, 03 May 2014 17:43:26 UTC +00:00], ["id", 1], ["name", "Day of the Forbidden Hills"], ["updated_at", Sat, 03 May 2014 17:43:26 UTC +00:00]]
|
970
3366
|
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
971
|
-
[1m[35m (0.
|
3367
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
972
3368
|
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
973
3369
|
[1m[35m (0.0ms)[0m commit transaction
|
974
3370
|
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
975
3371
|
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
976
|
-
[1m[36mSQL (0.
|
3372
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "books" ("created_at", "id", "name", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", Sat, 03 May 2014 17:43:26 UTC +00:00], ["id", 1], ["name", "A Fistful of Brain"], ["updated_at", Sat, 03 May 2014 17:43:26 UTC +00:00]]
|
977
3373
|
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
978
3374
|
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|
979
3375
|
[1m[35m (0.0ms)[0m begin transaction
|
980
3376
|
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
981
|
-
[1m[35mSQL (0.
|
3377
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sat, 03 May 2014 17:43:26 UTC +00:00], ["name", "Blonde Friday"], ["updated_at", Sat, 03 May 2014 17:43:26 UTC +00:00]]
|
982
3378
|
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
983
3379
|
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
984
|
-
[1m[36mSQL (0.
|
3380
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Sat, 03 May 2014 17:43:26 UTC +00:00], ["name", "Ninjas 2: Electric Boogaloo"], ["updated_at", Sat, 03 May 2014 17:43:26 UTC +00:00]]
|
985
3381
|
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
986
3382
|
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
987
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at",
|
3383
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sat, 03 May 2014 17:43:26 UTC +00:00], ["name", "A Fistful of Bloody Women"], ["updated_at", Sat, 03 May 2014 17:43:26 UTC +00:00]]
|
988
3384
|
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
989
3385
|
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
990
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at",
|
3386
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Sat, 03 May 2014 17:43:26 UTC +00:00], ["name", "Legend of Demon"], ["updated_at", Sat, 03 May 2014 17:43:26 UTC +00:00]]
|
991
3387
|
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
992
3388
|
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
993
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at",
|
3389
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sat, 03 May 2014 17:43:26 UTC +00:00], ["name", "Champagne Friday"], ["updated_at", Sat, 03 May 2014 17:43:26 UTC +00:00]]
|
994
3390
|
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
995
|
-
[1m[35m (0.
|
3391
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "books"
|
996
3392
|
Processing by BooksController#create as HTML
|
997
3393
|
Parameters: {"book"=>{"name"=>"newly-created-book"}}
|
998
|
-
[1m[36m (0.
|
999
|
-
[1m[35mSQL (0.
|
3394
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
3395
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sat, 03 May 2014 17:43:26 UTC +00:00], ["name", "newly-created-book"], ["updated_at", Sat, 03 May 2014 17:43:26 UTC +00:00]]
|
1000
3396
|
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1001
3397
|
Redirected to http://test.host/books
|
1002
|
-
Completed 302 Found in
|
1003
|
-
[1m[35m (0.
|
1004
|
-
[1m[36m (0.
|
1005
|
-
[1m[35m (0.
|
3398
|
+
Completed 302 Found in 1.8ms (ActiveRecord: 0.2ms)
|
3399
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "books"
|
3400
|
+
[1m[36m (0.3ms)[0m [1mrollback transaction[0m
|
3401
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1006
3402
|
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1007
|
-
[1m[35mSQL (0.
|
3403
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sat, 03 May 2014 17:43:26 UTC +00:00], ["name", "The Mutant That Came to Dinner"], ["updated_at", Sat, 03 May 2014 17:43:26 UTC +00:00]]
|
1008
3404
|
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1009
3405
|
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1010
|
-
[1m[36mSQL (0.
|
3406
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Sat, 03 May 2014 17:43:26 UTC +00:00], ["name", "Ultra Mutant"], ["updated_at", Sat, 03 May 2014 17:43:26 UTC +00:00]]
|
1011
3407
|
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1012
3408
|
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1013
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at",
|
3409
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sat, 03 May 2014 17:43:26 UTC +00:00], ["name", "The Wolves Who Fell to Earth"], ["updated_at", Sat, 03 May 2014 17:43:26 UTC +00:00]]
|
1014
3410
|
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1015
3411
|
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1016
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at",
|
3412
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Sat, 03 May 2014 17:43:26 UTC +00:00], ["name", "The Fly from the Black Lagoon"], ["updated_at", Sat, 03 May 2014 17:43:26 UTC +00:00]]
|
1017
3413
|
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1018
3414
|
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1019
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at",
|
3415
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sat, 03 May 2014 17:43:26 UTC +00:00], ["name", "Je Vous Presente, Velma"], ["updated_at", Sat, 03 May 2014 17:43:26 UTC +00:00]]
|
1020
3416
|
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1021
3417
|
Processing by BooksController#index as HTML
|
1022
3418
|
[1m[35mBook Load (0.1ms)[0m SELECT "books".* FROM "books"
|
1023
|
-
Completed 200 OK in
|
1024
|
-
[1m[36m (0.
|
1025
|
-
[1m[35m (0.
|
3419
|
+
Completed 200 OK in 8.4ms (Views: 7.4ms | ActiveRecord: 0.1ms)
|
3420
|
+
[1m[36m (0.3ms)[0m [1mrollback transaction[0m
|
3421
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1026
3422
|
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1027
|
-
[1m[35mSQL (0.3ms)[0m INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at",
|
3423
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sat, 03 May 2014 17:43:26 UTC +00:00], ["name", "Forbidden Mutant"], ["updated_at", Sat, 03 May 2014 17:43:26 UTC +00:00]]
|
1028
3424
|
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1029
3425
|
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1030
|
-
[1m[36mSQL (0.
|
3426
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Sat, 03 May 2014 17:43:26 UTC +00:00], ["name", "Killer Brain"], ["updated_at", Sat, 03 May 2014 17:43:26 UTC +00:00]]
|
1031
3427
|
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1032
3428
|
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1033
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at",
|
3429
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sat, 03 May 2014 17:43:26 UTC +00:00], ["name", "Dr. Men"], ["updated_at", Sat, 03 May 2014 17:43:26 UTC +00:00]]
|
1034
3430
|
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1035
3431
|
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1036
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at",
|
3432
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Sat, 03 May 2014 17:43:26 UTC +00:00], ["name", "The Monster from Hell"], ["updated_at", Sat, 03 May 2014 17:43:26 UTC +00:00]]
|
1037
3433
|
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1038
3434
|
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1039
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at",
|
3435
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sat, 03 May 2014 17:43:26 UTC +00:00], ["name", "The Tears"], ["updated_at", Sat, 03 May 2014 17:43:26 UTC +00:00]]
|
1040
3436
|
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1041
3437
|
Processing by BooksController#show as HTML
|
1042
3438
|
Parameters: {"id"=>"1"}
|
1043
|
-
[1m[35mBook Load (0.
|
1044
|
-
Completed 200 OK in 3.
|
1045
|
-
[1m[36m (0.
|
3439
|
+
[1m[35mBook Load (0.1ms)[0m SELECT "books".* FROM "books" WHERE "books"."id" = ? LIMIT 1 [["id", "1"]]
|
3440
|
+
Completed 200 OK in 3.3ms (Views: 1.8ms | ActiveRecord: 0.1ms)
|
3441
|
+
[1m[36m (0.3ms)[0m [1mrollback transaction[0m
|
1046
3442
|
[1m[35m (0.0ms)[0m begin transaction
|
1047
3443
|
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1048
|
-
[1m[35mSQL (0.3ms)[0m INSERT INTO "books" ("created_at", "id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at",
|
3444
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "books" ("created_at", "id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Sat, 03 May 2014 17:43:26 UTC +00:00], ["id", 1], ["name", "The Blue Clash with a Thousand Faces"], ["updated_at", Sat, 03 May 2014 17:43:26 UTC +00:00]]
|
1049
3445
|
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1050
|
-
Started GET "/books/1" for 127.0.0.1 at 2014-
|
3446
|
+
Started GET "/books/1" for 127.0.0.1 at 2014-05-03 13:43:26 -0400
|
1051
3447
|
Processing by BooksController#show as HTML
|
1052
3448
|
Parameters: {"id"=>"1"}
|
1053
|
-
[1m[35mBook Load (0.
|
1054
|
-
Completed 200 OK in 1.
|
3449
|
+
[1m[35mBook Load (0.0ms)[0m SELECT "books".* FROM "books" WHERE "books"."id" = ? LIMIT 1 [["id", "1"]]
|
3450
|
+
Completed 200 OK in 1.5ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
1055
3451
|
[1m[36m (0.3ms)[0m [1mrollback transaction[0m
|
1056
3452
|
[1m[35m (0.0ms)[0m begin transaction
|
1057
|
-
Started GET "/books" for 127.0.0.1 at 2014-
|
3453
|
+
Started GET "/books" for 127.0.0.1 at 2014-05-03 13:43:26 -0400
|
1058
3454
|
Processing by BooksController#index as HTML
|
1059
3455
|
[1m[36mBook Load (0.1ms)[0m [1mSELECT "books".* FROM "books" [0m
|
1060
|
-
Completed 200 OK in 1.
|
3456
|
+
Completed 200 OK in 1.2ms (Views: 0.7ms | ActiveRecord: 0.1ms)
|
1061
3457
|
[1m[35m (0.0ms)[0m rollback transaction
|
1062
3458
|
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1063
|
-
[1m[35m (0.
|
1064
|
-
[1m[36mSQL (0.
|
3459
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
3460
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "books" ("created_at", "id", "name", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", Sat, 03 May 2014 17:43:26 UTC +00:00], ["id", 1], ["name", "American Gypsy"], ["updated_at", Sat, 03 May 2014 17:43:26 UTC +00:00]]
|
1065
3461
|
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1066
|
-
Started DELETE "/books/1" for 127.0.0.1 at 2014-
|
3462
|
+
Started DELETE "/books/1" for 127.0.0.1 at 2014-05-03 13:43:26 -0400
|
1067
3463
|
Processing by BooksController#destroy as HTML
|
1068
3464
|
Parameters: {"id"=>"1"}
|
1069
|
-
[1m[36mBook Load (0.
|
3465
|
+
[1m[36mBook Load (0.0ms)[0m [1mSELECT "books".* FROM "books" WHERE "books"."id" = ? LIMIT 1[0m [["id", "1"]]
|
1070
3466
|
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1071
3467
|
[1m[36mSQL (0.3ms)[0m [1mDELETE FROM "books" WHERE "books"."id" = ?[0m [["id", 1]]
|
1072
3468
|
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1073
3469
|
Redirected to http://www.example.com/books
|
1074
|
-
Completed 302 Found in 2.
|
3470
|
+
Completed 302 Found in 2.2ms (ActiveRecord: 0.4ms)
|
1075
3471
|
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "books" WHERE "books"."id" = 1[0m
|
1076
3472
|
[1m[35m (0.3ms)[0m rollback transaction
|
1077
3473
|
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1078
3474
|
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "books"
|
1079
|
-
Started POST "/books" for 127.0.0.1 at 2014-
|
3475
|
+
Started POST "/books" for 127.0.0.1 at 2014-05-03 13:43:26 -0400
|
1080
3476
|
Processing by BooksController#create as HTML
|
1081
3477
|
Parameters: {"book"=>{"name"=>"some new book"}}
|
1082
3478
|
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1083
|
-
[1m[35mSQL (0.
|
3479
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sat, 03 May 2014 17:43:26 UTC +00:00], ["name", "some new book"], ["updated_at", Sat, 03 May 2014 17:43:26 UTC +00:00]]
|
1084
3480
|
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1085
3481
|
Redirected to http://www.example.com/books
|
1086
|
-
Completed 302 Found in 1.
|
1087
|
-
[1m[35m (0.
|
3482
|
+
Completed 302 Found in 1.4ms (ActiveRecord: 0.3ms)
|
3483
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "books"
|
1088
3484
|
[1m[36m (0.3ms)[0m [1mrollback transaction[0m
|
1089
3485
|
[1m[35m (0.0ms)[0m begin transaction
|
1090
3486
|
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1091
|
-
[1m[35mSQL (0.
|
3487
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "books" ("created_at", "id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Sat, 03 May 2014 17:43:26 UTC +00:00], ["id", 1], ["name", "some new book"], ["updated_at", Sat, 03 May 2014 17:43:26 UTC +00:00]]
|
1092
3488
|
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1093
|
-
Started PUT "/books/1" for 127.0.0.1 at 2014-
|
3489
|
+
Started PUT "/books/1" for 127.0.0.1 at 2014-05-03 13:43:26 -0400
|
1094
3490
|
Processing by BooksController#update as HTML
|
1095
3491
|
Parameters: {"id"=>"1", "book"=>{"name"=>"changed book"}}
|
1096
|
-
[1m[35mBook Load (0.
|
3492
|
+
[1m[35mBook Load (0.0ms)[0m SELECT "books".* FROM "books" WHERE "books"."id" = ? LIMIT 1 [["id", "1"]]
|
1097
3493
|
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1098
|
-
[1m[35m (0.
|
3494
|
+
[1m[35m (0.2ms)[0m UPDATE "books" SET "name" = 'changed book', "updated_at" = '2014-05-03 17:43:26.251468' WHERE "books"."id" = 1
|
1099
3495
|
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1100
3496
|
Redirected to http://www.example.com/books/1
|
1101
|
-
Completed 302 Found in
|
3497
|
+
Completed 302 Found in 2.7ms (ActiveRecord: 0.3ms)
|
1102
3498
|
[1m[35mBook Load (0.0ms)[0m SELECT "books".* FROM "books" WHERE "books"."id" = ? LIMIT 1 [["id", 1]]
|
1103
3499
|
[1m[36m (0.3ms)[0m [1mrollback transaction[0m
|
1104
3500
|
[1m[35m (0.0ms)[0m begin transaction
|
@@ -1110,11 +3506,11 @@ Completed 302 Found in 3.0ms (ActiveRecord: 0.4ms)
|
|
1110
3506
|
[1m[35m (0.0ms)[0m begin transaction
|
1111
3507
|
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
1112
3508
|
[1m[35m (0.0ms)[0m begin transaction
|
1113
|
-
[1m[36m (0.
|
3509
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
1114
3510
|
[1m[35m (0.0ms)[0m begin transaction
|
1115
3511
|
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
1116
3512
|
[1m[35m (0.0ms)[0m begin transaction
|
1117
|
-
[1m[36m (0.
|
3513
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
1118
3514
|
[1m[35m (0.0ms)[0m begin transaction
|
1119
3515
|
[1m[36m (0.1ms)[0m [1mcommit transaction[0m
|
1120
3516
|
[1m[35m (0.0ms)[0m begin transaction
|
@@ -1179,73 +3575,73 @@ Completed 302 Found in 3.0ms (ActiveRecord: 0.4ms)
|
|
1179
3575
|
[1m[35m (0.0ms)[0m begin transaction
|
1180
3576
|
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
1181
3577
|
[1m[35m (0.0ms)[0m begin transaction
|
1182
|
-
[1m[36mSQL (2.
|
3578
|
+
[1m[36mSQL (2.7ms)[0m [1mINSERT INTO "books" ("created_at", "id", "name", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", Sat, 03 May 2014 17:43:28 UTC +00:00], ["id", 1], ["name", "The Diaries Without a Cat"], ["updated_at", Sat, 03 May 2014 17:43:28 UTC +00:00]]
|
1183
3579
|
[1m[35m (0.3ms)[0m rollback transaction
|
1184
3580
|
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1185
3581
|
[1m[35m (0.0ms)[0m commit transaction
|
1186
3582
|
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1187
|
-
[1m[35mSQL (0.
|
3583
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "books" ("created_at", "id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Sat, 03 May 2014 17:43:28 UTC +00:00], ["id", 1], ["name", "The Dreams from Outer Space"], ["updated_at", Sat, 03 May 2014 17:43:28 UTC +00:00]]
|
1188
3584
|
[1m[36m (0.3ms)[0m [1mrollback transaction[0m
|
1189
3585
|
[1m[35m (0.0ms)[0m begin transaction
|
1190
3586
|
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
1191
3587
|
[1m[35m (0.0ms)[0m begin transaction
|
1192
|
-
[1m[36mSQL (0.
|
1193
|
-
[1m[35m (0.
|
1194
|
-
[1m[36m (0.
|
3588
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "books" ("created_at", "id", "name", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", Sat, 03 May 2014 17:43:28 UTC +00:00], ["id", 1], ["name", "The Man from Mars"], ["updated_at", Sat, 03 May 2014 17:43:28 UTC +00:00]]
|
3589
|
+
[1m[35m (0.3ms)[0m rollback transaction
|
3590
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1195
3591
|
[1m[35m (0.0ms)[0m commit transaction
|
1196
3592
|
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1197
|
-
[1m[35mSQL (0.
|
1198
|
-
[1m[36m (0.
|
3593
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "books" ("created_at", "id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Sat, 03 May 2014 17:43:28 UTC +00:00], ["id", 1], ["name", "The Yellow Rose of Wales"], ["updated_at", Sat, 03 May 2014 17:43:28 UTC +00:00]]
|
3594
|
+
[1m[36m (0.3ms)[0m [1mrollback transaction[0m
|
1199
3595
|
[1m[35m (0.0ms)[0m begin transaction
|
1200
3596
|
--------------------------------
|
1201
3597
|
BooksControllerTest: test_create
|
1202
3598
|
--------------------------------
|
1203
3599
|
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1204
|
-
[1m[35mSQL (0.4ms)[0m INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at",
|
1205
|
-
[1m[36m (0.
|
3600
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sat, 03 May 2014 17:43:28 UTC +00:00], ["name", "Christmas on Heathcote Via"], ["updated_at", Sat, 03 May 2014 17:43:28 UTC +00:00]]
|
3601
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1206
3602
|
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1207
|
-
[1m[36mSQL (0.
|
3603
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Sat, 03 May 2014 17:43:28 UTC +00:00], ["name", "Electric Woman"], ["updated_at", Sat, 03 May 2014 17:43:28 UTC +00:00]]
|
1208
3604
|
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1209
3605
|
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1210
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at",
|
3606
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sat, 03 May 2014 17:43:28 UTC +00:00], ["name", "The World"], ["updated_at", Sat, 03 May 2014 17:43:28 UTC +00:00]]
|
1211
3607
|
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1212
3608
|
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1213
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at",
|
3609
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Sat, 03 May 2014 17:43:28 UTC +00:00], ["name", "Day of the Action World"], ["updated_at", Sat, 03 May 2014 17:43:28 UTC +00:00]]
|
1214
3610
|
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1215
3611
|
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1216
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at",
|
3612
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sat, 03 May 2014 17:43:28 UTC +00:00], ["name", "1873 A.D."], ["updated_at", Sat, 03 May 2014 17:43:28 UTC +00:00]]
|
1217
3613
|
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1218
3614
|
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "books"
|
1219
3615
|
Processing by BooksController#create as HTML
|
1220
3616
|
Parameters: {"book"=>{"name"=>"newly-created-book"}}
|
1221
3617
|
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1222
|
-
[1m[35mSQL (0.2ms)[0m INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at",
|
3618
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sat, 03 May 2014 17:43:28 UTC +00:00], ["name", "newly-created-book"], ["updated_at", Sat, 03 May 2014 17:43:28 UTC +00:00]]
|
1223
3619
|
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1224
3620
|
Redirected to http://test.host/books
|
1225
3621
|
Completed 302 Found in 2ms (ActiveRecord: 0.3ms)
|
1226
3622
|
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "books"
|
1227
3623
|
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
1228
|
-
[1m[35m (0.
|
3624
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1229
3625
|
-------------------------------
|
1230
3626
|
BooksControllerTest: test_index
|
1231
3627
|
-------------------------------
|
1232
3628
|
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1233
|
-
[1m[35mSQL (0.3ms)[0m INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at",
|
3629
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sat, 03 May 2014 17:43:28 UTC +00:00], ["name", "The Friday from Across the Ocean"], ["updated_at", Sat, 03 May 2014 17:43:28 UTC +00:00]]
|
1234
3630
|
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1235
3631
|
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1236
|
-
[1m[36mSQL (0.
|
3632
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Sat, 03 May 2014 17:43:28 UTC +00:00], ["name", "Electric Men"], ["updated_at", Sat, 03 May 2014 17:43:28 UTC +00:00]]
|
1237
3633
|
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1238
|
-
[1m[36m (0.
|
1239
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at",
|
3634
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
3635
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sat, 03 May 2014 17:43:28 UTC +00:00], ["name", "The Fake Fly from Mars"], ["updated_at", Sat, 03 May 2014 17:43:28 UTC +00:00]]
|
1240
3636
|
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1241
3637
|
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1242
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at",
|
1243
|
-
[1m[35m (0.
|
3638
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Sat, 03 May 2014 17:43:28 UTC +00:00], ["name", "Hard Boiled Rain"], ["updated_at", Sat, 03 May 2014 17:43:28 UTC +00:00]]
|
3639
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1244
3640
|
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1245
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at",
|
3641
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sat, 03 May 2014 17:43:28 UTC +00:00], ["name", "The Blow with a Thousand Faces"], ["updated_at", Sat, 03 May 2014 17:43:28 UTC +00:00]]
|
1246
3642
|
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1247
3643
|
Processing by BooksController#index as HTML
|
1248
|
-
Completed 200 OK in
|
3644
|
+
Completed 200 OK in 37ms (Views: 37.2ms | ActiveRecord: 0.0ms)
|
1249
3645
|
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "books"
|
1250
3646
|
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
1251
3647
|
[1m[35m (0.0ms)[0m begin transaction
|
@@ -1253,92 +3649,92 @@ Completed 200 OK in 11ms (Views: 10.4ms | ActiveRecord: 0.0ms)
|
|
1253
3649
|
BooksControllerTest: test_show
|
1254
3650
|
------------------------------
|
1255
3651
|
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1256
|
-
[1m[35mSQL (0.3ms)[0m INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at",
|
3652
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sat, 03 May 2014 17:43:28 UTC +00:00], ["name", "Christmas on Schroeder Crest"], ["updated_at", Sat, 03 May 2014 17:43:28 UTC +00:00]]
|
1257
3653
|
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1258
3654
|
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1259
|
-
[1m[36mSQL (0.
|
3655
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Sat, 03 May 2014 17:43:28 UTC +00:00], ["name", "Champagne Cousins"], ["updated_at", Sat, 03 May 2014 17:43:28 UTC +00:00]]
|
1260
3656
|
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1261
3657
|
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1262
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at",
|
3658
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sat, 03 May 2014 17:43:28 UTC +00:00], ["name", "The Forbidden Dreams from Mars"], ["updated_at", Sat, 03 May 2014 17:43:28 UTC +00:00]]
|
1263
3659
|
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1264
3660
|
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1265
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at",
|
3661
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Sat, 03 May 2014 17:43:28 UTC +00:00], ["name", "The Beast from 6187 Leagues"], ["updated_at", Sat, 03 May 2014 17:43:28 UTC +00:00]]
|
1266
3662
|
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1267
3663
|
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1268
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at",
|
3664
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sat, 03 May 2014 17:43:28 UTC +00:00], ["name", "The Wolf Without a Men"], ["updated_at", Sat, 03 May 2014 17:43:28 UTC +00:00]]
|
1269
3665
|
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1270
3666
|
Processing by BooksController#show as HTML
|
1271
3667
|
Parameters: {"id"=>"1"}
|
1272
3668
|
[1m[35mBook Load (0.1ms)[0m SELECT "books".* FROM "books" WHERE "books"."id" = ? LIMIT 1 [["id", "1"]]
|
1273
|
-
Completed 200 OK in 3ms (Views: 1.
|
1274
|
-
[1m[36m (0.
|
3669
|
+
Completed 200 OK in 3ms (Views: 1.7ms | ActiveRecord: 0.1ms)
|
3670
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
1275
3671
|
[1m[35m (0.0ms)[0m begin transaction
|
1276
3672
|
-----------------------------------------------------------------------
|
1277
3673
|
FastlyHeadersTest: test_/books/:id_show_page_should_have_fastly_headers
|
1278
3674
|
-----------------------------------------------------------------------
|
1279
3675
|
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1280
|
-
[1m[35mSQL (0.3ms)[0m INSERT INTO "books" ("created_at", "id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at",
|
3676
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "books" ("created_at", "id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Sat, 03 May 2014 17:43:28 UTC +00:00], ["id", 1], ["name", "Bloody Jungle"], ["updated_at", Sat, 03 May 2014 17:43:28 UTC +00:00]]
|
1281
3677
|
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1282
|
-
Started GET "/books/1" for 127.0.0.1 at 2014-
|
3678
|
+
Started GET "/books/1" for 127.0.0.1 at 2014-05-03 13:43:28 -0400
|
1283
3679
|
Processing by BooksController#show as HTML
|
1284
3680
|
Parameters: {"id"=>"1"}
|
1285
3681
|
[1m[35mBook Load (0.1ms)[0m SELECT "books".* FROM "books" WHERE "books"."id" = ? LIMIT 1 [["id", "1"]]
|
1286
|
-
Completed 200 OK in 2ms (Views: 0.
|
1287
|
-
[1m[36m (0.
|
3682
|
+
Completed 200 OK in 2ms (Views: 0.7ms | ActiveRecord: 0.1ms)
|
3683
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
1288
3684
|
[1m[35m (0.0ms)[0m begin transaction
|
1289
3685
|
--------------------------------------------------------------------
|
1290
3686
|
FastlyHeadersTest: test_/books_index_page_should_have_fastly_headers
|
1291
3687
|
--------------------------------------------------------------------
|
1292
|
-
Started GET "/books" for 127.0.0.1 at 2014-
|
3688
|
+
Started GET "/books" for 127.0.0.1 at 2014-05-03 13:43:28 -0400
|
1293
3689
|
Processing by BooksController#index as HTML
|
1294
|
-
Completed 200 OK in 1ms (Views: 0.
|
1295
|
-
[1m[36m (0.
|
3690
|
+
Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
3691
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
1296
3692
|
[1m[35m (0.0ms)[0m begin transaction
|
1297
3693
|
----------------------------------------------------------------------------------------------
|
1298
3694
|
FastlyHeadersTest: test_DELETE_/books/:id_should_not_have_fastly_headers/_fastly_header_values
|
1299
3695
|
----------------------------------------------------------------------------------------------
|
1300
3696
|
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1301
|
-
[1m[35mSQL (0.3ms)[0m INSERT INTO "books" ("created_at", "id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at",
|
3697
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "books" ("created_at", "id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Sat, 03 May 2014 17:43:28 UTC +00:00], ["id", 1], ["name", "Journey of the Brain"], ["updated_at", Sat, 03 May 2014 17:43:28 UTC +00:00]]
|
1302
3698
|
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1303
|
-
Started DELETE "/books/1" for 127.0.0.1 at 2014-
|
3699
|
+
Started DELETE "/books/1" for 127.0.0.1 at 2014-05-03 13:43:28 -0400
|
1304
3700
|
Processing by BooksController#destroy as HTML
|
1305
3701
|
Parameters: {"id"=>"1"}
|
1306
3702
|
[1m[35mBook Load (0.0ms)[0m SELECT "books".* FROM "books" WHERE "books"."id" = ? LIMIT 1 [["id", "1"]]
|
1307
3703
|
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1308
3704
|
[1m[35mSQL (0.3ms)[0m DELETE FROM "books" WHERE "books"."id" = ? [["id", 1]]
|
1309
|
-
[1m[36m (0.
|
3705
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1310
3706
|
Redirected to http://www.example.com/books
|
1311
|
-
Completed 302 Found in 2ms (ActiveRecord: 0.
|
3707
|
+
Completed 302 Found in 2ms (ActiveRecord: 0.4ms)
|
1312
3708
|
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "books" WHERE "books"."id" = 1
|
1313
|
-
[1m[36m (0.
|
3709
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
1314
3710
|
[1m[35m (0.0ms)[0m begin transaction
|
1315
3711
|
----------------------------------------------------------------------------------------
|
1316
3712
|
FastlyHeadersTest: test_POST_/books_should_not_have_fastly_headers/_fastly_header_values
|
1317
3713
|
----------------------------------------------------------------------------------------
|
1318
3714
|
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "books"[0m
|
1319
|
-
Started POST "/books" for 127.0.0.1 at 2014-
|
3715
|
+
Started POST "/books" for 127.0.0.1 at 2014-05-03 13:43:28 -0400
|
1320
3716
|
Processing by BooksController#create as HTML
|
1321
3717
|
Parameters: {"book"=>{"name"=>"some new book"}}
|
1322
3718
|
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1323
|
-
[1m[36mSQL (0.
|
3719
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Sat, 03 May 2014 17:43:28 UTC +00:00], ["name", "some new book"], ["updated_at", Sat, 03 May 2014 17:43:28 UTC +00:00]]
|
1324
3720
|
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1325
3721
|
Redirected to http://www.example.com/books
|
1326
|
-
Completed 302 Found in 2ms (ActiveRecord: 0.
|
1327
|
-
[1m[36m (0.
|
3722
|
+
Completed 302 Found in 2ms (ActiveRecord: 0.3ms)
|
3723
|
+
[1m[36m (0.0ms)[0m [1mSELECT COUNT(*) FROM "books"[0m
|
1328
3724
|
[1m[35m (0.3ms)[0m rollback transaction
|
1329
|
-
[1m[36m (0.
|
3725
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1330
3726
|
-------------------------------------------------------------------------------------------
|
1331
3727
|
FastlyHeadersTest: test_PUT_/books/:id_should_not_have_fastly_headers/_fastly_header_values
|
1332
3728
|
-------------------------------------------------------------------------------------------
|
1333
|
-
[1m[35m (0.
|
1334
|
-
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "books" ("created_at", "id", "name", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at",
|
3729
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
3730
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "books" ("created_at", "id", "name", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", Sat, 03 May 2014 17:43:28 UTC +00:00], ["id", 1], ["name", "some new book"], ["updated_at", Sat, 03 May 2014 17:43:28 UTC +00:00]]
|
1335
3731
|
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1336
|
-
Started PUT "/books/1" for 127.0.0.1 at 2014-
|
3732
|
+
Started PUT "/books/1" for 127.0.0.1 at 2014-05-03 13:43:28 -0400
|
1337
3733
|
Processing by BooksController#update as HTML
|
1338
3734
|
Parameters: {"id"=>"1", "book"=>{"name"=>"changed book"}}
|
1339
|
-
[1m[36mBook Load (0.
|
3735
|
+
[1m[36mBook Load (0.1ms)[0m [1mSELECT "books".* FROM "books" WHERE "books"."id" = ? LIMIT 1[0m [["id", "1"]]
|
1340
3736
|
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1341
|
-
[1m[36mSQL (0.
|
3737
|
+
[1m[36mSQL (0.3ms)[0m [1mUPDATE "books" SET "name" = ?, "updated_at" = ? WHERE "books"."id" = 1[0m [["name", "changed book"], ["updated_at", Sat, 03 May 2014 17:43:28 UTC +00:00]]
|
1342
3738
|
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1343
3739
|
Redirected to http://www.example.com/books/1
|
1344
3740
|
Completed 302 Found in 3ms (ActiveRecord: 0.5ms)
|
@@ -1356,12 +3752,12 @@ FastlyRails::CacheControlHeadersTest: test_sets_cache_control_headers_on_actionc
|
|
1356
3752
|
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1357
3753
|
[1m[35m (0.0ms)[0m commit transaction
|
1358
3754
|
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1359
|
-
[1m[35m (0.
|
3755
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1360
3756
|
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1361
3757
|
[1m[35m (0.0ms)[0m commit transaction
|
1362
3758
|
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1363
3759
|
[1m[35m (0.0ms)[0m rollback transaction
|
1364
|
-
[1m[36m (0.
|
3760
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1365
3761
|
[1m[35m (0.0ms)[0m commit transaction
|
1366
3762
|
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1367
3763
|
[1m[35m (0.0ms)[0m rollback transaction
|
@@ -1385,11 +3781,11 @@ FastlyRails::CacheControlHeadersTest: test_sets_cache_control_headers_on_actionc
|
|
1385
3781
|
[1m[35m (0.0ms)[0m commit transaction
|
1386
3782
|
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1387
3783
|
[1m[35m (0.0ms)[0m rollback transaction
|
1388
|
-
[1m[36m (0.
|
3784
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1389
3785
|
[1m[35m (0.0ms)[0m commit transaction
|
1390
3786
|
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1391
3787
|
[1m[35m (0.0ms)[0m rollback transaction
|
1392
|
-
[1m[36m (0.
|
3788
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1393
3789
|
[1m[35m (0.0ms)[0m commit transaction
|
1394
3790
|
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1395
3791
|
[1m[35m (0.0ms)[0m rollback transaction
|