fastly-rails 0.1.1 → 0.1.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 070f77c971009cf049b253a6b2aeffc99966956f
4
- data.tar.gz: 8c349160847adb26fbb39957f673bc66a7af1e11
3
+ metadata.gz: d0ebe62917ac4d520eeb2e247d5e18047cfaa160
4
+ data.tar.gz: d916e037413bc2e853b672fe51332c07e7438379
5
5
  SHA512:
6
- metadata.gz: 55c648804a677804219debb52099311d69851606adedd33a2411956c4f0539bace2868bec49157ed0b40e188f2a35657fde02d7c749415b8a6f0df8fffcd98cb
7
- data.tar.gz: bffd081dc0879fd7c7825638b48582911bef6d69a9f20ac9694250f3e4d5db417419ff20405dce6bff06304c73cde9444f07194249ced89dbe0fc41d4fcf1fc3
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 SurrogateKey
4
- extend ActiveSupport::Concern
3
+ module ActiveRecord
4
+ module SurrogateKey
5
+ extend ActiveSupport::Concern
5
6
 
6
- module ClassMethods
7
+ module ClassMethods
7
8
 
8
- def purge_all
9
- FastlyRails.client.purge(table_key)
10
- end
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
- end
19
+ def record_key
20
+ "#{table_key}/#{id}"
21
+ end
17
22
 
18
- def record_key
19
- "#{table_key}/#{id}"
20
- end
23
+ def table_key
24
+ self.class.table_key
25
+ end
21
26
 
22
- def table_key
23
- self.class.table_key
24
- end
27
+ def purge
28
+ FastlyRails.client.purge(record_key)
29
+ end
25
30
 
26
- def purge
27
- FastlyRails.client.purge(record_key)
28
- end
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
@@ -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
@@ -1,3 +1,3 @@
1
1
  module FastlyRails
2
- VERSION = "0.1.1"
2
+ VERSION = "0.1.2"
3
3
  end
Binary file
@@ -1,176 +1,2326 @@
1
1
  Connecting to database specified by database.yml
2
2
   (0.1ms) select sqlite_version(*)
3
-  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
4
-  (0.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
5
-  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
3
+  (1.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
4
+  (1.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
5
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
6
6
  Migrating to CreateBooks (20140407202136)
7
7
   (0.0ms) begin transaction
8
8
   (0.3ms) CREATE TABLE "books" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
9
9
   (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20140407202136')
10
-  (0.4ms) commit transaction
11
-  (0.1ms) begin transaction
10
+  (0.7ms) commit transaction
11
+  (0.0ms) begin transaction
12
12
   (0.0ms) commit transaction
13
13
   (0.0ms) begin transaction
14
-  (0.1ms) SAVEPOINT active_record_1
15
- SQL (4.1ms) INSERT INTO "books" ("created_at", "id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Mon, 28 Apr 2014 00:15:52 UTC +00:00], ["id", 1], ["name", "Day of the Gypsy"], ["updated_at", Mon, 28 Apr 2014 00:15:52 UTC +00:00]]
14
+  (0.0ms) SAVEPOINT active_record_1
15
+ SQL (3.3ms) 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", "The Ultra Beast from Mars"], ["updated_at", Wed, 23 Apr 2014 23:08:26 UTC +00:00]]
16
16
   (0.0ms) RELEASE SAVEPOINT active_record_1
17
-  (0.2ms) rollback transaction
17
+  (0.3ms) rollback transaction
18
18
   (0.0ms) begin transaction
19
19
   (0.0ms) commit transaction
20
20
   (0.0ms) begin transaction
21
21
   (0.0ms) SAVEPOINT active_record_1
22
- SQL (0.3ms) INSERT INTO "books" ("created_at", "id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Mon, 28 Apr 2014 00:15:52 UTC +00:00], ["id", 1], ["name", "Killer Fly"], ["updated_at", Mon, 28 Apr 2014 00:15:52 UTC +00:00]]
22
+ SQL (0.3ms) 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
   (0.0ms) RELEASE SAVEPOINT active_record_1
24
-  (0.2ms) rollback transaction
24
+  (0.3ms) rollback transaction
25
25
   (0.0ms) begin transaction
26
26
   (0.0ms) commit transaction
27
27
   (0.0ms) begin transaction
28
28
   (0.0ms) SAVEPOINT active_record_1
29
- SQL (0.4ms) INSERT INTO "books" ("created_at", "id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Mon, 28 Apr 2014 00:15:52 UTC +00:00], ["id", 1], ["name", "Codename: Wolf"], ["updated_at", Mon, 28 Apr 2014 00:15:52 UTC +00:00]]
30
-  (0.1ms) RELEASE SAVEPOINT active_record_1
29
+ SQL (0.2ms) 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", "Codename: Brains"], ["updated_at", Wed, 23 Apr 2014 23:08:26 UTC +00:00]]
30
+  (0.0ms) RELEASE SAVEPOINT active_record_1
31
31
   (0.3ms) rollback transaction
32
32
   (0.0ms) begin transaction
33
33
   (0.0ms) commit transaction
34
34
   (0.0ms) begin transaction
35
-  (0.1ms) SAVEPOINT active_record_1
36
- SQL (0.4ms) INSERT INTO "books" ("created_at", "id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Mon, 28 Apr 2014 00:15:52 UTC +00:00], ["id", 1], ["name", "Christmas on Maggio Heights"], ["updated_at", Mon, 28 Apr 2014 00:15:52 UTC +00:00]]
35
+  (0.0ms) rollback transaction
36
+  (0.0ms) begin transaction
37
+  (0.0ms) commit transaction
38
+  (0.0ms) begin transaction
39
+  (0.0ms) SAVEPOINT active_record_1
40
+ SQL (0.2ms) 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
   (0.0ms) RELEASE SAVEPOINT active_record_1
38
42
   (0.3ms) rollback transaction
39
43
   (0.0ms) begin transaction
40
-  (0.0ms) commit transaction
41
-  (0.0ms) begin transaction
42
-  (0.0ms) rollback transaction
43
-  (0.0ms) begin transaction
44
44
   (0.0ms) SAVEPOINT active_record_1
45
- SQL (0.4ms) INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Mon, 28 Apr 2014 00:15:52 UTC +00:00], ["name", "Rise of the Killer Ninja"], ["updated_at", Mon, 28 Apr 2014 00:15:52 UTC +00:00]]
45
+ SQL (0.2ms) INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["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
   (0.0ms) RELEASE SAVEPOINT active_record_1
47
47
   (0.0ms) SAVEPOINT active_record_1
48
- SQL (0.8ms) INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Mon, 28 Apr 2014 00:15:52 UTC +00:00], ["name", "Flying Friday"], ["updated_at", Mon, 28 Apr 2014 00:15:52 UTC +00:00]]
48
+ SQL (0.3ms) 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
   (0.0ms) RELEASE SAVEPOINT active_record_1
50
50
   (0.0ms) SAVEPOINT active_record_1
51
- SQL (0.1ms) INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Mon, 28 Apr 2014 00:15:52 UTC +00:00], ["name", "The Beast from 12769 Leagues"], ["updated_at", Mon, 28 Apr 2014 00:15:52 UTC +00:00]]
51
+ SQL (0.1ms) INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["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
   (0.0ms) RELEASE SAVEPOINT active_record_1
53
53
   (0.0ms) SAVEPOINT active_record_1
54
- SQL (0.1ms) INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Mon, 28 Apr 2014 00:15:52 UTC +00:00], ["name", "When Doris Met Ellsworth"], ["updated_at", Mon, 28 Apr 2014 00:15:52 UTC +00:00]]
54
+ SQL (0.1ms) 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
   (0.0ms) RELEASE SAVEPOINT active_record_1
56
56
   (0.0ms) SAVEPOINT active_record_1
57
- SQL (0.1ms) INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Mon, 28 Apr 2014 00:15:52 UTC +00:00], ["name", "Electric Hills"], ["updated_at", Mon, 28 Apr 2014 00:15:52 UTC +00:00]]
57
+ SQL (0.1ms) INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["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
   (0.0ms) RELEASE SAVEPOINT active_record_1
59
59
   (0.0ms) SELECT COUNT(*) FROM "books" 
60
60
  Processing by BooksController#create as HTML
61
61
  Parameters: {"book"=>{"name"=>"newly-created-book"}}
62
62
   (0.1ms) SAVEPOINT active_record_1
63
- SQL (0.2ms) INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Mon, 28 Apr 2014 00:15:52 UTC +00:00], ["name", "newly-created-book"], ["updated_at", Mon, 28 Apr 2014 00:15:52 UTC +00:00]]
63
+ SQL (0.2ms) INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["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
   (0.0ms) RELEASE SAVEPOINT active_record_1
65
65
  Redirected to http://test.host/books
66
- Completed 302 Found in 2.1ms (ActiveRecord: 0.2ms)
66
+ Completed 302 Found in 2.1ms (ActiveRecord: 0.3ms)
67
67
   (0.1ms) SELECT COUNT(*) FROM "books" 
68
-  (0.5ms) rollback transaction
68
+  (0.3ms) rollback transaction
69
69
   (0.0ms) begin transaction
70
70
   (0.0ms) SAVEPOINT active_record_1
71
- SQL (0.3ms) INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Mon, 28 Apr 2014 00:15:52 UTC +00:00], ["name", "Green World"], ["updated_at", Mon, 28 Apr 2014 00:15:52 UTC +00:00]]
71
+ SQL (0.2ms) INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["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
   (0.0ms) RELEASE SAVEPOINT active_record_1
73
73
   (0.0ms) SAVEPOINT active_record_1
74
- SQL (0.3ms) INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Mon, 28 Apr 2014 00:15:52 UTC +00:00], ["name", "Nuclear Diaries"], ["updated_at", Mon, 28 Apr 2014 00:15:52 UTC +00:00]]
74
+ SQL (0.3ms) 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
   (0.0ms) RELEASE SAVEPOINT active_record_1
76
76
   (0.0ms) SAVEPOINT active_record_1
77
- SQL (0.1ms) INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Mon, 28 Apr 2014 00:15:52 UTC +00:00], ["name", "Rise of the Danger Jungle"], ["updated_at", Mon, 28 Apr 2014 00:15:52 UTC +00:00]]
77
+ SQL (0.1ms) INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["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
   (0.0ms) RELEASE SAVEPOINT active_record_1
79
79
   (0.0ms) SAVEPOINT active_record_1
80
- SQL (0.1ms) INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Mon, 28 Apr 2014 00:15:52 UTC +00:00], ["name", "Curse of the Wolf"], ["updated_at", Mon, 28 Apr 2014 00:15:52 UTC +00:00]]
80
+ SQL (0.1ms) 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
   (0.0ms) RELEASE SAVEPOINT active_record_1
82
82
   (0.0ms) SAVEPOINT active_record_1
83
- SQL (0.1ms) INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Mon, 28 Apr 2014 00:15:52 UTC +00:00], ["name", "When Donavon Met Eden"], ["updated_at", Mon, 28 Apr 2014 00:15:52 UTC +00:00]]
83
+ SQL (0.1ms) INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["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
   (0.0ms) RELEASE SAVEPOINT active_record_1
85
85
  Processing by BooksController#index as HTML
86
86
  Book Load (0.1ms) SELECT "books".* FROM "books" 
87
- Completed 200 OK in 9.8ms (Views: 8.7ms | ActiveRecord: 0.1ms)
87
+ Completed 200 OK in 9.0ms (Views: 8.1ms | ActiveRecord: 0.1ms)
88
88
   (0.4ms) rollback transaction
89
89
   (0.0ms) begin transaction
90
90
   (0.0ms) SAVEPOINT active_record_1
91
- SQL (0.3ms) INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Mon, 28 Apr 2014 00:15:52 UTC +00:00], ["name", "Rise of the Dangerous Thief"], ["updated_at", Mon, 28 Apr 2014 00:15:52 UTC +00:00]]
91
+ SQL (0.3ms) INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["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
   (0.0ms) RELEASE SAVEPOINT active_record_1
93
93
   (0.0ms) SAVEPOINT active_record_1
94
- SQL (0.3ms) INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Mon, 28 Apr 2014 00:15:52 UTC +00:00], ["name", "The Brains from North East Irwindale"], ["updated_at", Mon, 28 Apr 2014 00:15:52 UTC +00:00]]
94
+ SQL (0.3ms) 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
   (0.0ms) RELEASE SAVEPOINT active_record_1
96
96
   (0.0ms) SAVEPOINT active_record_1
97
- SQL (0.1ms) INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Mon, 28 Apr 2014 00:15:52 UTC +00:00], ["name", "The Man Who Fell to Earth"], ["updated_at", Mon, 28 Apr 2014 00:15:52 UTC +00:00]]
97
+ SQL (0.1ms) INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["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
   (0.0ms) RELEASE SAVEPOINT active_record_1
99
99
   (0.0ms) SAVEPOINT active_record_1
100
- SQL (0.1ms) INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Mon, 28 Apr 2014 00:15:52 UTC +00:00], ["name", "Forbidden Wizard"], ["updated_at", Mon, 28 Apr 2014 00:15:52 UTC +00:00]]
100
+ SQL (0.1ms) 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
   (0.0ms) RELEASE SAVEPOINT active_record_1
102
102
   (0.0ms) SAVEPOINT active_record_1
103
- SQL (0.1ms) INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Mon, 28 Apr 2014 00:15:52 UTC +00:00], ["name", "Case of the Missing Tears"], ["updated_at", Mon, 28 Apr 2014 00:15:52 UTC +00:00]]
103
+ SQL (0.1ms) INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
105
+ Processing by BooksController#show as HTML
106
+ Parameters: {"id"=>"1"}
107
+ Book Load (0.1ms) SELECT "books".* FROM "books" WHERE "books"."id" = ? LIMIT 1 [["id", "1"]]
108
+ Completed 200 OK in 3.1ms (Views: 1.5ms | ActiveRecord: 0.1ms)
109
+  (0.4ms) rollback transaction
110
+  (0.0ms) begin transaction
111
+  (0.0ms) SAVEPOINT active_record_1
112
+ SQL (0.2ms) 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", "The Wizard Without a Man"], ["updated_at", Wed, 23 Apr 2014 23:08:26 UTC +00:00]]
104
113
   (0.0ms) 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
  Book Load (0.1ms) SELECT "books".* FROM "books" WHERE "books"."id" = ? LIMIT 1 [["id", "1"]]
108
- Completed 200 OK in 4.0ms (Views: 2.0ms | ActiveRecord: 0.1ms)
118
+ Completed 200 OK in 1.7ms (Views: 0.9ms | ActiveRecord: 0.1ms)
119
+  (0.3ms) rollback transaction
120
+  (0.0ms) begin transaction
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
+ Book Load (0.1ms) SELECT "books".* FROM "books"
124
+ Completed 200 OK in 1.4ms (Views: 0.8ms | ActiveRecord: 0.1ms)
125
+  (0.0ms) rollback transaction
126
+  (0.0ms) begin transaction
127
+  (0.0ms) SAVEPOINT active_record_1
128
+ SQL (0.3ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
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
+ Book Load (0.0ms) SELECT "books".* FROM "books" WHERE "books"."id" = ? LIMIT 1 [["id", "1"]]
134
+  (0.0ms) SAVEPOINT active_record_1
135
+ SQL (0.3ms) DELETE FROM "books" WHERE "books"."id" = ? [["id", 1]]
136
+  (0.0ms) RELEASE SAVEPOINT active_record_1
137
+ Redirected to http://www.example.com/books
138
+ Completed 302 Found in 2.1ms (ActiveRecord: 0.4ms)
139
+  (0.1ms) SELECT COUNT(*) FROM "books" WHERE "books"."id" = 1
140
+  (0.3ms) rollback transaction
141
+  (0.0ms) begin transaction
142
+  (0.1ms) SELECT COUNT(*) FROM "books" 
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
+  (0.0ms) SAVEPOINT active_record_1
147
+ SQL (0.3ms) INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
149
+ Redirected to http://www.example.com/books
150
+ Completed 302 Found in 1.6ms (ActiveRecord: 0.3ms)
151
+  (0.0ms) SELECT COUNT(*) FROM "books" 
152
+  (0.3ms) rollback transaction
153
+  (0.0ms) begin transaction
154
+  (0.0ms) SAVEPOINT active_record_1
155
+ SQL (0.2ms) 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", "some new book"], ["updated_at", Wed, 23 Apr 2014 23:08:26 UTC +00:00]]
156
+  (0.0ms) 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
+ Book Load (0.0ms) SELECT "books".* FROM "books" WHERE "books"."id" = ? LIMIT 1 [["id", "1"]]
161
+  (0.0ms) SAVEPOINT active_record_1
162
+  (0.3ms) UPDATE "books" SET "name" = 'changed book', "updated_at" = '2014-04-23 23:08:26.433903' WHERE "books"."id" = 1
163
+  (0.0ms) 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
+ Book Load (0.0ms) SELECT "books".* FROM "books" WHERE "books"."id" = ? LIMIT 1 [["id", 1]]
167
+  (0.3ms) rollback transaction
168
+  (0.0ms) begin transaction
169
+  (0.0ms) commit transaction
170
+  (0.0ms) begin transaction
171
+  (0.0ms) rollback transaction
172
+  (0.0ms) begin transaction
173
+  (0.0ms) rollback transaction
174
+  (0.0ms) begin transaction
175
+  (0.0ms) commit transaction
176
+  (0.0ms) begin transaction
177
+  (0.0ms) rollback transaction
178
+  (0.0ms) begin transaction
179
+  (0.0ms) commit transaction
180
+  (0.0ms) begin transaction
181
+  (0.0ms) rollback transaction
182
+  (0.1ms) begin transaction
183
+  (0.0ms) commit transaction
184
+  (0.0ms) begin transaction
185
+  (0.0ms) rollback transaction
186
+  (0.0ms) begin transaction
187
+  (0.0ms) commit transaction
188
+  (0.0ms) begin transaction
189
+  (0.0ms) rollback transaction
190
+  (0.0ms) begin transaction
191
+  (0.0ms) commit transaction
192
+  (0.0ms) begin transaction
193
+  (0.0ms) rollback transaction
194
+  (0.0ms) begin transaction
195
+  (0.0ms) commit transaction
196
+  (0.0ms) begin transaction
197
+  (0.0ms) rollback transaction
198
+  (0.0ms) begin transaction
199
+  (0.0ms) commit transaction
200
+  (0.0ms) begin transaction
201
+  (0.0ms) rollback transaction
202
+  (0.0ms) begin transaction
203
+  (0.0ms) commit transaction
204
+  (0.0ms) begin transaction
205
+  (0.0ms) rollback transaction
206
+  (0.0ms) begin transaction
207
+  (0.0ms) commit transaction
208
+  (0.0ms) begin transaction
209
+  (0.0ms) rollback transaction
210
+  (0.1ms) begin transaction
211
+  (0.0ms) commit transaction
212
+  (0.0ms) begin transaction
213
+  (0.0ms) rollback transaction
214
+  (0.0ms) begin transaction
215
+  (0.0ms) commit transaction
216
+  (0.0ms) begin transaction
217
+  (0.0ms) rollback transaction
218
+  (0.0ms) begin transaction
219
+  (0.0ms) commit transaction
220
+  (0.0ms) begin transaction
221
+  (0.0ms) rollback transaction
222
+  (0.0ms) begin transaction
223
+  (0.0ms) commit transaction
224
+  (0.0ms) begin transaction
225
+  (0.0ms) rollback transaction
226
+  (0.0ms) begin transaction
227
+  (0.0ms) commit transaction
228
+  (0.0ms) begin transaction
229
+  (0.0ms) rollback transaction
230
+  (0.0ms) begin transaction
231
+  (0.0ms) commit transaction
232
+  (0.0ms) begin transaction
233
+  (0.0ms) rollback transaction
234
+  (0.0ms) begin transaction
235
+  (0.0ms) commit transaction
236
+  (0.0ms) begin transaction
237
+  (0.0ms) rollback transaction
238
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
239
+  (0.1ms) begin transaction
240
+  (0.0ms) commit transaction
241
+  (0.0ms) begin transaction
242
+ SQL (2.7ms) 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", "Death Wolves"], ["updated_at", Wed, 23 Apr 2014 23:08:28 UTC +00:00]]
109
243
   (0.3ms) rollback transaction
110
244
   (0.0ms) begin transaction
245
+  (0.0ms) commit transaction
246
+  (0.0ms) begin transaction
247
+ SQL (0.3ms) 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
+  (0.2ms) rollback transaction
249
+  (0.0ms) begin transaction
250
+  (0.0ms) commit transaction
251
+  (0.0ms) begin transaction
252
+ SQL (0.2ms) 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", "Bloody Hills"], ["updated_at", Wed, 23 Apr 2014 23:08:28 UTC +00:00]]
253
+  (0.2ms) rollback transaction
254
+  (0.0ms) begin transaction
255
+  (0.0ms) commit transaction
256
+  (0.0ms) begin transaction
257
+  (0.0ms) rollback transaction
258
+  (0.0ms) begin transaction
259
+  (0.0ms) commit transaction
260
+  (0.0ms) begin transaction
261
+ SQL (0.2ms) 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
+  (0.2ms) rollback transaction
263
+  (0.0ms) begin transaction
264
+ --------------------------------
265
+ BooksControllerTest: test_create
266
+ --------------------------------
267
+  (0.1ms) SAVEPOINT active_record_1
268
+ SQL (0.3ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
270
+  (0.0ms) SAVEPOINT active_record_1
271
+ SQL (0.3ms) INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
273
+  (0.0ms) SAVEPOINT active_record_1
274
+ SQL (0.1ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
276
+  (0.1ms) SAVEPOINT active_record_1
277
+ SQL (0.2ms) INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
279
+  (0.0ms) SAVEPOINT active_record_1
280
+ SQL (0.1ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
282
+  (0.1ms) SELECT COUNT(*) FROM "books"
283
+ Processing by BooksController#create as HTML
284
+ Parameters: {"book"=>{"name"=>"newly-created-book"}}
285
+  (0.1ms) SAVEPOINT active_record_1
286
+ SQL (0.2ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
288
+ Redirected to http://test.host/books
289
+ Completed 302 Found in 2ms (ActiveRecord: 0.2ms)
290
+  (0.1ms) SELECT COUNT(*) FROM "books"
291
+  (0.4ms) rollback transaction
292
+  (0.0ms) begin transaction
293
+ -------------------------------
294
+ BooksControllerTest: test_index
295
+ -------------------------------
296
+  (0.0ms) SAVEPOINT active_record_1
297
+ SQL (0.2ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
299
+  (0.0ms) SAVEPOINT active_record_1
300
+ SQL (0.2ms) INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
302
+  (0.0ms) SAVEPOINT active_record_1
303
+ SQL (0.1ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
305
+  (0.0ms) SAVEPOINT active_record_1
306
+ SQL (0.1ms) INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
308
+  (0.0ms) SAVEPOINT active_record_1
309
+ SQL (0.1ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
311
+ Processing by BooksController#index as HTML
312
+ Completed 200 OK in 15ms (Views: 14.4ms | ActiveRecord: 0.0ms)
313
+  (0.1ms) SELECT COUNT(*) FROM "books"
314
+  (0.3ms) rollback transaction
315
+  (0.0ms) begin transaction
316
+ ------------------------------
317
+ BooksControllerTest: test_show
318
+ ------------------------------
319
+  (0.0ms) SAVEPOINT active_record_1
320
+ SQL (0.2ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
322
+  (0.0ms) SAVEPOINT active_record_1
323
+ SQL (0.3ms) INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
325
+  (0.0ms) SAVEPOINT active_record_1
326
+ SQL (0.1ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
328
+  (0.0ms) SAVEPOINT active_record_1
329
+ SQL (0.1ms) INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
331
+  (0.0ms) SAVEPOINT active_record_1
332
+ SQL (0.1ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
334
+ Processing by BooksController#show as HTML
335
+ Parameters: {"id"=>"1"}
336
+ Book Load (0.1ms) SELECT "books".* FROM "books" WHERE "books"."id" = ? LIMIT 1 [["id", "1"]]
337
+ Completed 200 OK in 3ms (Views: 1.2ms | ActiveRecord: 0.1ms)
338
+  (0.5ms) rollback transaction
339
+  (0.0ms) begin transaction
340
+ -----------------------------------------------------------------------
341
+ FastlyHeadersTest: test_/books/:id_show_page_should_have_fastly_headers
342
+ -----------------------------------------------------------------------
343
+  (0.1ms) SAVEPOINT active_record_1
344
+ SQL (0.3ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
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
+ Book Load (0.1ms) SELECT "books".* FROM "books" WHERE "books"."id" = ? LIMIT 1 [["id", "1"]]
350
+ Completed 200 OK in 2ms (Views: 0.8ms | ActiveRecord: 0.1ms)
351
+  (0.4ms) rollback transaction
352
+  (0.0ms) 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
+  (0.1ms) rollback transaction
360
+  (0.0ms) begin transaction
361
+ ----------------------------------------------------------------------------------------------
362
+ FastlyHeadersTest: test_DELETE_/books/:id_should_not_have_fastly_headers/_fastly_header_values
363
+ ----------------------------------------------------------------------------------------------
364
+  (0.1ms) SAVEPOINT active_record_1
365
+ SQL (0.3ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
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
+ Book Load (0.0ms) SELECT "books".* FROM "books" WHERE "books"."id" = ? LIMIT 1 [["id", "1"]]
371
+  (0.0ms) SAVEPOINT active_record_1
372
+ SQL (0.3ms) DELETE FROM "books" WHERE "books"."id" = ? [["id", 1]]
373
+  (0.0ms) RELEASE SAVEPOINT active_record_1
374
+ Redirected to http://www.example.com/books
375
+ Completed 302 Found in 2ms (ActiveRecord: 0.4ms)
376
+  (0.1ms) SELECT COUNT(*) FROM "books" WHERE "books"."id" = 1
377
+  (0.3ms) rollback transaction
378
+  (0.0ms) begin transaction
379
+ ----------------------------------------------------------------------------------------
380
+ FastlyHeadersTest: test_POST_/books_should_not_have_fastly_headers/_fastly_header_values
381
+ ----------------------------------------------------------------------------------------
382
+  (0.1ms) SELECT COUNT(*) FROM "books"
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
+  (0.1ms) SAVEPOINT active_record_1
387
+ SQL (0.4ms) INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
389
+ Redirected to http://www.example.com/books
390
+ Completed 302 Found in 2ms (ActiveRecord: 0.5ms)
391
+  (0.0ms) SELECT COUNT(*) FROM "books"
392
+  (0.3ms) rollback transaction
393
+  (0.1ms) begin transaction
394
+ -------------------------------------------------------------------------------------------
395
+ FastlyHeadersTest: test_PUT_/books/:id_should_not_have_fastly_headers/_fastly_header_values
396
+ -------------------------------------------------------------------------------------------
397
+  (0.0ms) SAVEPOINT active_record_1
398
+ SQL (0.2ms) 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", "some new book"], ["updated_at", Wed, 23 Apr 2014 23:08:28 UTC +00:00]]
399
+  (0.0ms) 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
+ Book Load (0.0ms) SELECT "books".* FROM "books" WHERE "books"."id" = ? LIMIT 1 [["id", "1"]]
404
+  (0.0ms) SAVEPOINT active_record_1
405
+ SQL (0.3ms) UPDATE "books" SET "name" = ?, "updated_at" = ? WHERE "books"."id" = 1 [["name", "changed book"], ["updated_at", Wed, 23 Apr 2014 23:08:28 UTC +00:00]]
406
+  (0.0ms) RELEASE SAVEPOINT active_record_1
407
+ Redirected to http://www.example.com/books/1
408
+ Completed 302 Found in 3ms (ActiveRecord: 0.5ms)
409
+ Book Load (0.0ms) SELECT "books".* FROM "books" WHERE "books"."id" = ? LIMIT 1 [["id", 1]]
410
+  (0.3ms) rollback transaction
411
+  (0.0ms) begin transaction
412
+  (0.1ms) commit transaction
413
+  (0.0ms) begin transaction
414
+  (0.0ms) rollback transaction
415
+  (0.0ms) begin transaction
416
+ -------------------------------------------------------------------------------------------------
417
+ FastlyRails::CacheControlHeadersTest: test_sets_cache_control_headers_on_actioncontroller_request
418
+ -------------------------------------------------------------------------------------------------
419
+  (0.1ms) rollback transaction
420
+  (0.0ms) begin transaction
421
+  (0.0ms) commit transaction
422
+  (0.0ms) begin transaction
423
+  (0.0ms) rollback transaction
424
+  (0.1ms) begin transaction
425
+  (0.0ms) commit transaction
426
+  (0.0ms) begin transaction
427
+  (0.0ms) rollback transaction
428
+  (0.0ms) begin transaction
429
+  (0.0ms) commit transaction
430
+  (0.0ms) begin transaction
431
+  (0.0ms) rollback transaction
432
+  (0.0ms) begin transaction
433
+  (0.0ms) commit transaction
434
+  (0.0ms) begin transaction
435
+  (0.0ms) rollback transaction
436
+  (0.1ms) begin transaction
437
+  (0.0ms) commit transaction
438
+  (0.0ms) begin transaction
439
+  (0.0ms) rollback transaction
440
+  (0.1ms) begin transaction
441
+  (0.0ms) commit transaction
442
+  (0.0ms) begin transaction
443
+  (0.0ms) rollback transaction
444
+  (0.0ms) begin transaction
445
+  (0.0ms) commit transaction
446
+  (0.0ms) begin transaction
447
+  (0.0ms) rollback transaction
448
+  (0.0ms) begin transaction
449
+  (0.0ms) commit transaction
450
+  (0.0ms) begin transaction
451
+  (0.0ms) rollback transaction
452
+  (0.0ms) begin transaction
453
+  (0.0ms) commit transaction
454
+  (0.0ms) begin transaction
455
+  (0.0ms) rollback transaction
456
+  (0.0ms) begin transaction
457
+  (0.0ms) commit transaction
458
+  (0.0ms) begin transaction
459
+  (0.0ms) rollback transaction
460
+  (0.0ms) begin transaction
461
+  (0.0ms) commit transaction
462
+  (0.0ms) begin transaction
463
+  (0.0ms) rollback transaction
464
+  (0.0ms) begin transaction
465
+  (0.0ms) commit transaction
466
+  (0.0ms) begin transaction
467
+  (0.0ms) rollback transaction
468
+  (0.0ms) begin transaction
469
+  (0.0ms) commit transaction
470
+  (0.0ms) begin transaction
471
+  (0.0ms) rollback transaction
472
+  (0.0ms) begin transaction
473
+  (0.0ms) commit transaction
474
+  (0.0ms) begin transaction
475
+  (0.0ms) rollback transaction
476
+  (0.0ms) begin transaction
477
+  (0.0ms) commit transaction
478
+  (0.0ms) begin transaction
479
+  (0.0ms) rollback transaction
480
+  (0.0ms) begin transaction
481
+  (0.0ms) commit transaction
482
+  (0.0ms) begin transaction
483
+  (0.0ms) rollback transaction
484
+ Connecting to database specified by database.yml
485
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
486
+ Migrating to CreateBooks (20140407202136)
487
+  (0.1ms) begin transaction
488
+  (0.0ms) commit transaction
489
+  (0.0ms) begin transaction
490
+  (0.0ms) SAVEPOINT active_record_1
491
+ SQL (2.0ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
493
+  (0.7ms) rollback transaction
494
+  (0.0ms) begin transaction
495
+  (0.0ms) commit transaction
496
+  (0.0ms) begin transaction
497
+  (0.0ms) rollback transaction
498
+  (0.0ms) begin transaction
499
+  (0.0ms) commit transaction
500
+  (0.0ms) begin transaction
501
+  (0.0ms) SAVEPOINT active_record_1
502
+ SQL (0.2ms) 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 Diaries with a Thousand Faces"], ["updated_at", Wed, 23 Apr 2014 23:19:50 UTC +00:00]]
503
+  (0.0ms) RELEASE SAVEPOINT active_record_1
504
+  (0.2ms) rollback transaction
505
+  (0.0ms) begin transaction
506
+  (0.0ms) commit transaction
507
+  (0.0ms) begin transaction
508
+  (0.0ms) SAVEPOINT active_record_1
509
+ SQL (0.2ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
511
+  (0.2ms) rollback transaction
512
+  (0.0ms) begin transaction
513
+  (0.0ms) commit transaction
514
+  (0.0ms) begin transaction
515
+  (0.0ms) SAVEPOINT active_record_1
516
+ SQL (0.2ms) 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", "Tokyo Dreams"], ["updated_at", Wed, 23 Apr 2014 23:19:50 UTC +00:00]]
517
+  (0.0ms) RELEASE SAVEPOINT active_record_1
518
+  (0.2ms) rollback transaction
519
+  (0.0ms) begin transaction
520
+  (0.0ms) SAVEPOINT active_record_1
521
+ SQL (0.3ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
523
+  (0.0ms) SAVEPOINT active_record_1
524
+ SQL (0.7ms) INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
526
+  (0.0ms) SAVEPOINT active_record_1
527
+ SQL (0.1ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
529
+  (0.0ms) SAVEPOINT active_record_1
530
+ SQL (0.1ms) INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
532
+  (0.0ms) SAVEPOINT active_record_1
533
+ SQL (0.1ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
535
+  (0.0ms) SELECT COUNT(*) FROM "books"
536
+ Processing by BooksController#create as HTML
537
+ Parameters: {"book"=>{"name"=>"newly-created-book"}}
538
+  (0.0ms) SAVEPOINT active_record_1
539
+ SQL (0.1ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
541
+ Redirected to http://test.host/books
542
+ Completed 302 Found in 1.5ms (ActiveRecord: 0.2ms)
543
+  (0.0ms) SELECT COUNT(*) FROM "books"
544
+  (0.3ms) rollback transaction
545
+  (0.0ms) begin transaction
546
+  (0.0ms) SAVEPOINT active_record_1
547
+ SQL (0.2ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
549
+  (0.0ms) SAVEPOINT active_record_1
550
+ SQL (0.2ms) INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
552
+  (0.0ms) SAVEPOINT active_record_1
553
+ SQL (0.1ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
555
+  (0.0ms) SAVEPOINT active_record_1
556
+ SQL (0.1ms) INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
558
+  (0.0ms) SAVEPOINT active_record_1
559
+ SQL (0.1ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
561
+ Processing by BooksController#index as HTML
562
+ Book Load (0.1ms) SELECT "books".* FROM "books"
563
+ Completed 200 OK in 5.8ms (Views: 4.9ms | ActiveRecord: 0.1ms)
564
+  (0.4ms) rollback transaction
565
+  (0.0ms) begin transaction
566
+  (0.0ms) SAVEPOINT active_record_1
567
+ SQL (0.3ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
569
+  (0.0ms) SAVEPOINT active_record_1
570
+ SQL (0.2ms) INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
572
+  (0.0ms) SAVEPOINT active_record_1
573
+ SQL (0.1ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
575
+  (0.0ms) SAVEPOINT active_record_1
576
+ SQL (0.1ms) INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
578
+  (0.0ms) SAVEPOINT active_record_1
579
+ SQL (0.1ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
581
+ Processing by BooksController#show as HTML
582
+ Parameters: {"id"=>"1"}
583
+ Book Load (0.1ms) 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
+  (0.4ms) rollback transaction
586
+  (0.0ms) begin transaction
587
+  (0.0ms) SAVEPOINT active_record_1
588
+ SQL (0.2ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
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
+ Book Load (0.0ms) 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
+  (0.4ms) rollback transaction
596
+  (0.0ms) 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
+ Book Load (0.1ms) SELECT "books".* FROM "books" 
600
+ Completed 200 OK in 1.6ms (Views: 0.9ms | ActiveRecord: 0.1ms)
601
+  (0.0ms) rollback transaction
602
+  (0.0ms) begin transaction
603
+  (0.1ms) SAVEPOINT active_record_1
604
+ SQL (0.4ms) 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", "Christmas on Turcotte Mission"], ["updated_at", Wed, 23 Apr 2014 23:19:50 UTC +00:00]]
605
+  (0.0ms) 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
+ Book Load (0.1ms) SELECT "books".* FROM "books" WHERE "books"."id" = ? LIMIT 1 [["id", "1"]]
610
+  (0.0ms) SAVEPOINT active_record_1
611
+ SQL (0.3ms) DELETE FROM "books" WHERE "books"."id" = ? [["id", 1]]
612
+  (0.0ms) RELEASE SAVEPOINT active_record_1
613
+ Redirected to http://www.example.com/books
614
+ Completed 302 Found in 2.2ms (ActiveRecord: 0.4ms)
615
+  (0.1ms) SELECT COUNT(*) FROM "books" WHERE "books"."id" = 1
616
+  (0.3ms) rollback transaction
617
+  (0.0ms) begin transaction
618
+  (0.1ms) 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
+  (0.0ms) SAVEPOINT active_record_1
623
+ SQL (0.2ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
625
+ Redirected to http://www.example.com/books
626
+ Completed 302 Found in 1.5ms (ActiveRecord: 0.3ms)
627
+  (0.0ms) SELECT COUNT(*) FROM "books"
628
+  (0.3ms) rollback transaction
629
+  (0.0ms) begin transaction
630
+  (0.0ms) SAVEPOINT active_record_1
631
+ SQL (0.3ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
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
+ Book Load (0.0ms) SELECT "books".* FROM "books" WHERE "books"."id" = ? LIMIT 1 [["id", "1"]]
637
+  (0.0ms) SAVEPOINT active_record_1
638
+  (0.2ms) UPDATE "books" SET "name" = 'changed book', "updated_at" = '2014-04-23 23:19:50.159776' WHERE "books"."id" = 1
639
+  (0.0ms) RELEASE SAVEPOINT active_record_1
640
+ Redirected to http://www.example.com/books/1
641
+ Completed 302 Found in 2.7ms (ActiveRecord: 0.3ms)
642
+ Book Load (0.0ms) SELECT "books".* FROM "books" WHERE "books"."id" = ? LIMIT 1 [["id", 1]]
643
+  (0.3ms) rollback transaction
644
+  (0.0ms) begin transaction
645
+  (0.0ms) commit transaction
646
+  (0.0ms) begin transaction
647
+  (0.0ms) rollback transaction
648
+  (0.0ms) begin transaction
649
+  (0.0ms) rollback transaction
650
+  (0.0ms) begin transaction
651
+  (0.0ms) commit transaction
652
+  (0.0ms) begin transaction
653
+  (0.0ms) rollback transaction
654
+  (0.0ms) begin transaction
655
+  (0.0ms) commit transaction
656
+  (0.0ms) begin transaction
657
+  (0.0ms) rollback transaction
658
+  (0.0ms) begin transaction
659
+  (0.0ms) commit transaction
660
+  (0.0ms) begin transaction
661
+  (0.0ms) rollback transaction
662
+  (0.0ms) begin transaction
663
+  (0.0ms) commit transaction
664
+  (0.0ms) begin transaction
665
+  (0.0ms) rollback transaction
666
+  (0.0ms) begin transaction
667
+  (0.0ms) commit transaction
668
+  (0.0ms) begin transaction
669
+  (0.0ms) rollback transaction
670
+  (0.0ms) begin transaction
671
+  (0.0ms) commit transaction
672
+  (0.0ms) begin transaction
673
+  (0.0ms) rollback transaction
674
+  (0.0ms) begin transaction
675
+  (0.0ms) commit transaction
676
+  (0.0ms) begin transaction
677
+  (0.0ms) rollback transaction
678
+  (0.0ms) begin transaction
679
+  (0.0ms) commit transaction
680
+  (0.0ms) begin transaction
681
+  (0.0ms) rollback transaction
682
+  (0.0ms) begin transaction
683
+  (0.0ms) commit transaction
684
+  (0.0ms) begin transaction
685
+  (0.0ms) rollback transaction
686
+  (0.0ms) begin transaction
687
+  (0.0ms) commit transaction
688
+  (0.0ms) begin transaction
689
+  (0.0ms) rollback transaction
690
+  (0.0ms) begin transaction
691
+  (0.0ms) commit transaction
692
+  (0.0ms) begin transaction
693
+  (0.0ms) rollback transaction
694
+  (0.0ms) begin transaction
695
+  (0.0ms) commit transaction
696
+  (0.0ms) begin transaction
697
+  (0.0ms) rollback transaction
698
+  (0.0ms) begin transaction
699
+  (0.0ms) commit transaction
700
+  (0.0ms) begin transaction
701
+  (0.0ms) rollback transaction
702
+  (0.0ms) begin transaction
703
+  (0.0ms) commit transaction
704
+  (0.0ms) begin transaction
705
+  (0.0ms) rollback transaction
706
+  (0.0ms) begin transaction
707
+  (0.0ms) commit transaction
708
+  (0.0ms) begin transaction
709
+  (0.0ms) rollback transaction
710
+  (0.0ms) begin transaction
711
+  (0.0ms) commit transaction
712
+  (0.0ms) begin transaction
713
+  (0.0ms) rollback transaction
714
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
715
+  (0.1ms) begin transaction
716
+  (0.0ms) commit transaction
717
+  (0.0ms) begin transaction
718
+  (0.0ms) rollback transaction
719
+  (0.0ms) begin transaction
720
+  (0.0ms) commit transaction
721
+  (0.0ms) begin transaction
722
+ SQL (1.9ms) 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", "Flying Brains"], ["updated_at", Wed, 23 Apr 2014 23:19:52 UTC +00:00]]
723
+  (0.8ms) rollback transaction
724
+  (0.0ms) begin transaction
725
+  (0.0ms) commit transaction
726
+  (0.0ms) begin transaction
727
+ SQL (0.4ms) 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
+  (0.3ms) rollback transaction
729
+  (0.1ms) begin transaction
730
+  (0.0ms) commit transaction
731
+  (0.0ms) begin transaction
732
+ SQL (0.3ms) 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", "Hard Boiled Wizard"], ["updated_at", Wed, 23 Apr 2014 23:19:52 UTC +00:00]]
733
+  (0.3ms) rollback transaction
734
+  (0.0ms) begin transaction
735
+  (0.0ms) commit transaction
736
+  (0.0ms) begin transaction
737
+ SQL (0.2ms) 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
+  (0.2ms) rollback transaction
739
+  (0.0ms) begin transaction
740
+ --------------------------------
741
+ BooksControllerTest: test_create
742
+ --------------------------------
743
+  (0.1ms) SAVEPOINT active_record_1
744
+ SQL (0.3ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
746
+  (0.0ms) SAVEPOINT active_record_1
747
+ SQL (0.2ms) INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
749
+  (0.0ms) SAVEPOINT active_record_1
750
+ SQL (0.1ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
752
+  (0.0ms) SAVEPOINT active_record_1
753
+ SQL (0.1ms) INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
755
+  (0.0ms) SAVEPOINT active_record_1
756
+ SQL (0.1ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
758
+  (0.1ms) SELECT COUNT(*) FROM "books"
759
+ Processing by BooksController#create as HTML
760
+ Parameters: {"book"=>{"name"=>"newly-created-book"}}
761
+  (0.0ms) SAVEPOINT active_record_1
762
+ SQL (0.2ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
764
+ Redirected to http://test.host/books
765
+ Completed 302 Found in 2ms (ActiveRecord: 0.2ms)
766
+  (0.1ms) SELECT COUNT(*) FROM "books"
767
+  (0.3ms) rollback transaction
768
+  (0.1ms) begin transaction
769
+ -------------------------------
770
+ BooksControllerTest: test_index
771
+ -------------------------------
772
+  (0.0ms) SAVEPOINT active_record_1
773
+ SQL (0.2ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
775
+  (0.0ms) SAVEPOINT active_record_1
776
+ SQL (0.2ms) INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
778
+  (0.0ms) SAVEPOINT active_record_1
779
+ SQL (0.1ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
781
+  (0.0ms) SAVEPOINT active_record_1
782
+ SQL (0.1ms) INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
784
+  (0.0ms) SAVEPOINT active_record_1
785
+ SQL (0.1ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
787
+ Processing by BooksController#index as HTML
788
+ Completed 200 OK in 9ms (Views: 8.5ms | ActiveRecord: 0.0ms)
789
+  (0.1ms) SELECT COUNT(*) FROM "books"
790
+  (0.4ms) rollback transaction
791
+  (0.1ms) begin transaction
792
+ ------------------------------
793
+ BooksControllerTest: test_show
794
+ ------------------------------
795
+  (0.0ms) SAVEPOINT active_record_1
796
+ SQL (0.3ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
798
+  (0.0ms) SAVEPOINT active_record_1
799
+ SQL (0.3ms) INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
801
+  (0.0ms) SAVEPOINT active_record_1
802
+ SQL (0.1ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
804
+  (0.0ms) SAVEPOINT active_record_1
805
+ SQL (0.1ms) INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
807
+  (0.0ms) SAVEPOINT active_record_1
808
+ SQL (0.1ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
810
+ Processing by BooksController#show as HTML
811
+ Parameters: {"id"=>"1"}
812
+ Book Load (0.1ms) SELECT "books".* FROM "books" WHERE "books"."id" = ? LIMIT 1 [["id", "1"]]
813
+ Completed 200 OK in 3ms (Views: 1.5ms | ActiveRecord: 0.1ms)
814
+  (0.4ms) rollback transaction
815
+  (0.0ms) begin transaction
816
+ -----------------------------------------------------------------------
817
+ FastlyHeadersTest: test_/books/:id_show_page_should_have_fastly_headers
818
+ -----------------------------------------------------------------------
819
+  (0.1ms) SAVEPOINT active_record_1
820
+ SQL (0.3ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
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
+ Book Load (0.1ms) SELECT "books".* FROM "books" WHERE "books"."id" = ? LIMIT 1 [["id", "1"]]
826
+ Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.1ms)
827
+  (0.4ms) rollback transaction
828
+  (0.0ms) 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
+  (0.1ms) rollback transaction
836
+  (0.0ms) begin transaction
837
+ ----------------------------------------------------------------------------------------------
838
+ FastlyHeadersTest: test_DELETE_/books/:id_should_not_have_fastly_headers/_fastly_header_values
839
+ ----------------------------------------------------------------------------------------------
840
+  (0.0ms) SAVEPOINT active_record_1
841
+ SQL (0.3ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
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
+ Book Load (0.1ms) SELECT "books".* FROM "books" WHERE "books"."id" = ? LIMIT 1 [["id", "1"]]
847
+  (0.0ms) SAVEPOINT active_record_1
848
+ SQL (0.2ms) DELETE FROM "books" WHERE "books"."id" = ? [["id", 1]]
849
+  (0.0ms) RELEASE SAVEPOINT active_record_1
850
+ Redirected to http://www.example.com/books
851
+ Completed 302 Found in 2ms (ActiveRecord: 0.4ms)
852
+  (0.1ms) SELECT COUNT(*) FROM "books" WHERE "books"."id" = 1
853
+  (0.3ms) rollback transaction
854
+  (0.1ms) begin transaction
855
+ ----------------------------------------------------------------------------------------
856
+ FastlyHeadersTest: test_POST_/books_should_not_have_fastly_headers/_fastly_header_values
857
+ ----------------------------------------------------------------------------------------
858
+  (0.1ms) SELECT COUNT(*) FROM "books"
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
+  (0.0ms) SAVEPOINT active_record_1
863
+ SQL (0.2ms) INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
865
+ Redirected to http://www.example.com/books
866
+ Completed 302 Found in 2ms (ActiveRecord: 0.3ms)
867
+  (0.1ms) SELECT COUNT(*) FROM "books"
868
+  (0.3ms) rollback transaction
869
+  (0.0ms) begin transaction
870
+ -------------------------------------------------------------------------------------------
871
+ FastlyHeadersTest: test_PUT_/books/:id_should_not_have_fastly_headers/_fastly_header_values
872
+ -------------------------------------------------------------------------------------------
873
+  (0.0ms) SAVEPOINT active_record_1
874
+ SQL (0.3ms) 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", "some new book"], ["updated_at", Wed, 23 Apr 2014 23:19:52 UTC +00:00]]
875
+  (0.0ms) 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
+ Book Load (0.0ms) SELECT "books".* FROM "books" WHERE "books"."id" = ? LIMIT 1 [["id", "1"]]
880
+  (0.0ms) SAVEPOINT active_record_1
881
+ SQL (0.3ms) UPDATE "books" SET "name" = ?, "updated_at" = ? WHERE "books"."id" = 1 [["name", "changed book"], ["updated_at", Wed, 23 Apr 2014 23:19:52 UTC +00:00]]
882
+  (0.0ms) RELEASE SAVEPOINT active_record_1
883
+ Redirected to http://www.example.com/books/1
884
+ Completed 302 Found in 3ms (ActiveRecord: 0.5ms)
885
+ Book Load (0.0ms) SELECT "books".* FROM "books" WHERE "books"."id" = ? LIMIT 1 [["id", 1]]
886
+  (0.3ms) rollback transaction
887
+  (0.0ms) begin transaction
888
+  (0.0ms) commit transaction
889
+  (0.0ms) begin transaction
890
+  (0.0ms) rollback transaction
891
+  (0.0ms) begin transaction
892
+ -------------------------------------------------------------------------------------------------
893
+ FastlyRails::CacheControlHeadersTest: test_sets_cache_control_headers_on_actioncontroller_request
894
+ -------------------------------------------------------------------------------------------------
895
+  (0.0ms) rollback transaction
896
+  (0.0ms) begin transaction
897
+  (0.0ms) commit transaction
898
+  (0.0ms) begin transaction
899
+  (0.0ms) rollback transaction
900
+  (0.0ms) begin transaction
901
+  (0.0ms) commit transaction
902
+  (0.0ms) begin transaction
903
+  (0.1ms) rollback transaction
904
+  (0.0ms) begin transaction
905
+  (0.0ms) commit transaction
906
+  (0.0ms) begin transaction
907
+  (0.0ms) rollback transaction
908
+  (0.0ms) begin transaction
909
+  (0.0ms) commit transaction
910
+  (0.0ms) begin transaction
911
+  (0.0ms) rollback transaction
912
+  (0.0ms) begin transaction
913
+  (0.1ms) commit transaction
914
+  (0.0ms) begin transaction
915
+  (0.0ms) rollback transaction
916
+  (0.0ms) begin transaction
917
+  (0.0ms) commit transaction
918
+  (0.0ms) begin transaction
919
+  (0.0ms) rollback transaction
920
+  (0.0ms) begin transaction
921
+  (0.0ms) commit transaction
922
+  (0.0ms) begin transaction
923
+  (0.0ms) rollback transaction
924
+  (0.1ms) begin transaction
925
+  (0.0ms) commit transaction
926
+  (0.0ms) begin transaction
927
+  (0.0ms) rollback transaction
928
+  (0.0ms) begin transaction
929
+  (0.0ms) commit transaction
930
+  (0.0ms) begin transaction
931
+  (0.0ms) rollback transaction
932
+  (0.0ms) begin transaction
933
+  (0.0ms) commit transaction
934
+  (0.0ms) begin transaction
935
+  (0.0ms) rollback transaction
936
+  (0.0ms) begin transaction
937
+  (0.0ms) commit transaction
938
+  (0.0ms) begin transaction
939
+  (0.0ms) rollback transaction
940
+  (0.0ms) begin transaction
941
+  (0.0ms) commit transaction
942
+  (0.0ms) begin transaction
943
+  (0.0ms) rollback transaction
944
+  (0.0ms) begin transaction
945
+  (0.0ms) commit transaction
946
+  (0.0ms) begin transaction
947
+  (0.0ms) rollback transaction
948
+  (0.0ms) begin transaction
949
+  (0.0ms) commit transaction
950
+  (0.0ms) begin transaction
951
+  (0.0ms) rollback transaction
952
+  (0.0ms) begin transaction
953
+  (0.0ms) commit transaction
954
+  (0.0ms) begin transaction
955
+  (0.0ms) rollback transaction
956
+  (0.0ms) begin transaction
957
+  (0.0ms) commit transaction
958
+  (0.0ms) begin transaction
959
+  (0.0ms) rollback transaction
960
+ Connecting to database specified by database.yml
961
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
962
+ Migrating to CreateBooks (20140407202136)
963
+  (0.1ms) begin transaction
964
+  (0.0ms) commit transaction
965
+  (0.0ms) begin transaction
966
+  (0.0ms) SAVEPOINT active_record_1
967
+ SQL (2.1ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
969
+  (0.7ms) rollback transaction
970
+  (0.0ms) begin transaction
971
+  (0.0ms) commit transaction
972
+  (0.0ms) begin transaction
973
+  (0.0ms) SAVEPOINT active_record_1
974
+ SQL (0.2ms) 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", "Legend of Cousins"], ["updated_at", Wed, 23 Apr 2014 23:21:01 UTC +00:00]]
975
+  (0.0ms) RELEASE SAVEPOINT active_record_1
976
+  (0.2ms) rollback transaction
977
+  (0.0ms) begin transaction
978
+  (0.0ms) commit transaction
979
+  (0.0ms) begin transaction
980
+  (0.0ms) SAVEPOINT active_record_1
981
+ SQL (0.2ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
983
+  (0.2ms) rollback transaction
984
+  (0.0ms) begin transaction
985
+  (0.0ms) commit transaction
986
+  (0.0ms) begin transaction
987
+  (0.0ms) rollback transaction
988
+  (0.0ms) begin transaction
989
+  (0.0ms) commit transaction
990
+  (0.0ms) begin transaction
991
+  (0.0ms) SAVEPOINT active_record_1
992
+ SQL (0.3ms) 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", "Death Mutant 2: Son of Death Mutant"], ["updated_at", Wed, 23 Apr 2014 23:21:01 UTC +00:00]]
993
+  (0.0ms) RELEASE SAVEPOINT active_record_1
994
+  (0.2ms) rollback transaction
995
+  (0.0ms) begin transaction
996
+  (0.0ms) SAVEPOINT active_record_1
997
+ SQL (0.3ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
999
+  (0.0ms) SAVEPOINT active_record_1
1000
+ SQL (0.3ms) INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1002
+  (0.0ms) SAVEPOINT active_record_1
1003
+ SQL (0.1ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1005
+  (0.0ms) SAVEPOINT active_record_1
1006
+ SQL (0.1ms) INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1008
+  (0.0ms) SAVEPOINT active_record_1
1009
+ SQL (0.1ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1011
+  (0.0ms) SELECT COUNT(*) FROM "books"
1012
+ Processing by BooksController#create as HTML
1013
+ Parameters: {"book"=>{"name"=>"newly-created-book"}}
1014
+  (0.0ms) SAVEPOINT active_record_1
1015
+ SQL (0.1ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1017
+ Redirected to http://test.host/books
1018
+ Completed 302 Found in 1.7ms (ActiveRecord: 0.2ms)
1019
+  (0.0ms) SELECT COUNT(*) FROM "books"
1020
+  (0.3ms) rollback transaction
1021
+  (0.0ms) begin transaction
1022
+  (0.0ms) SAVEPOINT active_record_1
1023
+ SQL (0.2ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1025
+  (0.0ms) SAVEPOINT active_record_1
1026
+ SQL (0.2ms) INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1028
+  (0.0ms) SAVEPOINT active_record_1
1029
+ SQL (0.1ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1031
+  (0.0ms) SAVEPOINT active_record_1
1032
+ SQL (0.1ms) INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1034
+  (0.0ms) SAVEPOINT active_record_1
1035
+ SQL (0.1ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1037
+ Processing by BooksController#index as HTML
1038
+ Book Load (0.1ms) SELECT "books".* FROM "books"
1039
+ Completed 200 OK in 6.4ms (Views: 5.3ms | ActiveRecord: 0.1ms)
1040
+  (0.3ms) rollback transaction
1041
+  (0.0ms) begin transaction
1042
+  (0.1ms) SAVEPOINT active_record_1
1043
+ SQL (0.2ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1045
+  (0.0ms) SAVEPOINT active_record_1
1046
+ SQL (0.2ms) INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1048
+  (0.0ms) SAVEPOINT active_record_1
1049
+ SQL (0.1ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1051
+  (0.0ms) SAVEPOINT active_record_1
1052
+ SQL (0.1ms) INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1054
+  (0.0ms) SAVEPOINT active_record_1
1055
+ SQL (0.1ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1057
+ Processing by BooksController#show as HTML
1058
+ Parameters: {"id"=>"1"}
1059
+ Book Load (0.1ms) 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
+  (0.2ms) rollback transaction
1062
+  (0.0ms) begin transaction
1063
+  (0.0ms) SAVEPOINT active_record_1
1064
+ SQL (0.2ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
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
+ Book Load (0.1ms) 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
+  (0.3ms) rollback transaction
1072
+  (0.0ms) 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
+ Book Load (0.2ms) SELECT "books".* FROM "books" 
1076
+ Completed 200 OK in 1.4ms (Views: 0.8ms | ActiveRecord: 0.2ms)
1077
+  (0.0ms) rollback transaction
1078
+  (0.0ms) begin transaction
1079
+  (0.0ms) SAVEPOINT active_record_1
1080
+ SQL (0.3ms) 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", "Action Ninja"], ["updated_at", Wed, 23 Apr 2014 23:21:01 UTC +00:00]]
1081
+  (0.0ms) 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
+ Book Load (0.0ms) SELECT "books".* FROM "books" WHERE "books"."id" = ? LIMIT 1 [["id", "1"]]
1086
+  (0.0ms) SAVEPOINT active_record_1
1087
+ SQL (0.2ms) DELETE FROM "books" WHERE "books"."id" = ? [["id", 1]]
1088
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1089
+ Redirected to http://www.example.com/books
1090
+ Completed 302 Found in 1.9ms (ActiveRecord: 0.3ms)
1091
+  (0.1ms) SELECT COUNT(*) FROM "books" WHERE "books"."id" = 1
1092
+  (0.3ms) rollback transaction
1093
+  (0.0ms) begin transaction
1094
+  (0.1ms) 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
+  (0.0ms) SAVEPOINT active_record_1
1099
+ SQL (0.2ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1101
+ Redirected to http://www.example.com/books
1102
+ Completed 302 Found in 1.4ms (ActiveRecord: 0.3ms)
1103
+  (0.0ms) SELECT COUNT(*) FROM "books"
1104
+  (0.3ms) rollback transaction
1105
+  (0.0ms) begin transaction
1106
+  (0.0ms) SAVEPOINT active_record_1
1107
+ SQL (0.3ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
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
+ Book Load (0.0ms) SELECT "books".* FROM "books" WHERE "books"."id" = ? LIMIT 1 [["id", "1"]]
1113
+  (0.0ms) SAVEPOINT active_record_1
1114
+  (0.3ms) UPDATE "books" SET "name" = 'changed book', "updated_at" = '2014-04-23 23:21:01.813750' WHERE "books"."id" = 1
1115
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1116
+ Redirected to http://www.example.com/books/1
1117
+ Completed 302 Found in 3.1ms (ActiveRecord: 0.4ms)
1118
+ Book Load (0.0ms) SELECT "books".* FROM "books" WHERE "books"."id" = ? LIMIT 1 [["id", 1]]
1119
+  (0.3ms) rollback transaction
1120
+  (0.0ms) begin transaction
1121
+  (0.0ms) commit transaction
1122
+  (0.0ms) begin transaction
1123
+  (0.0ms) rollback transaction
1124
+  (0.0ms) begin transaction
1125
+  (0.0ms) rollback transaction
1126
+  (0.0ms) begin transaction
1127
+  (0.0ms) commit transaction
1128
+  (0.0ms) begin transaction
1129
+  (0.0ms) rollback transaction
1130
+  (0.0ms) begin transaction
1131
+  (0.0ms) commit transaction
1132
+  (0.0ms) begin transaction
1133
+  (0.0ms) rollback transaction
1134
+  (0.0ms) begin transaction
1135
+  (0.0ms) commit transaction
1136
+  (0.0ms) begin transaction
1137
+  (0.0ms) rollback transaction
1138
+  (0.0ms) begin transaction
1139
+  (0.0ms) commit transaction
1140
+  (0.0ms) begin transaction
1141
+  (0.0ms) rollback transaction
1142
+  (0.0ms) begin transaction
1143
+  (0.0ms) commit transaction
1144
+  (0.0ms) begin transaction
1145
+  (0.0ms) rollback transaction
1146
+  (0.0ms) begin transaction
1147
+  (0.0ms) commit transaction
1148
+  (0.0ms) begin transaction
1149
+  (0.0ms) rollback transaction
1150
+  (0.0ms) begin transaction
1151
+  (0.0ms) commit transaction
1152
+  (0.0ms) begin transaction
1153
+  (0.0ms) rollback transaction
1154
+  (0.0ms) begin transaction
1155
+  (0.0ms) commit transaction
1156
+  (0.0ms) begin transaction
1157
+  (0.0ms) rollback transaction
1158
+  (0.0ms) begin transaction
1159
+  (0.0ms) commit transaction
1160
+  (0.0ms) begin transaction
1161
+  (0.0ms) rollback transaction
1162
+  (0.0ms) begin transaction
1163
+  (0.0ms) commit transaction
1164
+  (0.0ms) begin transaction
1165
+  (0.0ms) rollback transaction
1166
+  (0.0ms) begin transaction
1167
+  (0.0ms) commit transaction
1168
+  (0.0ms) begin transaction
1169
+  (0.0ms) rollback transaction
1170
+  (0.0ms) begin transaction
1171
+  (0.0ms) commit transaction
1172
+  (0.0ms) begin transaction
1173
+  (0.0ms) rollback transaction
1174
+  (0.0ms) begin transaction
1175
+  (0.0ms) commit transaction
1176
+  (0.0ms) begin transaction
1177
+  (0.0ms) rollback transaction
1178
+  (0.0ms) begin transaction
1179
+  (0.0ms) commit transaction
1180
+  (0.0ms) begin transaction
1181
+  (0.0ms) rollback transaction
1182
+  (0.0ms) begin transaction
1183
+  (0.0ms) commit transaction
1184
+  (0.0ms) begin transaction
1185
+  (0.0ms) rollback transaction
1186
+  (0.0ms) begin transaction
1187
+  (0.0ms) commit transaction
1188
+  (0.0ms) begin transaction
1189
+  (0.0ms) rollback transaction
1190
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1191
+  (0.1ms) begin transaction
1192
+  (0.0ms) commit transaction
1193
+  (0.0ms) begin transaction
1194
+ SQL (1.7ms) 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 Death Jungle from the Black Lagoon"], ["updated_at", Wed, 23 Apr 2014 23:21:03 UTC +00:00]]
1195
+  (0.9ms) rollback transaction
1196
+  (0.0ms) begin transaction
1197
+  (0.0ms) commit transaction
1198
+  (0.0ms) begin transaction
1199
+  (0.0ms) rollback transaction
1200
+  (0.0ms) begin transaction
1201
+  (0.1ms) commit transaction
1202
+  (0.0ms) begin transaction
1203
+ SQL (0.2ms) 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
+  (0.3ms) rollback transaction
1205
+  (0.0ms) begin transaction
1206
+  (0.0ms) commit transaction
1207
+  (0.0ms) begin transaction
1208
+ SQL (0.2ms) 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", "Nuclear World"], ["updated_at", Wed, 23 Apr 2014 23:21:03 UTC +00:00]]
1209
+  (0.2ms) rollback transaction
1210
+  (0.0ms) begin transaction
1211
+  (0.0ms) commit transaction
1212
+  (0.0ms) begin transaction
1213
+ SQL (0.3ms) 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
+  (0.3ms) rollback transaction
1215
+  (0.0ms) begin transaction
1216
+ --------------------------------
1217
+ BooksControllerTest: test_create
1218
+ --------------------------------
1219
+  (0.1ms) SAVEPOINT active_record_1
1220
+ SQL (0.3ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1222
+  (0.0ms) SAVEPOINT active_record_1
1223
+ SQL (0.2ms) INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1225
+  (0.0ms) SAVEPOINT active_record_1
1226
+ SQL (0.1ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1228
+  (0.0ms) SAVEPOINT active_record_1
1229
+ SQL (0.1ms) INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1231
+  (0.0ms) SAVEPOINT active_record_1
1232
+ SQL (0.1ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1234
+  (0.0ms) SELECT COUNT(*) FROM "books"
1235
+ Processing by BooksController#create as HTML
1236
+ Parameters: {"book"=>{"name"=>"newly-created-book"}}
1237
+  (0.0ms) SAVEPOINT active_record_1
1238
+ SQL (0.1ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1240
+ Redirected to http://test.host/books
1241
+ Completed 302 Found in 2ms (ActiveRecord: 0.2ms)
1242
+  (0.0ms) SELECT COUNT(*) FROM "books"
1243
+  (0.5ms) rollback transaction
1244
+  (0.1ms) begin transaction
1245
+ -------------------------------
1246
+ BooksControllerTest: test_index
1247
+ -------------------------------
1248
+  (0.1ms) SAVEPOINT active_record_1
1249
+ SQL (0.4ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1251
+  (0.1ms) SAVEPOINT active_record_1
1252
+ SQL (0.3ms) INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1254
+  (0.0ms) SAVEPOINT active_record_1
1255
+ SQL (0.1ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1257
+  (0.0ms) SAVEPOINT active_record_1
1258
+ SQL (0.1ms) INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1260
+  (0.1ms) SAVEPOINT active_record_1
1261
+ SQL (0.1ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1263
+ Processing by BooksController#index as HTML
1264
+ Completed 200 OK in 9ms (Views: 8.9ms | ActiveRecord: 0.0ms)
1265
+  (0.1ms) SELECT COUNT(*) FROM "books"
1266
+  (0.5ms) rollback transaction
1267
+  (0.1ms) begin transaction
1268
+ ------------------------------
1269
+ BooksControllerTest: test_show
1270
+ ------------------------------
1271
+  (0.1ms) SAVEPOINT active_record_1
1272
+ SQL (0.4ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1274
+  (0.1ms) SAVEPOINT active_record_1
1275
+ SQL (0.3ms) INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1277
+  (0.0ms) SAVEPOINT active_record_1
1278
+ SQL (0.1ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1280
+  (0.0ms) SAVEPOINT active_record_1
1281
+ SQL (0.1ms) INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1283
+  (0.0ms) SAVEPOINT active_record_1
1284
+ SQL (0.1ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1286
+ Processing by BooksController#show as HTML
1287
+ Parameters: {"id"=>"1"}
1288
+ Book Load (0.1ms) SELECT "books".* FROM "books" WHERE "books"."id" = ? LIMIT 1 [["id", "1"]]
1289
+ Completed 200 OK in 3ms (Views: 1.4ms | ActiveRecord: 0.1ms)
1290
+  (0.4ms) rollback transaction
1291
+  (0.1ms) begin transaction
1292
+ -----------------------------------------------------------------------
1293
+ FastlyHeadersTest: test_/books/:id_show_page_should_have_fastly_headers
1294
+ -----------------------------------------------------------------------
1295
+  (0.1ms) SAVEPOINT active_record_1
1296
+ SQL (0.3ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
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
+ Book Load (0.1ms) SELECT "books".* FROM "books" WHERE "books"."id" = ? LIMIT 1 [["id", "1"]]
1302
+ Completed 200 OK in 2ms (Views: 0.8ms | ActiveRecord: 0.1ms)
1303
+  (0.4ms) rollback transaction
1304
+  (0.0ms) 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
+  (0.1ms) rollback transaction
1312
+  (0.0ms) begin transaction
1313
+ ----------------------------------------------------------------------------------------------
1314
+ FastlyHeadersTest: test_DELETE_/books/:id_should_not_have_fastly_headers/_fastly_header_values
1315
+ ----------------------------------------------------------------------------------------------
1316
+  (0.1ms) SAVEPOINT active_record_1
1317
+ SQL (0.3ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
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
+ Book Load (0.1ms) SELECT "books".* FROM "books" WHERE "books"."id" = ? LIMIT 1 [["id", "1"]]
1323
+  (0.1ms) SAVEPOINT active_record_1
1324
+ SQL (0.3ms) DELETE FROM "books" WHERE "books"."id" = ? [["id", 1]]
1325
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1326
+ Redirected to http://www.example.com/books
1327
+ Completed 302 Found in 2ms (ActiveRecord: 0.4ms)
1328
+  (0.1ms) SELECT COUNT(*) FROM "books" WHERE "books"."id" = 1
1329
+  (0.3ms) rollback transaction
1330
+  (0.0ms) begin transaction
1331
+ ----------------------------------------------------------------------------------------
1332
+ FastlyHeadersTest: test_POST_/books_should_not_have_fastly_headers/_fastly_header_values
1333
+ ----------------------------------------------------------------------------------------
1334
+  (0.1ms) SELECT COUNT(*) FROM "books"
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
+  (0.1ms) SAVEPOINT active_record_1
1339
+ SQL (0.3ms) INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1341
+ Redirected to http://www.example.com/books
1342
+ Completed 302 Found in 2ms (ActiveRecord: 0.4ms)
1343
+  (0.1ms) SELECT COUNT(*) FROM "books"
1344
+  (0.3ms) rollback transaction
1345
+  (0.0ms) begin transaction
1346
+ -------------------------------------------------------------------------------------------
1347
+ FastlyHeadersTest: test_PUT_/books/:id_should_not_have_fastly_headers/_fastly_header_values
1348
+ -------------------------------------------------------------------------------------------
1349
+  (0.0ms) SAVEPOINT active_record_1
1350
+ SQL (0.3ms) 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", "some new book"], ["updated_at", Wed, 23 Apr 2014 23:21:03 UTC +00:00]]
1351
+  (0.0ms) 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
+ Book Load (0.0ms) SELECT "books".* FROM "books" WHERE "books"."id" = ? LIMIT 1 [["id", "1"]]
1356
+  (0.0ms) SAVEPOINT active_record_1
1357
+ SQL (0.3ms) UPDATE "books" SET "name" = ?, "updated_at" = ? WHERE "books"."id" = 1 [["name", "changed book"], ["updated_at", Wed, 23 Apr 2014 23:21:03 UTC +00:00]]
1358
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1359
+ Redirected to http://www.example.com/books/1
1360
+ Completed 302 Found in 3ms (ActiveRecord: 0.4ms)
1361
+ Book Load (0.0ms) SELECT "books".* FROM "books" WHERE "books"."id" = ? LIMIT 1 [["id", 1]]
1362
+  (0.3ms) rollback transaction
1363
+  (0.0ms) begin transaction
1364
+  (0.0ms) commit transaction
1365
+  (0.0ms) begin transaction
1366
+  (0.0ms) rollback transaction
1367
+  (0.0ms) begin transaction
1368
+ -------------------------------------------------------------------------------------------------
1369
+ FastlyRails::CacheControlHeadersTest: test_sets_cache_control_headers_on_actioncontroller_request
1370
+ -------------------------------------------------------------------------------------------------
1371
+  (0.0ms) rollback transaction
1372
+  (0.0ms) begin transaction
1373
+  (0.0ms) commit transaction
1374
+  (0.0ms) begin transaction
1375
+  (0.1ms) rollback transaction
1376
+  (0.0ms) begin transaction
1377
+  (0.0ms) commit transaction
1378
+  (0.0ms) begin transaction
1379
+  (0.0ms) rollback transaction
1380
+  (0.0ms) begin transaction
1381
+  (0.0ms) commit transaction
1382
+  (0.0ms) begin transaction
1383
+  (0.0ms) rollback transaction
1384
+  (0.1ms) begin transaction
1385
+  (0.0ms) commit transaction
1386
+  (0.0ms) begin transaction
1387
+  (0.0ms) rollback transaction
1388
+  (0.0ms) begin transaction
1389
+  (0.0ms) commit transaction
1390
+  (0.0ms) begin transaction
1391
+  (0.0ms) rollback transaction
1392
+  (0.0ms) begin transaction
1393
+  (0.0ms) commit transaction
1394
+  (0.0ms) begin transaction
1395
+  (0.0ms) rollback transaction
1396
+  (0.0ms) begin transaction
1397
+  (0.0ms) commit transaction
1398
+  (0.0ms) begin transaction
1399
+  (0.0ms) rollback transaction
1400
+  (0.0ms) begin transaction
1401
+  (0.0ms) commit transaction
1402
+  (0.0ms) begin transaction
1403
+  (0.0ms) rollback transaction
1404
+  (0.0ms) begin transaction
1405
+  (0.0ms) commit transaction
1406
+  (0.0ms) begin transaction
1407
+  (0.0ms) rollback transaction
1408
+  (0.0ms) begin transaction
1409
+  (0.0ms) commit transaction
1410
+  (0.0ms) begin transaction
1411
+  (0.0ms) rollback transaction
1412
+  (0.0ms) begin transaction
1413
+  (0.0ms) commit transaction
1414
+  (0.0ms) begin transaction
1415
+  (0.0ms) rollback transaction
1416
+  (0.0ms) begin transaction
1417
+  (0.0ms) commit transaction
1418
+  (0.0ms) begin transaction
1419
+  (0.0ms) rollback transaction
1420
+  (0.0ms) begin transaction
1421
+  (0.0ms) commit transaction
1422
+  (0.0ms) begin transaction
1423
+  (0.0ms) rollback transaction
1424
+  (0.0ms) begin transaction
1425
+  (0.0ms) commit transaction
1426
+  (0.0ms) begin transaction
1427
+  (0.0ms) rollback transaction
1428
+  (0.0ms) begin transaction
1429
+  (0.0ms) commit transaction
1430
+  (0.0ms) begin transaction
1431
+  (0.0ms) rollback transaction
1432
+  (0.0ms) begin transaction
1433
+  (0.0ms) commit transaction
1434
+  (0.0ms) begin transaction
1435
+  (0.0ms) rollback transaction
1436
+ Connecting to database specified by database.yml
1437
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1438
+ Migrating to CreateBooks (20140407202136)
1439
+  (0.1ms) begin transaction
1440
+  (0.0ms) commit transaction
1441
+  (0.0ms) begin transaction
1442
+  (0.1ms) SAVEPOINT active_record_1
1443
+ SQL (2.7ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1445
+  (0.3ms) rollback transaction
1446
+  (0.0ms) begin transaction
1447
+  (0.0ms) commit transaction
1448
+  (0.0ms) begin transaction
1449
+  (0.0ms) SAVEPOINT active_record_1
1450
+ SQL (0.3ms) 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", "Time of the Pickpocket"], ["updated_at", Thu, 24 Apr 2014 06:41:33 UTC +00:00]]
1451
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1452
+  (0.2ms) rollback transaction
1453
+  (0.0ms) begin transaction
1454
+  (0.0ms) commit transaction
1455
+  (0.0ms) begin transaction
1456
+  (0.0ms) SAVEPOINT active_record_1
1457
+ SQL (0.2ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1459
+  (0.2ms) rollback transaction
1460
+  (0.0ms) begin transaction
1461
+  (0.0ms) commit transaction
1462
+  (0.0ms) begin transaction
1463
+  (0.0ms) SAVEPOINT active_record_1
1464
+ SQL (0.2ms) 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", "Blonde Jungle"], ["updated_at", Thu, 24 Apr 2014 06:41:33 UTC +00:00]]
1465
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1466
+  (0.2ms) rollback transaction
1467
+  (0.0ms) begin transaction
1468
+  (0.0ms) commit transaction
1469
+  (0.0ms) begin transaction
1470
+  (0.0ms) rollback transaction
1471
+  (0.0ms) begin transaction
1472
+  (0.0ms) SAVEPOINT active_record_1
1473
+ SQL (0.3ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1475
+  (0.0ms) SAVEPOINT active_record_1
1476
+ SQL (0.8ms) INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1478
+  (0.0ms) SAVEPOINT active_record_1
1479
+ SQL (0.1ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1481
+  (0.0ms) SAVEPOINT active_record_1
1482
+ SQL (0.1ms) INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1484
+  (0.0ms) SAVEPOINT active_record_1
1485
+ SQL (0.1ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1487
+  (0.1ms) SELECT COUNT(*) FROM "books"
1488
+ Processing by BooksController#create as HTML
1489
+ Parameters: {"book"=>{"name"=>"newly-created-book"}}
1490
+  (0.1ms) SAVEPOINT active_record_1
1491
+ SQL (0.1ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1493
+ Redirected to http://test.host/books
1494
+ Completed 302 Found in 1.9ms (ActiveRecord: 0.2ms)
1495
+  (0.0ms) SELECT COUNT(*) FROM "books"
1496
+  (0.3ms) rollback transaction
1497
+  (0.0ms) begin transaction
1498
+  (0.0ms) SAVEPOINT active_record_1
1499
+ SQL (0.3ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1501
+  (0.0ms) SAVEPOINT active_record_1
1502
+ SQL (0.3ms) INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1504
+  (0.0ms) SAVEPOINT active_record_1
1505
+ SQL (0.1ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1507
+  (0.0ms) SAVEPOINT active_record_1
1508
+ SQL (0.1ms) INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1510
+  (0.0ms) SAVEPOINT active_record_1
1511
+ SQL (0.1ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1513
+ Processing by BooksController#index as HTML
1514
+ Book Load (0.1ms) SELECT "books".* FROM "books"
1515
+ Completed 200 OK in 7.1ms (Views: 6.1ms | ActiveRecord: 0.1ms)
1516
+  (0.3ms) rollback transaction
1517
+  (0.0ms) begin transaction
1518
+  (0.0ms) SAVEPOINT active_record_1
1519
+ SQL (0.2ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1521
+  (0.0ms) SAVEPOINT active_record_1
1522
+ SQL (0.3ms) INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1524
+  (0.0ms) SAVEPOINT active_record_1
1525
+ SQL (0.1ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1527
+  (0.0ms) SAVEPOINT active_record_1
1528
+ SQL (0.1ms) INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1530
+  (0.0ms) SAVEPOINT active_record_1
1531
+ SQL (0.1ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1533
+ Processing by BooksController#show as HTML
1534
+ Parameters: {"id"=>"1"}
1535
+ Book Load (0.1ms) 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
+  (0.3ms) rollback transaction
1538
+  (0.0ms) begin transaction
1539
+  (0.0ms) SAVEPOINT active_record_1
1540
+ SQL (0.3ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
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
+ Book Load (0.0ms) 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
+  (0.3ms) rollback transaction
1548
+  (0.0ms) 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
+ Book Load (0.1ms) SELECT "books".* FROM "books" 
1552
+ Completed 200 OK in 1.2ms (Views: 0.7ms | ActiveRecord: 0.1ms)
1553
+  (0.0ms) rollback transaction
1554
+  (0.0ms) begin transaction
1555
+  (0.0ms) SAVEPOINT active_record_1
1556
+ SQL (0.2ms) 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", "Death Dreams"], ["updated_at", Thu, 24 Apr 2014 06:41:33 UTC +00:00]]
1557
+  (0.0ms) 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
+ Book Load (0.1ms) SELECT "books".* FROM "books" WHERE "books"."id" = ? LIMIT 1 [["id", "1"]]
1562
+  (0.0ms) SAVEPOINT active_record_1
1563
+ SQL (0.3ms) DELETE FROM "books" WHERE "books"."id" = ? [["id", 1]]
1564
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1565
+ Redirected to http://www.example.com/books
1566
+ Completed 302 Found in 2.0ms (ActiveRecord: 0.4ms)
1567
+  (0.1ms) SELECT COUNT(*) FROM "books" WHERE "books"."id" = 1
1568
+  (0.3ms) rollback transaction
1569
+  (0.0ms) begin transaction
1570
+  (0.1ms) 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
+  (0.0ms) SAVEPOINT active_record_1
1575
+ SQL (0.3ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1577
+ Redirected to http://www.example.com/books
1578
+ Completed 302 Found in 1.6ms (ActiveRecord: 0.4ms)
1579
+  (0.0ms) SELECT COUNT(*) FROM "books"
1580
+  (0.3ms) rollback transaction
1581
+  (0.0ms) begin transaction
1582
+  (0.0ms) SAVEPOINT active_record_1
1583
+ SQL (0.2ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
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
+ Book Load (0.0ms) SELECT "books".* FROM "books" WHERE "books"."id" = ? LIMIT 1 [["id", "1"]]
1589
+  (0.0ms) SAVEPOINT active_record_1
1590
+  (0.3ms) UPDATE "books" SET "name" = 'changed book', "updated_at" = '2014-04-24 06:41:34.012970' WHERE "books"."id" = 1
1591
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1592
+ Redirected to http://www.example.com/books/1
1593
+ Completed 302 Found in 2.7ms (ActiveRecord: 0.4ms)
1594
+ Book Load (0.0ms) SELECT "books".* FROM "books" WHERE "books"."id" = ? LIMIT 1 [["id", 1]]
1595
+  (0.3ms) rollback transaction
1596
+  (0.0ms) begin transaction
1597
+  (0.0ms) commit transaction
1598
+  (0.0ms) begin transaction
1599
+  (0.0ms) rollback transaction
1600
+  (0.0ms) begin transaction
1601
+  (0.0ms) rollback transaction
1602
+  (0.0ms) begin transaction
1603
+  (0.0ms) commit transaction
1604
+  (0.0ms) begin transaction
1605
+  (0.0ms) rollback transaction
1606
+  (0.0ms) begin transaction
1607
+  (0.0ms) commit transaction
1608
+  (0.0ms) begin transaction
1609
+  (0.0ms) rollback transaction
1610
+  (0.0ms) begin transaction
1611
+  (0.0ms) commit transaction
1612
+  (0.0ms) begin transaction
1613
+  (0.0ms) rollback transaction
1614
+  (0.0ms) begin transaction
1615
+  (0.0ms) commit transaction
1616
+  (0.0ms) begin transaction
1617
+  (0.0ms) rollback transaction
1618
+  (0.0ms) begin transaction
1619
+  (0.0ms) commit transaction
1620
+  (0.0ms) begin transaction
1621
+  (0.0ms) rollback transaction
1622
+  (0.0ms) begin transaction
1623
+  (0.0ms) commit transaction
1624
+  (0.0ms) begin transaction
1625
+  (0.0ms) rollback transaction
1626
+  (0.0ms) begin transaction
1627
+  (0.0ms) commit transaction
1628
+  (0.0ms) begin transaction
1629
+  (0.0ms) rollback transaction
1630
+  (0.0ms) begin transaction
1631
+  (0.0ms) commit transaction
1632
+  (0.0ms) begin transaction
1633
+  (0.0ms) rollback transaction
1634
+  (0.0ms) begin transaction
1635
+  (0.0ms) commit transaction
1636
+  (0.0ms) begin transaction
1637
+  (0.0ms) rollback transaction
1638
+  (0.0ms) begin transaction
1639
+  (0.0ms) commit transaction
1640
+  (0.0ms) begin transaction
1641
+  (0.0ms) rollback transaction
1642
+  (0.0ms) begin transaction
1643
+  (0.0ms) commit transaction
1644
+  (0.0ms) begin transaction
1645
+  (0.0ms) rollback transaction
1646
+  (0.0ms) begin transaction
1647
+  (0.0ms) commit transaction
1648
+  (0.0ms) begin transaction
1649
+  (0.0ms) rollback transaction
1650
+  (0.0ms) begin transaction
1651
+  (0.0ms) commit transaction
1652
+  (0.0ms) begin transaction
1653
+  (0.0ms) rollback transaction
1654
+  (0.0ms) begin transaction
1655
+  (0.0ms) commit transaction
1656
+  (0.0ms) begin transaction
1657
+  (0.0ms) rollback transaction
1658
+  (0.0ms) begin transaction
1659
+  (0.0ms) commit transaction
1660
+  (0.0ms) begin transaction
1661
+  (0.0ms) rollback transaction
1662
+  (0.0ms) begin transaction
1663
+  (0.0ms) commit transaction
1664
+  (0.0ms) begin transaction
1665
+  (0.0ms) rollback transaction
1666
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1667
+  (0.1ms) begin transaction
1668
+  (0.0ms) commit transaction
1669
+  (0.0ms) begin transaction
1670
+ SQL (2.1ms) 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", "Beast 2: Electric Boogaloo"], ["updated_at", Thu, 24 Apr 2014 06:41:35 UTC +00:00]]
1671
+  (0.2ms) rollback transaction
1672
+  (0.0ms) begin transaction
1673
+  (0.0ms) commit transaction
1674
+  (0.0ms) begin transaction
1675
+ SQL (0.2ms) 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
+  (0.2ms) rollback transaction
1677
+  (0.0ms) begin transaction
1678
+  (0.0ms) commit transaction
1679
+  (0.0ms) begin transaction
1680
+ SQL (0.2ms) 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", "Flying Mutant"], ["updated_at", Thu, 24 Apr 2014 06:41:35 UTC +00:00]]
1681
+  (0.2ms) rollback transaction
1682
+  (0.0ms) begin transaction
1683
+  (0.0ms) commit transaction
1684
+  (0.0ms) begin transaction
1685
+  (0.0ms) rollback transaction
1686
+  (0.0ms) begin transaction
1687
+  (0.0ms) commit transaction
1688
+  (0.0ms) begin transaction
1689
+ SQL (0.2ms) 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
+  (0.2ms) rollback transaction
1691
+  (0.0ms) begin transaction
1692
+ --------------------------------
1693
+ BooksControllerTest: test_create
1694
+ --------------------------------
1695
+  (0.1ms) SAVEPOINT active_record_1
1696
+ SQL (0.4ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1698
+  (0.0ms) SAVEPOINT active_record_1
1699
+ SQL (0.3ms) INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1701
+  (0.0ms) SAVEPOINT active_record_1
1702
+ SQL (0.1ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1704
+  (0.0ms) SAVEPOINT active_record_1
1705
+ SQL (0.1ms) INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1707
+  (0.0ms) SAVEPOINT active_record_1
1708
+ SQL (0.1ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1710
+  (0.1ms) SELECT COUNT(*) FROM "books"
1711
+ Processing by BooksController#create as HTML
1712
+ Parameters: {"book"=>{"name"=>"newly-created-book"}}
1713
+  (0.0ms) SAVEPOINT active_record_1
1714
+ SQL (0.2ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1716
+ Redirected to http://test.host/books
1717
+ Completed 302 Found in 2ms (ActiveRecord: 0.2ms)
1718
+  (0.0ms) SELECT COUNT(*) FROM "books"
1719
+  (0.3ms) rollback transaction
1720
+  (0.0ms) begin transaction
1721
+ -------------------------------
1722
+ BooksControllerTest: test_index
1723
+ -------------------------------
1724
+  (0.0ms) SAVEPOINT active_record_1
1725
+ SQL (0.2ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1727
+  (0.0ms) SAVEPOINT active_record_1
1728
+ SQL (0.2ms) INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1730
+  (0.0ms) SAVEPOINT active_record_1
1731
+ SQL (0.1ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1733
+  (0.0ms) SAVEPOINT active_record_1
1734
+ SQL (0.1ms) INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1736
+  (0.0ms) SAVEPOINT active_record_1
1737
+ SQL (0.1ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1739
+ Processing by BooksController#index as HTML
1740
+ Completed 200 OK in 10ms (Views: 9.9ms | ActiveRecord: 0.0ms)
1741
+  (0.1ms) SELECT COUNT(*) FROM "books"
1742
+  (0.3ms) rollback transaction
1743
+  (0.0ms) begin transaction
1744
+ ------------------------------
1745
+ BooksControllerTest: test_show
1746
+ ------------------------------
1747
+  (0.0ms) SAVEPOINT active_record_1
1748
+ SQL (0.3ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1750
+  (0.0ms) SAVEPOINT active_record_1
1751
+ SQL (0.2ms) INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1753
+  (0.0ms) SAVEPOINT active_record_1
1754
+ SQL (0.1ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1756
+  (0.0ms) SAVEPOINT active_record_1
1757
+ SQL (0.1ms) INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1759
+  (0.0ms) SAVEPOINT active_record_1
1760
+ SQL (0.1ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1762
+ Processing by BooksController#show as HTML
1763
+ Parameters: {"id"=>"1"}
1764
+ Book Load (0.1ms) SELECT "books".* FROM "books" WHERE "books"."id" = ? LIMIT 1 [["id", "1"]]
1765
+ Completed 200 OK in 3ms (Views: 1.2ms | ActiveRecord: 0.1ms)
1766
+  (0.4ms) rollback transaction
1767
+  (0.0ms) begin transaction
1768
+ -----------------------------------------------------------------------
1769
+ FastlyHeadersTest: test_/books/:id_show_page_should_have_fastly_headers
1770
+ -----------------------------------------------------------------------
1771
+  (0.0ms) SAVEPOINT active_record_1
1772
+ SQL (0.3ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
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
+ Book Load (0.1ms) SELECT "books".* FROM "books" WHERE "books"."id" = ? LIMIT 1 [["id", "1"]]
1778
+ Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.1ms)
1779
+  (0.4ms) rollback transaction
1780
+  (0.0ms) 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
+  (0.1ms) rollback transaction
1788
+  (0.1ms) begin transaction
1789
+ ----------------------------------------------------------------------------------------------
1790
+ FastlyHeadersTest: test_DELETE_/books/:id_should_not_have_fastly_headers/_fastly_header_values
1791
+ ----------------------------------------------------------------------------------------------
1792
+  (0.0ms) SAVEPOINT active_record_1
1793
+ SQL (0.3ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
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
+ Book Load (0.0ms) SELECT "books".* FROM "books" WHERE "books"."id" = ? LIMIT 1 [["id", "1"]]
1799
+  (0.0ms) SAVEPOINT active_record_1
1800
+ SQL (0.3ms) DELETE FROM "books" WHERE "books"."id" = ? [["id", 1]]
1801
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1802
+ Redirected to http://www.example.com/books
1803
+ Completed 302 Found in 2ms (ActiveRecord: 0.4ms)
1804
+  (0.1ms) SELECT COUNT(*) FROM "books" WHERE "books"."id" = 1
1805
+  (0.3ms) rollback transaction
1806
+  (0.1ms) begin transaction
1807
+ ----------------------------------------------------------------------------------------
1808
+ FastlyHeadersTest: test_POST_/books_should_not_have_fastly_headers/_fastly_header_values
1809
+ ----------------------------------------------------------------------------------------
1810
+  (0.1ms) SELECT COUNT(*) FROM "books"
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
+  (0.0ms) SAVEPOINT active_record_1
1815
+ SQL (0.2ms) INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1817
+ Redirected to http://www.example.com/books
1818
+ Completed 302 Found in 1ms (ActiveRecord: 0.3ms)
1819
+  (0.0ms) SELECT COUNT(*) FROM "books"
1820
+  (0.3ms) rollback transaction
1821
+  (0.1ms) begin transaction
1822
+ -------------------------------------------------------------------------------------------
1823
+ FastlyHeadersTest: test_PUT_/books/:id_should_not_have_fastly_headers/_fastly_header_values
1824
+ -------------------------------------------------------------------------------------------
1825
+  (0.0ms) SAVEPOINT active_record_1
1826
+ SQL (0.2ms) 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", "some new book"], ["updated_at", Thu, 24 Apr 2014 06:41:36 UTC +00:00]]
1827
+  (0.0ms) 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
+ Book Load (0.0ms) SELECT "books".* FROM "books" WHERE "books"."id" = ? LIMIT 1 [["id", "1"]]
1832
+  (0.1ms) SAVEPOINT active_record_1
1833
+ SQL (0.3ms) UPDATE "books" SET "name" = ?, "updated_at" = ? WHERE "books"."id" = 1 [["name", "changed book"], ["updated_at", Thu, 24 Apr 2014 06:41:36 UTC +00:00]]
1834
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1835
+ Redirected to http://www.example.com/books/1
1836
+ Completed 302 Found in 3ms (ActiveRecord: 0.5ms)
1837
+ Book Load (0.0ms) SELECT "books".* FROM "books" WHERE "books"."id" = ? LIMIT 1 [["id", 1]]
1838
+  (0.3ms) rollback transaction
1839
+  (0.0ms) begin transaction
1840
+  (0.0ms) commit transaction
1841
+  (0.0ms) begin transaction
1842
+  (0.0ms) rollback transaction
1843
+  (0.0ms) begin transaction
1844
+ -------------------------------------------------------------------------------------------------
1845
+ FastlyRails::CacheControlHeadersTest: test_sets_cache_control_headers_on_actioncontroller_request
1846
+ -------------------------------------------------------------------------------------------------
1847
+  (0.0ms) rollback transaction
1848
+  (0.0ms) begin transaction
1849
+  (0.0ms) commit transaction
1850
+  (0.0ms) begin transaction
1851
+  (0.0ms) rollback transaction
1852
+  (0.1ms) begin transaction
1853
+  (0.0ms) commit transaction
1854
+  (0.0ms) begin transaction
1855
+  (0.1ms) rollback transaction
1856
+  (0.1ms) begin transaction
1857
+  (0.0ms) commit transaction
1858
+  (0.0ms) begin transaction
1859
+  (0.0ms) rollback transaction
1860
+  (0.0ms) begin transaction
1861
+  (0.0ms) commit transaction
1862
+  (0.1ms) begin transaction
1863
+  (0.0ms) rollback transaction
1864
+  (0.0ms) begin transaction
1865
+  (0.0ms) commit transaction
1866
+  (0.0ms) begin transaction
1867
+  (0.0ms) rollback transaction
1868
+  (0.0ms) begin transaction
1869
+  (0.0ms) commit transaction
1870
+  (0.0ms) begin transaction
1871
+  (0.0ms) rollback transaction
1872
+  (0.0ms) begin transaction
1873
+  (0.0ms) commit transaction
1874
+  (0.0ms) begin transaction
1875
+  (0.0ms) rollback transaction
1876
+  (0.0ms) begin transaction
1877
+  (0.0ms) commit transaction
1878
+  (0.0ms) begin transaction
1879
+  (0.0ms) rollback transaction
1880
+  (0.0ms) begin transaction
1881
+  (0.0ms) commit transaction
1882
+  (0.0ms) begin transaction
1883
+  (0.0ms) rollback transaction
1884
+  (0.0ms) begin transaction
1885
+  (0.0ms) commit transaction
1886
+  (0.0ms) begin transaction
1887
+  (0.0ms) rollback transaction
1888
+  (0.0ms) begin transaction
1889
+  (0.0ms) commit transaction
1890
+  (0.0ms) begin transaction
1891
+  (0.0ms) rollback transaction
1892
+  (0.0ms) begin transaction
1893
+  (0.0ms) commit transaction
1894
+  (0.0ms) begin transaction
1895
+  (0.0ms) rollback transaction
1896
+  (0.0ms) begin transaction
1897
+  (0.0ms) commit transaction
1898
+  (0.0ms) begin transaction
1899
+  (0.0ms) rollback transaction
1900
+  (0.0ms) begin transaction
1901
+  (0.0ms) commit transaction
1902
+  (0.0ms) begin transaction
1903
+  (0.0ms) rollback transaction
1904
+  (0.0ms) begin transaction
1905
+  (0.0ms) commit transaction
1906
+  (0.0ms) begin transaction
1907
+  (0.0ms) rollback transaction
1908
+  (0.0ms) begin transaction
1909
+  (0.0ms) commit transaction
1910
+  (0.0ms) begin transaction
1911
+  (0.0ms) rollback transaction
1912
+ Connecting to database specified by database.yml
1913
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1914
+ Migrating to CreateBooks (20140407202136)
1915
+  (0.1ms) begin transaction
1916
+  (0.0ms) commit transaction
1917
+  (0.0ms) begin transaction
1918
+  (0.0ms) SAVEPOINT active_record_1
1919
+ SQL (2.5ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1921
+  (0.8ms) rollback transaction
1922
+  (0.0ms) begin transaction
1923
+  (0.0ms) commit transaction
1924
+  (0.0ms) begin transaction
1925
+  (0.0ms) rollback transaction
1926
+  (0.0ms) begin transaction
1927
+  (0.0ms) commit transaction
1928
+  (0.0ms) begin transaction
1929
+  (0.0ms) SAVEPOINT active_record_1
1930
+ SQL (0.3ms) 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", "Hard Boiled City"], ["updated_at", Thu, 24 Apr 2014 06:44:47 UTC +00:00]]
1931
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1932
+  (0.2ms) rollback transaction
1933
+  (0.0ms) begin transaction
1934
+  (0.0ms) commit transaction
1935
+  (0.0ms) begin transaction
1936
+  (0.1ms) SAVEPOINT active_record_1
1937
+ SQL (0.2ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1939
+  (0.2ms) rollback transaction
1940
+  (0.0ms) begin transaction
1941
+  (0.0ms) commit transaction
1942
+  (0.0ms) begin transaction
1943
+  (0.0ms) SAVEPOINT active_record_1
1944
+ SQL (0.2ms) 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", "Dangerous Witch"], ["updated_at", Thu, 24 Apr 2014 06:44:47 UTC +00:00]]
1945
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1946
+  (0.3ms) rollback transaction
1947
+  (0.0ms) begin transaction
1948
+  (0.0ms) SAVEPOINT active_record_1
1949
+ SQL (0.3ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1951
+  (0.0ms) SAVEPOINT active_record_1
1952
+ SQL (0.2ms) 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, Mya"], ["updated_at", Thu, 24 Apr 2014 06:44:47 UTC +00:00]]
1953
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1954
+  (0.0ms) SAVEPOINT active_record_1
1955
+ SQL (0.1ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1957
+  (0.0ms) SAVEPOINT active_record_1
1958
+ SQL (0.1ms) INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1960
+  (0.0ms) SAVEPOINT active_record_1
1961
+ SQL (0.1ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1963
+  (0.0ms) SELECT COUNT(*) FROM "books"
1964
+ Processing by BooksController#create as HTML
1965
+ Parameters: {"book"=>{"name"=>"newly-created-book"}}
1966
+  (0.0ms) SAVEPOINT active_record_1
1967
+ SQL (0.1ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1969
+ Redirected to http://test.host/books
1970
+ Completed 302 Found in 1.5ms (ActiveRecord: 0.2ms)
1971
+  (0.0ms) SELECT COUNT(*) FROM "books"
1972
+  (0.3ms) rollback transaction
1973
+  (0.0ms) begin transaction
1974
+  (0.0ms) SAVEPOINT active_record_1
1975
+ SQL (0.3ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1977
+  (0.0ms) SAVEPOINT active_record_1
1978
+ SQL (0.3ms) INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1980
+  (0.0ms) SAVEPOINT active_record_1
1981
+ SQL (0.1ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1983
+  (0.0ms) SAVEPOINT active_record_1
1984
+ SQL (0.1ms) INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1986
+  (0.0ms) SAVEPOINT active_record_1
1987
+ SQL (0.1ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1989
+ Processing by BooksController#index as HTML
1990
+ Book Load (0.1ms) SELECT "books".* FROM "books"
1991
+ Completed 200 OK in 5.7ms (Views: 4.8ms | ActiveRecord: 0.1ms)
1992
+  (0.4ms) rollback transaction
1993
+  (0.0ms) begin transaction
1994
+  (0.0ms) SAVEPOINT active_record_1
1995
+ SQL (0.4ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1997
+  (0.0ms) SAVEPOINT active_record_1
1998
+ SQL (4.0ms) INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2000
+  (0.0ms) SAVEPOINT active_record_1
2001
+ SQL (0.1ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2003
+  (0.0ms) SAVEPOINT active_record_1
2004
+ SQL (0.1ms) INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2006
+  (0.0ms) SAVEPOINT active_record_1
2007
+ SQL (0.1ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2009
+ Processing by BooksController#show as HTML
2010
+ Parameters: {"id"=>"1"}
2011
+ Book Load (0.1ms) 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
+  (0.3ms) rollback transaction
2014
+  (0.0ms) begin transaction
2015
+  (0.0ms) SAVEPOINT active_record_1
2016
+ SQL (0.3ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
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
+ Book Load (0.0ms) 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
+  (0.3ms) rollback transaction
2024
+  (0.0ms) 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
+ Book Load (0.1ms) SELECT "books".* FROM "books" 
2028
+ Completed 200 OK in 1.3ms (Views: 0.8ms | ActiveRecord: 0.1ms)
2029
+  (0.0ms) rollback transaction
2030
+  (0.0ms) begin transaction
2031
+  (0.0ms) SAVEPOINT active_record_1
2032
+ SQL (0.2ms) 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", "1795 A.D."], ["updated_at", Thu, 24 Apr 2014 06:44:47 UTC +00:00]]
2033
+  (0.0ms) 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
+ Book Load (0.0ms) SELECT "books".* FROM "books" WHERE "books"."id" = ? LIMIT 1 [["id", "1"]]
2038
+  (0.0ms) SAVEPOINT active_record_1
2039
+ SQL (0.3ms) DELETE FROM "books" WHERE "books"."id" = ? [["id", 1]]
2040
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2041
+ Redirected to http://www.example.com/books
2042
+ Completed 302 Found in 1.8ms (ActiveRecord: 0.4ms)
2043
+  (0.1ms) SELECT COUNT(*) FROM "books" WHERE "books"."id" = 1
2044
+  (0.4ms) rollback transaction
2045
+  (0.0ms) begin transaction
2046
+  (0.2ms) 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
+  (0.1ms) SAVEPOINT active_record_1
2051
+ SQL (0.3ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2053
+ Redirected to http://www.example.com/books
2054
+ Completed 302 Found in 1.8ms (ActiveRecord: 0.4ms)
2055
+  (0.1ms) SELECT COUNT(*) FROM "books"
2056
+  (0.3ms) rollback transaction
2057
+  (0.0ms) begin transaction
2058
+  (0.0ms) SAVEPOINT active_record_1
2059
+ SQL (0.2ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
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
+ Book Load (0.0ms) SELECT "books".* FROM "books" WHERE "books"."id" = ? LIMIT 1 [["id", "1"]]
2065
+  (0.0ms) SAVEPOINT active_record_1
2066
+  (0.3ms) UPDATE "books" SET "name" = 'changed book', "updated_at" = '2014-04-24 06:44:47.467063' WHERE "books"."id" = 1
2067
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2068
+ Redirected to http://www.example.com/books/1
2069
+ Completed 302 Found in 3.1ms (ActiveRecord: 0.4ms)
2070
+ Book Load (0.0ms) SELECT "books".* FROM "books" WHERE "books"."id" = ? LIMIT 1 [["id", 1]]
2071
+  (0.4ms) rollback transaction
2072
+  (0.0ms) begin transaction
2073
+  (0.0ms) commit transaction
2074
+  (0.0ms) begin transaction
2075
+  (0.0ms) rollback transaction
2076
+  (0.0ms) begin transaction
2077
+  (0.0ms) rollback transaction
2078
+  (0.0ms) begin transaction
2079
+  (0.0ms) commit transaction
2080
+  (0.0ms) begin transaction
2081
+  (0.0ms) rollback transaction
2082
+  (0.0ms) begin transaction
2083
+  (0.0ms) commit transaction
2084
+  (0.0ms) begin transaction
2085
+  (0.0ms) rollback transaction
2086
+  (0.0ms) begin transaction
2087
+  (0.0ms) commit transaction
2088
+  (0.0ms) begin transaction
2089
+  (0.0ms) rollback transaction
2090
+  (0.0ms) begin transaction
2091
+  (0.0ms) commit transaction
2092
+  (0.0ms) begin transaction
2093
+  (0.0ms) rollback transaction
2094
+  (0.0ms) begin transaction
2095
+  (0.0ms) commit transaction
2096
+  (0.0ms) begin transaction
2097
+  (0.0ms) rollback transaction
2098
+  (0.0ms) begin transaction
2099
+  (0.0ms) commit transaction
2100
+  (0.0ms) begin transaction
2101
+  (0.0ms) rollback transaction
2102
+  (0.0ms) begin transaction
2103
+  (0.0ms) commit transaction
2104
+  (0.0ms) begin transaction
2105
+  (0.0ms) rollback transaction
2106
+  (0.0ms) begin transaction
2107
+  (0.0ms) commit transaction
2108
+  (0.0ms) begin transaction
2109
+  (0.0ms) rollback transaction
2110
+  (0.0ms) begin transaction
2111
+  (0.0ms) commit transaction
2112
+  (0.0ms) begin transaction
2113
+  (0.0ms) rollback transaction
2114
+  (0.0ms) begin transaction
2115
+  (0.0ms) commit transaction
2116
+  (0.0ms) begin transaction
2117
+  (0.0ms) rollback transaction
2118
+  (0.0ms) begin transaction
2119
+  (0.0ms) commit transaction
2120
+  (0.0ms) begin transaction
2121
+  (0.0ms) rollback transaction
2122
+  (0.0ms) begin transaction
2123
+  (0.0ms) commit transaction
2124
+  (0.0ms) begin transaction
2125
+  (0.0ms) rollback transaction
2126
+  (0.0ms) begin transaction
2127
+  (0.0ms) commit transaction
2128
+  (0.0ms) begin transaction
2129
+  (0.0ms) rollback transaction
2130
+  (0.0ms) begin transaction
2131
+  (0.0ms) commit transaction
2132
+  (0.0ms) begin transaction
2133
+  (0.0ms) rollback transaction
2134
+  (0.0ms) begin transaction
2135
+  (0.0ms) commit transaction
2136
+  (0.0ms) begin transaction
2137
+  (0.0ms) rollback transaction
2138
+  (0.0ms) begin transaction
2139
+  (0.0ms) commit transaction
2140
+  (0.0ms) begin transaction
2141
+  (0.0ms) rollback transaction
2142
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
2143
+  (0.1ms) begin transaction
2144
+  (0.0ms) commit transaction
2145
+  (0.0ms) begin transaction
2146
+  (0.0ms) rollback transaction
2147
+  (0.0ms) begin transaction
2148
+  (0.0ms) commit transaction
2149
+  (0.0ms) begin transaction
2150
+ SQL (1.7ms) 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", "The Fly from Bushwick South"], ["updated_at", Thu, 24 Apr 2014 06:44:49 UTC +00:00]]
2151
+  (0.7ms) rollback transaction
2152
+  (0.0ms) begin transaction
2153
+  (0.0ms) commit transaction
2154
+  (0.0ms) begin transaction
2155
+ SQL (0.2ms) 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
+  (0.2ms) rollback transaction
2157
+  (0.1ms) begin transaction
2158
+  (0.0ms) commit transaction
2159
+  (0.0ms) begin transaction
2160
+ SQL (0.3ms) 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", "Season of the Tokyo Gypsy"], ["updated_at", Thu, 24 Apr 2014 06:44:49 UTC +00:00]]
2161
+  (0.3ms) rollback transaction
2162
+  (0.0ms) begin transaction
2163
+  (0.0ms) commit transaction
2164
+  (0.0ms) begin transaction
2165
+ SQL (0.2ms) 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
+  (0.3ms) rollback transaction
2167
+  (0.0ms) begin transaction
2168
+ --------------------------------
2169
+ BooksControllerTest: test_create
2170
+ --------------------------------
2171
+  (0.1ms) SAVEPOINT active_record_1
2172
+ SQL (0.3ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2174
+  (0.0ms) SAVEPOINT active_record_1
2175
+ SQL (0.3ms) INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2177
+  (0.0ms) SAVEPOINT active_record_1
2178
+ SQL (0.1ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2180
+  (0.0ms) SAVEPOINT active_record_1
2181
+ SQL (0.1ms) INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2183
+  (0.0ms) SAVEPOINT active_record_1
2184
+ SQL (0.1ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2186
+  (0.1ms) SELECT COUNT(*) FROM "books"
2187
+ Processing by BooksController#create as HTML
2188
+ Parameters: {"book"=>{"name"=>"newly-created-book"}}
2189
+  (0.0ms) SAVEPOINT active_record_1
2190
+ SQL (0.1ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2192
+ Redirected to http://test.host/books
2193
+ Completed 302 Found in 2ms (ActiveRecord: 0.2ms)
2194
+  (0.1ms) SELECT COUNT(*) FROM "books"
2195
+  (0.4ms) rollback transaction
2196
+  (0.1ms) begin transaction
2197
+ -------------------------------
2198
+ BooksControllerTest: test_index
2199
+ -------------------------------
2200
+  (0.0ms) SAVEPOINT active_record_1
2201
+ SQL (0.3ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2203
+  (0.0ms) SAVEPOINT active_record_1
2204
+ SQL (0.2ms) INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2206
+  (0.0ms) SAVEPOINT active_record_1
2207
+ SQL (0.1ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2209
+  (0.0ms) SAVEPOINT active_record_1
2210
+ SQL (0.1ms) INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2212
+  (0.0ms) SAVEPOINT active_record_1
2213
+ SQL (0.1ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2215
+ Processing by BooksController#index as HTML
2216
+ Completed 200 OK in 9ms (Views: 8.5ms | ActiveRecord: 0.0ms)
2217
+  (0.1ms) SELECT COUNT(*) FROM "books"
2218
+  (0.3ms) rollback transaction
2219
+  (0.0ms) begin transaction
2220
+ ------------------------------
2221
+ BooksControllerTest: test_show
2222
+ ------------------------------
2223
+  (0.0ms) SAVEPOINT active_record_1
2224
+ SQL (0.3ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2226
+  (0.0ms) SAVEPOINT active_record_1
2227
+ SQL (0.2ms) INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2229
+  (0.0ms) SAVEPOINT active_record_1
2230
+ SQL (0.1ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
111
2232
   (0.0ms) SAVEPOINT active_record_1
112
- SQL (0.4ms) INSERT INTO "books" ("created_at", "id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Mon, 28 Apr 2014 00:15:52 UTC +00:00], ["id", 1], ["name", "Blue Pickpocket"], ["updated_at", Mon, 28 Apr 2014 00:15:52 UTC +00:00]]
2233
+ SQL (0.1ms) INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["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
   (0.0ms) RELEASE SAVEPOINT active_record_1
114
- Started GET "/books/1" for 127.0.0.1 at 2014-04-27 17:15:52 -0700
2235
+  (0.0ms) SAVEPOINT active_record_1
2236
+ SQL (0.1ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
115
2238
  Processing by BooksController#show as HTML
116
2239
  Parameters: {"id"=>"1"}
117
- Book Load (0.1ms) SELECT "books".* FROM "books" WHERE "books"."id" = ? LIMIT 1 [["id", "1"]]
118
- Completed 200 OK in 2.0ms (Views: 1.0ms | ActiveRecord: 0.1ms)
119
-  (0.4ms) rollback transaction
120
-  (0.0ms) begin transaction
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
- Book Load (0.1ms) SELECT "books".* FROM "books"
124
- Completed 200 OK in 1.5ms (Views: 0.9ms | ActiveRecord: 0.1ms)
125
-  (0.0ms) rollback transaction
2240
+ Book Load (0.1ms) SELECT "books".* FROM "books" WHERE "books"."id" = ? LIMIT 1 [["id", "1"]]
2241
+ Completed 200 OK in 3ms (Views: 1.2ms | ActiveRecord: 0.1ms)
2242
+  (0.4ms) rollback transaction
126
2243
   (0.0ms) begin transaction
2244
+ -----------------------------------------------------------------------
2245
+ FastlyHeadersTest: test_/books/:id_show_page_should_have_fastly_headers
2246
+ -----------------------------------------------------------------------
127
2247
   (0.1ms) SAVEPOINT active_record_1
128
- SQL (0.3ms) INSERT INTO "books" ("created_at", "id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Mon, 28 Apr 2014 00:15:52 UTC +00:00], ["id", 1], ["name", "Flying Jungle"], ["updated_at", Mon, 28 Apr 2014 00:15:52 UTC +00:00]]
2248
+ SQL (0.2ms) 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
   (0.0ms) RELEASE SAVEPOINT active_record_1
130
- Started DELETE "/books/1" for 127.0.0.1 at 2014-04-27 17:15:52 -0700
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
+ Book Load (0.1ms) SELECT "books".* FROM "books" WHERE "books"."id" = ? LIMIT 1 [["id", "1"]]
2254
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.1ms)
2255
+  (0.3ms) rollback transaction
2256
+  (0.1ms) 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
+  (0.1ms) rollback transaction
2264
+  (0.0ms) begin transaction
2265
+ ----------------------------------------------------------------------------------------------
2266
+ FastlyHeadersTest: test_DELETE_/books/:id_should_not_have_fastly_headers/_fastly_header_values
2267
+ ----------------------------------------------------------------------------------------------
2268
+  (0.1ms) SAVEPOINT active_record_1
2269
+ SQL (0.4ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
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
- Book Load (0.0ms) SELECT "books".* FROM "books" WHERE "books"."id" = ? LIMIT 1 [["id", "1"]]
2274
+ Book Load (0.1ms) SELECT "books".* FROM "books" WHERE "books"."id" = ? LIMIT 1 [["id", "1"]]
134
2275
   (0.0ms) SAVEPOINT active_record_1
135
- SQL (0.4ms) DELETE FROM "books" WHERE "books"."id" = ? [["id", 1]]
2276
+ SQL (0.3ms) DELETE FROM "books" WHERE "books"."id" = ? [["id", 1]]
136
2277
   (0.0ms) RELEASE SAVEPOINT active_record_1
137
2278
  Redirected to http://www.example.com/books
138
- Completed 302 Found in 2.3ms (ActiveRecord: 0.5ms)
2279
+ Completed 302 Found in 2ms (ActiveRecord: 0.4ms)
139
2280
   (0.1ms) SELECT COUNT(*) FROM "books" WHERE "books"."id" = 1
140
2281
   (0.4ms) rollback transaction
141
-  (0.0ms) begin transaction
142
-  (0.1ms) SELECT COUNT(*) FROM "books" 
143
- Started POST "/books" for 127.0.0.1 at 2014-04-27 17:15:52 -0700
2282
+  (0.1ms) begin transaction
2283
+ ----------------------------------------------------------------------------------------
2284
+ FastlyHeadersTest: test_POST_/books_should_not_have_fastly_headers/_fastly_header_values
2285
+ ----------------------------------------------------------------------------------------
2286
+  (0.1ms) SELECT COUNT(*) FROM "books"
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
   (0.1ms) SAVEPOINT active_record_1
147
- SQL (0.4ms) INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Mon, 28 Apr 2014 00:15:52 UTC +00:00], ["name", "some new book"], ["updated_at", Mon, 28 Apr 2014 00:15:52 UTC +00:00]]
148
-  (0.0ms) RELEASE SAVEPOINT active_record_1
2291
+ SQL (0.3ms) INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
149
2293
  Redirected to http://www.example.com/books
150
- Completed 302 Found in 1.8ms (ActiveRecord: 0.5ms)
151
-  (0.1ms) SELECT COUNT(*) FROM "books" 
2294
+ Completed 302 Found in 2ms (ActiveRecord: 0.4ms)
2295
+  (0.1ms) SELECT COUNT(*) FROM "books"
152
2296
   (0.3ms) rollback transaction
153
2297
   (0.0ms) begin transaction
154
-  (0.0ms) SAVEPOINT active_record_1
155
- SQL (0.3ms) INSERT INTO "books" ("created_at", "id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Mon, 28 Apr 2014 00:15:52 UTC +00:00], ["id", 1], ["name", "some new book"], ["updated_at", Mon, 28 Apr 2014 00:15:52 UTC +00:00]]
2298
+ -------------------------------------------------------------------------------------------
2299
+ FastlyHeadersTest: test_PUT_/books/:id_should_not_have_fastly_headers/_fastly_header_values
2300
+ -------------------------------------------------------------------------------------------
2301
+  (0.1ms) SAVEPOINT active_record_1
2302
+ SQL (0.3ms) 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", "some new book"], ["updated_at", Thu, 24 Apr 2014 06:44:49 UTC +00:00]]
156
2303
   (0.0ms) RELEASE SAVEPOINT active_record_1
157
- Started PUT "/books/1" for 127.0.0.1 at 2014-04-27 17:15:52 -0700
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
  Book Load (0.0ms) SELECT "books".* FROM "books" WHERE "books"."id" = ? LIMIT 1 [["id", "1"]]
161
2308
   (0.0ms) SAVEPOINT active_record_1
162
-  (0.3ms) UPDATE "books" SET "name" = 'changed book', "updated_at" = '2014-04-28 00:15:52.830994' WHERE "books"."id" = 1
2309
+ SQL (0.3ms) UPDATE "books" SET "name" = ?, "updated_at" = ? WHERE "books"."id" = 1 [["name", "changed book"], ["updated_at", Thu, 24 Apr 2014 06:44:49 UTC +00:00]]
163
2310
   (0.0ms) RELEASE SAVEPOINT active_record_1
164
2311
  Redirected to http://www.example.com/books/1
165
- Completed 302 Found in 3.2ms (ActiveRecord: 0.4ms)
2312
+ Completed 302 Found in 3ms (ActiveRecord: 0.5ms)
166
2313
  Book Load (0.0ms) SELECT "books".* FROM "books" WHERE "books"."id" = ? LIMIT 1 [["id", 1]]
167
-  (0.4ms) rollback transaction
2314
+  (0.3ms) rollback transaction
168
2315
   (0.1ms) begin transaction
169
2316
   (0.0ms) commit transaction
170
2317
   (0.0ms) begin transaction
171
2318
   (0.0ms) rollback transaction
172
2319
   (0.0ms) begin transaction
173
-  (0.0ms) rollback transaction
2320
+ -------------------------------------------------------------------------------------------------
2321
+ FastlyRails::CacheControlHeadersTest: test_sets_cache_control_headers_on_actioncontroller_request
2322
+ -------------------------------------------------------------------------------------------------
2323
+  (0.1ms) rollback transaction
174
2324
   (0.0ms) begin transaction
175
2325
   (0.0ms) commit transaction
176
2326
   (0.0ms) begin transaction
@@ -178,11 +2328,11 @@ Completed 302 Found in 3.2ms (ActiveRecord: 0.4ms)
178
2328
   (0.0ms) begin transaction
179
2329
   (0.0ms) commit transaction
180
2330
   (0.0ms) begin transaction
181
-  (0.0ms) rollback transaction
2331
+  (0.1ms) rollback transaction
182
2332
   (0.0ms) begin transaction
183
-  (0.1ms) commit transaction
2333
+  (0.0ms) commit transaction
184
2334
   (0.0ms) begin transaction
185
-  (0.0ms) rollback transaction
2335
+  (0.1ms) rollback transaction
186
2336
   (0.0ms) begin transaction
187
2337
   (0.0ms) commit transaction
188
2338
   (0.0ms) begin transaction
@@ -221,7 +2371,7 @@ Completed 302 Found in 3.2ms (ActiveRecord: 0.4ms)
221
2371
   (0.0ms) rollback transaction
222
2372
   (0.0ms) begin transaction
223
2373
   (0.0ms) commit transaction
224
-  (0.1ms) begin transaction
2374
+  (0.0ms) begin transaction
225
2375
   (0.0ms) rollback transaction
226
2376
   (0.0ms) begin transaction
227
2377
   (0.0ms) commit transaction
@@ -236,16 +2386,16 @@ Completed 302 Found in 3.2ms (ActiveRecord: 0.4ms)
236
2386
   (0.0ms) begin transaction
237
2387
   (0.0ms) rollback transaction
238
2388
  Connecting to database specified by database.yml
239
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
2389
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
240
2390
  Migrating to CreateBooks (20140407202136)
241
2391
   (0.1ms) begin transaction
242
2392
   (0.0ms) commit transaction
243
2393
   (0.0ms) begin transaction
244
2394
   (0.0ms) SAVEPOINT active_record_1
245
- SQL (2.4ms) INSERT INTO "books" ("created_at", "id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Mon, 28 Apr 2014 00:16:04 UTC +00:00], ["id", 1], ["name", "Action Clash"], ["updated_at", Mon, 28 Apr 2014 00:16:04 UTC +00:00]]
2395
+ SQL (3.9ms) 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
   (0.0ms) RELEASE SAVEPOINT active_record_1
247
-  (6.2ms) rollback transaction
248
-  (0.1ms) begin transaction
2397
+  (0.2ms) rollback transaction
2398
+  (0.0ms) begin transaction
249
2399
   (0.0ms) commit transaction
250
2400
   (0.0ms) begin transaction
251
2401
   (0.0ms) rollback transaction
@@ -253,146 +2403,146 @@ Migrating to CreateBooks (20140407202136)
253
2403
   (0.0ms) commit transaction
254
2404
   (0.0ms) begin transaction
255
2405
   (0.0ms) SAVEPOINT active_record_1
256
- SQL (0.3ms) INSERT INTO "books" ("created_at", "id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Mon, 28 Apr 2014 00:16:04 UTC +00:00], ["id", 1], ["name", "Hungry City"], ["updated_at", Mon, 28 Apr 2014 00:16:04 UTC +00:00]]
2406
+ SQL (0.3ms) 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", "Flying Men: The Patricia Eichmann Sr. Story"], ["updated_at", Fri, 25 Apr 2014 23:32:54 UTC +00:00]]
257
2407
   (0.0ms) RELEASE SAVEPOINT active_record_1
258
-  (0.3ms) rollback transaction
2408
+  (0.2ms) rollback transaction
259
2409
   (0.0ms) begin transaction
260
2410
   (0.0ms) commit transaction
261
2411
   (0.0ms) begin transaction
262
2412
   (0.0ms) SAVEPOINT active_record_1
263
- SQL (0.3ms) INSERT INTO "books" ("created_at", "id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Mon, 28 Apr 2014 00:16:04 UTC +00:00], ["id", 1], ["name", "The Tokyo Cousins with a Thousand Faces"], ["updated_at", Mon, 28 Apr 2014 00:16:04 UTC +00:00]]
2413
+ SQL (0.2ms) 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
   (0.0ms) RELEASE SAVEPOINT active_record_1
265
2415
   (0.2ms) rollback transaction
266
2416
   (0.0ms) begin transaction
267
2417
   (0.0ms) commit transaction
268
2418
   (0.0ms) begin transaction
269
2419
   (0.0ms) SAVEPOINT active_record_1
270
- SQL (0.3ms) INSERT INTO "books" ("created_at", "id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Mon, 28 Apr 2014 00:16:04 UTC +00:00], ["id", 1], ["name", "Christmas on Norma Centers"], ["updated_at", Mon, 28 Apr 2014 00:16:04 UTC +00:00]]
2420
+ SQL (0.2ms) 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", "Season of the Pickpocket"], ["updated_at", Fri, 25 Apr 2014 23:32:54 UTC +00:00]]
271
2421
   (0.0ms) RELEASE SAVEPOINT active_record_1
272
2422
   (0.2ms) rollback transaction
273
2423
   (0.0ms) begin transaction
274
2424
   (0.0ms) SAVEPOINT active_record_1
275
- SQL (0.3ms) INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Mon, 28 Apr 2014 00:16:04 UTC +00:00], ["name", "The Dreams"], ["updated_at", Mon, 28 Apr 2014 00:16:04 UTC +00:00]]
2425
+ SQL (0.3ms) 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
   (0.0ms) RELEASE SAVEPOINT active_record_1
277
2427
   (0.0ms) SAVEPOINT active_record_1
278
- SQL (0.8ms) INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Mon, 28 Apr 2014 00:16:04 UTC +00:00], ["name", "Killer Hills"], ["updated_at", Mon, 28 Apr 2014 00:16:04 UTC +00:00]]
2428
+ SQL (0.2ms) INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["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
   (0.0ms) RELEASE SAVEPOINT active_record_1
280
2430
   (0.0ms) SAVEPOINT active_record_1
281
- SQL (0.1ms) INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Mon, 28 Apr 2014 00:16:04 UTC +00:00], ["name", "Danger Clash"], ["updated_at", Mon, 28 Apr 2014 00:16:04 UTC +00:00]]
2431
+ SQL (0.1ms) 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
   (0.0ms) RELEASE SAVEPOINT active_record_1
283
2433
   (0.0ms) SAVEPOINT active_record_1
284
- SQL (0.1ms) INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Mon, 28 Apr 2014 00:16:04 UTC +00:00], ["name", "When Caesar Met Ernie"], ["updated_at", Mon, 28 Apr 2014 00:16:04 UTC +00:00]]
2434
+ SQL (0.1ms) INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["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
   (0.0ms) RELEASE SAVEPOINT active_record_1
286
2436
   (0.0ms) SAVEPOINT active_record_1
287
- SQL (0.1ms) INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Mon, 28 Apr 2014 00:16:04 UTC +00:00], ["name", "Time of the Dangerous Wolves"], ["updated_at", Mon, 28 Apr 2014 00:16:04 UTC +00:00]]
2437
+ SQL (0.1ms) 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
   (0.0ms) RELEASE SAVEPOINT active_record_1
289
2439
   (0.0ms) SELECT COUNT(*) FROM "books"
290
2440
  Processing by BooksController#create as HTML
291
2441
  Parameters: {"book"=>{"name"=>"newly-created-book"}}
292
2442
   (0.0ms) SAVEPOINT active_record_1
293
- SQL (0.2ms) INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Mon, 28 Apr 2014 00:16:04 UTC +00:00], ["name", "newly-created-book"], ["updated_at", Mon, 28 Apr 2014 00:16:04 UTC +00:00]]
2443
+ SQL (0.1ms) 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
   (0.0ms) RELEASE SAVEPOINT active_record_1
295
2445
  Redirected to http://test.host/books
296
2446
  Completed 302 Found in 1.8ms (ActiveRecord: 0.2ms)
297
2447
   (0.0ms) SELECT COUNT(*) FROM "books"
298
-  (0.4ms) rollback transaction
2448
+  (0.3ms) rollback transaction
299
2449
   (0.0ms) begin transaction
300
2450
   (0.0ms) SAVEPOINT active_record_1
301
- SQL (0.3ms) INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Mon, 28 Apr 2014 00:16:04 UTC +00:00], ["name", "Demon 2: Electric Boogaloo"], ["updated_at", Mon, 28 Apr 2014 00:16:04 UTC +00:00]]
2451
+ SQL (0.3ms) 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
   (0.0ms) RELEASE SAVEPOINT active_record_1
303
2453
   (0.0ms) SAVEPOINT active_record_1
304
- SQL (0.3ms) INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Mon, 28 Apr 2014 00:16:04 UTC +00:00], ["name", "The Blue Cousins from Mars"], ["updated_at", Mon, 28 Apr 2014 00:16:04 UTC +00:00]]
2454
+ SQL (0.2ms) INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["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
   (0.0ms) RELEASE SAVEPOINT active_record_1
306
2456
   (0.0ms) SAVEPOINT active_record_1
307
- SQL (0.1ms) INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Mon, 28 Apr 2014 00:16:04 UTC +00:00], ["name", "The White Rose of Scotland"], ["updated_at", Mon, 28 Apr 2014 00:16:04 UTC +00:00]]
2457
+ SQL (0.1ms) 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
   (0.0ms) RELEASE SAVEPOINT active_record_1
309
2459
   (0.0ms) SAVEPOINT active_record_1
310
- SQL (0.1ms) INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Mon, 28 Apr 2014 00:16:04 UTC +00:00], ["name", "Flying Demon 2: Son of Flying Demon"], ["updated_at", Mon, 28 Apr 2014 00:16:04 UTC +00:00]]
2460
+ SQL (0.1ms) INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["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
   (0.0ms) RELEASE SAVEPOINT active_record_1
312
2462
   (0.0ms) SAVEPOINT active_record_1
313
- SQL (0.1ms) INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Mon, 28 Apr 2014 00:16:04 UTC +00:00], ["name", "The Champagne Witch with a Thousand Faces"], ["updated_at", Mon, 28 Apr 2014 00:16:04 UTC +00:00]]
2463
+ SQL (0.1ms) 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
   (0.0ms) RELEASE SAVEPOINT active_record_1
315
2465
  Processing by BooksController#index as HTML
316
2466
  Book Load (0.1ms) SELECT "books".* FROM "books"
317
- Completed 200 OK in 6.8ms (Views: 5.8ms | ActiveRecord: 0.1ms)
318
-  (0.4ms) rollback transaction
2467
+ Completed 200 OK in 8.1ms (Views: 7.1ms | ActiveRecord: 0.1ms)
2468
+  (0.2ms) rollback transaction
319
2469
   (0.0ms) begin transaction
320
2470
   (0.0ms) SAVEPOINT active_record_1
321
- SQL (0.3ms) INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Mon, 28 Apr 2014 00:16:04 UTC +00:00], ["name", "The Flying Ninjas"], ["updated_at", Mon, 28 Apr 2014 00:16:04 UTC +00:00]]
2471
+ SQL (0.3ms) 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
   (0.0ms) RELEASE SAVEPOINT active_record_1
323
2473
   (0.0ms) SAVEPOINT active_record_1
324
- SQL (0.3ms) INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Mon, 28 Apr 2014 00:16:04 UTC +00:00], ["name", "American Women"], ["updated_at", Mon, 28 Apr 2014 00:16:04 UTC +00:00]]
2474
+ SQL (0.2ms) INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["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
   (0.0ms) RELEASE SAVEPOINT active_record_1
326
2476
   (0.0ms) SAVEPOINT active_record_1
327
- SQL (0.1ms) INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Mon, 28 Apr 2014 00:16:04 UTC +00:00], ["name", "The Clash from Across the Ocean"], ["updated_at", Mon, 28 Apr 2014 00:16:04 UTC +00:00]]
2477
+ SQL (0.1ms) 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
   (0.0ms) RELEASE SAVEPOINT active_record_1
329
2479
   (0.0ms) SAVEPOINT active_record_1
330
- SQL (0.1ms) INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Mon, 28 Apr 2014 00:16:04 UTC +00:00], ["name", "The Identity from Hell"], ["updated_at", Mon, 28 Apr 2014 00:16:04 UTC +00:00]]
2480
+ SQL (0.1ms) INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["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
   (0.0ms) RELEASE SAVEPOINT active_record_1
332
2482
   (0.0ms) SAVEPOINT active_record_1
333
- SQL (0.1ms) INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Mon, 28 Apr 2014 00:16:04 UTC +00:00], ["name", "The Tokyo Pickpocket from Outer Space"], ["updated_at", Mon, 28 Apr 2014 00:16:04 UTC +00:00]]
2483
+ SQL (0.1ms) 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
   (0.0ms) RELEASE SAVEPOINT active_record_1
335
2485
  Processing by BooksController#show as HTML
336
2486
  Parameters: {"id"=>"1"}
337
2487
  Book Load (0.1ms) SELECT "books".* FROM "books" WHERE "books"."id" = ? LIMIT 1 [["id", "1"]]
338
- Completed 200 OK in 2.8ms (Views: 1.4ms | ActiveRecord: 0.1ms)
339
-  (0.4ms) rollback transaction
2488
+ Completed 200 OK in 3.7ms (Views: 1.7ms | ActiveRecord: 0.1ms)
2489
+  (0.3ms) rollback transaction
340
2490
   (0.0ms) begin transaction
341
2491
   (0.0ms) SAVEPOINT active_record_1
342
- SQL (0.3ms) INSERT INTO "books" ("created_at", "id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Mon, 28 Apr 2014 00:16:04 UTC +00:00], ["id", 1], ["name", "Return of the Fake Friday"], ["updated_at", Mon, 28 Apr 2014 00:16:04 UTC +00:00]]
2492
+ SQL (0.3ms) 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
   (0.0ms) RELEASE SAVEPOINT active_record_1
344
- Started GET "/books/1" for 127.0.0.1 at 2014-04-27 17:16:04 -0700
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
  Book Load (0.0ms) SELECT "books".* FROM "books" WHERE "books"."id" = ? LIMIT 1 [["id", "1"]]
348
- Completed 200 OK in 1.6ms (Views: 0.9ms | ActiveRecord: 0.0ms)
349
-  (0.4ms) rollback transaction
2498
+ Completed 200 OK in 1.5ms (Views: 0.8ms | ActiveRecord: 0.0ms)
2499
+  (0.2ms) rollback transaction
350
2500
   (0.0ms) begin transaction
351
- Started GET "/books" for 127.0.0.1 at 2014-04-27 17:16:04 -0700
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
  Book Load (0.1ms) SELECT "books".* FROM "books" 
354
2504
  Completed 200 OK in 1.4ms (Views: 0.9ms | ActiveRecord: 0.1ms)
355
-  (0.0ms) rollback transaction
2505
+  (0.1ms) rollback transaction
356
2506
   (0.0ms) begin transaction
357
2507
   (0.0ms) SAVEPOINT active_record_1
358
- SQL (0.4ms) INSERT INTO "books" ("created_at", "id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Mon, 28 Apr 2014 00:16:04 UTC +00:00], ["id", 1], ["name", "Tokyo Women"], ["updated_at", Mon, 28 Apr 2014 00:16:04 UTC +00:00]]
2508
+ SQL (0.3ms) 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", "Red Friday 2: Son of Red Friday"], ["updated_at", Fri, 25 Apr 2014 23:32:55 UTC +00:00]]
359
2509
   (0.0ms) RELEASE SAVEPOINT active_record_1
360
- Started DELETE "/books/1" for 127.0.0.1 at 2014-04-27 17:16:04 -0700
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
  Book Load (0.0ms) SELECT "books".* FROM "books" WHERE "books"."id" = ? LIMIT 1 [["id", "1"]]
364
-  (0.1ms) SAVEPOINT active_record_1
365
- SQL (0.4ms) DELETE FROM "books" WHERE "books"."id" = ? [["id", 1]]
366
-  (0.1ms) RELEASE SAVEPOINT active_record_1
2514
+  (0.0ms) SAVEPOINT active_record_1
2515
+ SQL (0.3ms) DELETE FROM "books" WHERE "books"."id" = ? [["id", 1]]
2516
+  (0.0ms) RELEASE SAVEPOINT active_record_1
367
2517
  Redirected to http://www.example.com/books
368
- Completed 302 Found in 2.9ms (ActiveRecord: 0.6ms)
2518
+ Completed 302 Found in 2.1ms (ActiveRecord: 0.4ms)
369
2519
   (0.1ms) SELECT COUNT(*) FROM "books" WHERE "books"."id" = 1
370
-  (0.4ms) rollback transaction
2520
+  (0.3ms) rollback transaction
371
2521
   (0.0ms) begin transaction
372
2522
   (0.1ms) SELECT COUNT(*) FROM "books"
373
- Started POST "/books" for 127.0.0.1 at 2014-04-27 17:16:04 -0700
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
   (0.0ms) SAVEPOINT active_record_1
377
- SQL (0.3ms) INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Mon, 28 Apr 2014 00:16:04 UTC +00:00], ["name", "some new book"], ["updated_at", Mon, 28 Apr 2014 00:16:04 UTC +00:00]]
2527
+ SQL (0.3ms) 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
   (0.0ms) RELEASE SAVEPOINT active_record_1
379
2529
  Redirected to http://www.example.com/books
380
- Completed 302 Found in 1.8ms (ActiveRecord: 0.4ms)
2530
+ Completed 302 Found in 1.7ms (ActiveRecord: 0.3ms)
381
2531
   (0.0ms) SELECT COUNT(*) FROM "books"
382
2532
   (0.3ms) rollback transaction
383
2533
   (0.0ms) begin transaction
384
2534
   (0.0ms) SAVEPOINT active_record_1
385
- SQL (0.3ms) INSERT INTO "books" ("created_at", "id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Mon, 28 Apr 2014 00:16:04 UTC +00:00], ["id", 1], ["name", "some new book"], ["updated_at", Mon, 28 Apr 2014 00:16:04 UTC +00:00]]
2535
+ SQL (0.3ms) 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
   (0.0ms) RELEASE SAVEPOINT active_record_1
387
- Started PUT "/books/1" for 127.0.0.1 at 2014-04-27 17:16:04 -0700
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
  Book Load (0.0ms) SELECT "books".* FROM "books" WHERE "books"."id" = ? LIMIT 1 [["id", "1"]]
391
2541
   (0.0ms) SAVEPOINT active_record_1
392
-  (0.3ms) UPDATE "books" SET "name" = 'changed book', "updated_at" = '2014-04-28 00:16:04.739229' WHERE "books"."id" = 1
2542
+  (0.3ms) UPDATE "books" SET "name" = 'changed book', "updated_at" = '2014-04-25 23:32:55.048365' WHERE "books"."id" = 1
393
2543
   (0.0ms) RELEASE SAVEPOINT active_record_1
394
2544
  Redirected to http://www.example.com/books/1
395
- Completed 302 Found in 3.4ms (ActiveRecord: 0.4ms)
2545
+ Completed 302 Found in 3.3ms (ActiveRecord: 0.4ms)
396
2546
  Book Load (0.0ms) SELECT "books".* FROM "books" WHERE "books"."id" = ? LIMIT 1 [["id", 1]]
397
2547
   (0.3ms) rollback transaction
398
2548
   (0.0ms) begin transaction
@@ -408,10 +2558,14 @@ Completed 302 Found in 3.4ms (ActiveRecord: 0.4ms)
408
2558
   (0.0ms) begin transaction
409
2559
   (0.0ms) commit transaction
410
2560
   (0.0ms) begin transaction
2561
+  (0.1ms) rollback transaction
2562
+  (0.0ms) begin transaction
2563
+  (0.0ms) commit transaction
2564
+  (0.0ms) begin transaction
411
2565
   (0.0ms) rollback transaction
412
2566
   (0.0ms) begin transaction
413
2567
   (0.0ms) commit transaction
414
-  (0.1ms) begin transaction
2568
+  (0.0ms) begin transaction
415
2569
   (0.0ms) rollback transaction
416
2570
   (0.0ms) begin transaction
417
2571
   (0.0ms) commit transaction
@@ -460,134 +2614,376 @@ Completed 302 Found in 3.4ms (ActiveRecord: 0.4ms)
460
2614
   (0.0ms) begin transaction
461
2615
   (0.0ms) commit transaction
462
2616
   (0.0ms) begin transaction
463
-  (0.1ms) rollback transaction
2617
+  (0.0ms) rollback transaction
2618
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
2619
+  (0.1ms) begin transaction
2620
+  (0.0ms) commit transaction
2621
+  (0.0ms) begin transaction
2622
+ SQL (2.2ms) 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", "Bloody Brain"], ["updated_at", Fri, 25 Apr 2014 23:32:57 UTC +00:00]]
2623
+  (0.7ms) rollback transaction
2624
+  (0.0ms) begin transaction
2625
+  (0.0ms) commit transaction
2626
+  (0.0ms) begin transaction
2627
+ SQL (0.3ms) 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
+  (0.3ms) rollback transaction
464
2629
   (0.0ms) begin transaction
465
2630
   (0.0ms) commit transaction
466
2631
   (0.0ms) begin transaction
2632
+ SQL (0.3ms) 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", "Forbidden Witch"], ["updated_at", Fri, 25 Apr 2014 23:32:57 UTC +00:00]]
2633
+  (0.3ms) rollback transaction
2634
+  (0.0ms) begin transaction
2635
+  (0.0ms) commit transaction
2636
+  (0.0ms) begin transaction
2637
+  (0.0ms) rollback transaction
2638
+  (0.0ms) begin transaction
2639
+  (0.0ms) commit transaction
2640
+  (0.0ms) begin transaction
2641
+ SQL (0.3ms) 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
+  (0.3ms) rollback transaction
2643
+  (0.0ms) begin transaction
2644
+ --------------------------------
2645
+ BooksControllerTest: test_create
2646
+ --------------------------------
2647
+  (0.1ms) SAVEPOINT active_record_1
2648
+ SQL (0.4ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2650
+  (0.0ms) SAVEPOINT active_record_1
2651
+ SQL (0.3ms) INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2653
+  (0.0ms) SAVEPOINT active_record_1
2654
+ SQL (0.1ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2656
+  (0.1ms) SAVEPOINT active_record_1
2657
+ SQL (0.1ms) INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2659
+  (0.0ms) SAVEPOINT active_record_1
2660
+ SQL (0.1ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2662
+  (0.1ms) SELECT COUNT(*) FROM "books"
2663
+ Processing by BooksController#create as HTML
2664
+ Parameters: {"book"=>{"name"=>"newly-created-book"}}
2665
+  (0.0ms) SAVEPOINT active_record_1
2666
+ SQL (0.1ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2668
+ Redirected to http://test.host/books
2669
+ Completed 302 Found in 2ms (ActiveRecord: 0.2ms)
2670
+  (0.1ms) SELECT COUNT(*) FROM "books"
2671
+  (0.3ms) rollback transaction
2672
+  (0.0ms) begin transaction
2673
+ -------------------------------
2674
+ BooksControllerTest: test_index
2675
+ -------------------------------
2676
+  (0.0ms) SAVEPOINT active_record_1
2677
+ SQL (0.3ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2679
+  (0.0ms) SAVEPOINT active_record_1
2680
+ SQL (0.3ms) INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2682
+  (0.0ms) SAVEPOINT active_record_1
2683
+ SQL (0.1ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2685
+  (0.0ms) SAVEPOINT active_record_1
2686
+ SQL (0.1ms) 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 Woman"], ["updated_at", Fri, 25 Apr 2014 23:32:57 UTC +00:00]]
2687
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2688
+  (0.0ms) SAVEPOINT active_record_1
2689
+ SQL (0.1ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2691
+ Processing by BooksController#index as HTML
2692
+ Completed 200 OK in 12ms (Views: 11.7ms | ActiveRecord: 0.0ms)
2693
+  (0.1ms) SELECT COUNT(*) FROM "books"
2694
+  (0.3ms) rollback transaction
2695
+  (0.0ms) begin transaction
2696
+ ------------------------------
2697
+ BooksControllerTest: test_show
2698
+ ------------------------------
2699
+  (0.0ms) SAVEPOINT active_record_1
2700
+ SQL (0.3ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2702
+  (0.0ms) SAVEPOINT active_record_1
2703
+ SQL (0.3ms) INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2705
+  (0.0ms) SAVEPOINT active_record_1
2706
+ SQL (0.1ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2708
+  (0.0ms) SAVEPOINT active_record_1
2709
+ SQL (0.1ms) INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2711
+  (0.0ms) SAVEPOINT active_record_1
2712
+ SQL (0.1ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2714
+ Processing by BooksController#show as HTML
2715
+ Parameters: {"id"=>"1"}
2716
+ Book Load (0.1ms) SELECT "books".* FROM "books" WHERE "books"."id" = ? LIMIT 1 [["id", "1"]]
2717
+ Completed 200 OK in 3ms (Views: 1.3ms | ActiveRecord: 0.1ms)
2718
+  (0.4ms) rollback transaction
2719
+  (0.0ms) begin transaction
2720
+ -----------------------------------------------------------------------
2721
+ FastlyHeadersTest: test_/books/:id_show_page_should_have_fastly_headers
2722
+ -----------------------------------------------------------------------
2723
+  (0.0ms) SAVEPOINT active_record_1
2724
+ SQL (0.3ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
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
+ Book Load (0.1ms) SELECT "books".* FROM "books" WHERE "books"."id" = ? LIMIT 1 [["id", "1"]]
2730
+ Completed 200 OK in 2ms (Views: 0.8ms | ActiveRecord: 0.1ms)
2731
+  (0.3ms) rollback transaction
2732
+  (0.0ms) 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
   (0.0ms) rollback transaction
2740
+  (0.0ms) begin transaction
2741
+ ----------------------------------------------------------------------------------------------
2742
+ FastlyHeadersTest: test_DELETE_/books/:id_should_not_have_fastly_headers/_fastly_header_values
2743
+ ----------------------------------------------------------------------------------------------
2744
+  (0.0ms) SAVEPOINT active_record_1
2745
+ SQL (0.3ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
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
+ Book Load (0.0ms) SELECT "books".* FROM "books" WHERE "books"."id" = ? LIMIT 1 [["id", "1"]]
2751
+  (0.0ms) SAVEPOINT active_record_1
2752
+ SQL (0.3ms) DELETE FROM "books" WHERE "books"."id" = ? [["id", 1]]
2753
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2754
+ Redirected to http://www.example.com/books
2755
+ Completed 302 Found in 2ms (ActiveRecord: 0.4ms)
2756
+  (0.1ms) SELECT COUNT(*) FROM "books" WHERE "books"."id" = 1
2757
+  (0.3ms) rollback transaction
2758
+  (0.0ms) begin transaction
2759
+ ----------------------------------------------------------------------------------------
2760
+ FastlyHeadersTest: test_POST_/books_should_not_have_fastly_headers/_fastly_header_values
2761
+ ----------------------------------------------------------------------------------------
2762
+  (0.1ms) SELECT COUNT(*) FROM "books"
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
+  (0.0ms) SAVEPOINT active_record_1
2767
+ SQL (0.2ms) INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2769
+ Redirected to http://www.example.com/books
2770
+ Completed 302 Found in 1ms (ActiveRecord: 0.3ms)
2771
+  (0.0ms) SELECT COUNT(*) FROM "books"
2772
+  (0.3ms) rollback transaction
2773
+  (0.0ms) begin transaction
2774
+ -------------------------------------------------------------------------------------------
2775
+ FastlyHeadersTest: test_PUT_/books/:id_should_not_have_fastly_headers/_fastly_header_values
2776
+ -------------------------------------------------------------------------------------------
2777
+  (0.0ms) SAVEPOINT active_record_1
2778
+ SQL (0.3ms) 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", "some new book"], ["updated_at", Fri, 25 Apr 2014 23:32:57 UTC +00:00]]
2779
+  (0.0ms) 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
+ Book Load (0.1ms) SELECT "books".* FROM "books" WHERE "books"."id" = ? LIMIT 1 [["id", "1"]]
2784
+  (0.0ms) SAVEPOINT active_record_1
2785
+ SQL (0.4ms) UPDATE "books" SET "name" = ?, "updated_at" = ? WHERE "books"."id" = 1 [["name", "changed book"], ["updated_at", Fri, 25 Apr 2014 23:32:57 UTC +00:00]]
2786
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2787
+ Redirected to http://www.example.com/books/1
2788
+ Completed 302 Found in 3ms (ActiveRecord: 0.6ms)
2789
+ Book Load (0.0ms) SELECT "books".* FROM "books" WHERE "books"."id" = ? LIMIT 1 [["id", 1]]
2790
+  (0.3ms) rollback transaction
2791
+  (0.0ms) begin transaction
2792
+  (0.0ms) commit transaction
2793
+  (0.0ms) begin transaction
2794
+  (0.0ms) rollback transaction
2795
+  (0.0ms) begin transaction
2796
+ -------------------------------------------------------------------------------------------------
2797
+ FastlyRails::CacheControlHeadersTest: test_sets_cache_control_headers_on_actioncontroller_request
2798
+ -------------------------------------------------------------------------------------------------
2799
+  (0.0ms) rollback transaction
2800
+  (0.0ms) begin transaction
2801
+  (0.0ms) commit transaction
2802
+  (0.0ms) begin transaction
2803
+  (0.0ms) rollback transaction
2804
+  (0.0ms) begin transaction
2805
+  (0.0ms) commit transaction
2806
+  (0.0ms) begin transaction
2807
+  (0.0ms) rollback transaction
2808
+  (0.1ms) begin transaction
2809
+  (0.0ms) commit transaction
2810
+  (0.0ms) begin transaction
2811
+  (0.0ms) rollback transaction
2812
+  (0.0ms) begin transaction
2813
+  (0.0ms) commit transaction
2814
+  (0.0ms) begin transaction
2815
+  (0.0ms) rollback transaction
2816
+  (0.0ms) begin transaction
2817
+  (0.0ms) commit transaction
2818
+  (0.0ms) begin transaction
2819
+  (0.0ms) rollback transaction
2820
+  (0.0ms) begin transaction
2821
+  (0.0ms) commit transaction
2822
+  (0.0ms) begin transaction
2823
+  (0.0ms) rollback transaction
2824
+  (0.0ms) begin transaction
2825
+  (0.0ms) commit transaction
2826
+  (0.0ms) begin transaction
2827
+  (0.0ms) rollback transaction
2828
+  (0.0ms) begin transaction
2829
+  (0.0ms) commit transaction
2830
+  (0.0ms) begin transaction
2831
+  (0.0ms) rollback transaction
2832
+  (0.0ms) begin transaction
2833
+  (0.0ms) commit transaction
2834
+  (0.0ms) begin transaction
2835
+  (0.0ms) rollback transaction
2836
+  (0.0ms) begin transaction
2837
+  (0.0ms) commit transaction
2838
+  (0.0ms) begin transaction
2839
+  (0.0ms) rollback transaction
2840
+  (0.0ms) begin transaction
2841
+  (0.0ms) commit transaction
2842
+  (0.0ms) begin transaction
2843
+  (0.0ms) rollback transaction
2844
+  (0.0ms) begin transaction
2845
+  (0.0ms) commit transaction
2846
+  (0.0ms) begin transaction
2847
+  (0.0ms) rollback transaction
2848
+  (0.0ms) begin transaction
2849
+  (0.0ms) commit transaction
2850
+  (0.0ms) begin transaction
2851
+  (0.0ms) rollback transaction
2852
+  (0.0ms) begin transaction
2853
+  (0.0ms) commit transaction
2854
+  (0.0ms) begin transaction
2855
+  (0.0ms) rollback transaction
2856
+  (0.0ms) begin transaction
2857
+  (0.0ms) commit transaction
2858
+  (0.0ms) begin transaction
2859
+  (0.0ms) rollback transaction
2860
+  (0.0ms) begin transaction
2861
+  (0.0ms) commit transaction
2862
+  (0.0ms) begin transaction
2863
+  (0.0ms) rollback transaction
468
2864
  Connecting to database specified by database.yml
469
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
2865
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
470
2866
  Migrating to CreateBooks (20140407202136)
471
2867
   (0.1ms) begin transaction
472
2868
   (0.0ms) commit transaction
473
2869
   (0.0ms) begin transaction
474
-  (0.0ms) SAVEPOINT active_record_1
475
- SQL (2.5ms) INSERT INTO "books" ("created_at", "id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Mon, 28 Apr 2014 00:17:04 UTC +00:00], ["id", 1], ["name", "The Yellow Rose of Northern Ireland"], ["updated_at", Mon, 28 Apr 2014 00:17:04 UTC +00:00]]
2870
+  (0.1ms) SAVEPOINT active_record_1
2871
+ SQL (4.0ms) 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
   (0.0ms) RELEASE SAVEPOINT active_record_1
477
-  (6.2ms) rollback transaction
478
-  (0.0ms) begin transaction
479
-  (0.0ms) commit transaction
480
-  (0.0ms) begin transaction
481
-  (0.0ms) rollback transaction
2873
+  (0.2ms) rollback transaction
482
2874
   (0.0ms) begin transaction
483
2875
   (0.0ms) commit transaction
484
2876
   (0.0ms) begin transaction
485
2877
   (0.0ms) SAVEPOINT active_record_1
486
- SQL (0.3ms) INSERT INTO "books" ("created_at", "id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Mon, 28 Apr 2014 00:17:04 UTC +00:00], ["id", 1], ["name", "Forbidden Witch"], ["updated_at", Mon, 28 Apr 2014 00:17:04 UTC +00:00]]
2878
+ SQL (0.2ms) 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", "The Clash Who Fell to Earth"], ["updated_at", Mon, 28 Apr 2014 15:44:15 UTC +00:00]]
487
2879
   (0.0ms) RELEASE SAVEPOINT active_record_1
488
2880
   (0.2ms) rollback transaction
489
2881
   (0.0ms) begin transaction
490
2882
   (0.0ms) commit transaction
491
2883
   (0.0ms) begin transaction
492
2884
   (0.0ms) SAVEPOINT active_record_1
493
- SQL (0.3ms) INSERT INTO "books" ("created_at", "id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Mon, 28 Apr 2014 00:17:04 UTC +00:00], ["id", 1], ["name", "The Action Friday with a Thousand Faces"], ["updated_at", Mon, 28 Apr 2014 00:17:04 UTC +00:00]]
2885
+ SQL (0.2ms) 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
   (0.0ms) RELEASE SAVEPOINT active_record_1
495
-  (0.3ms) rollback transaction
2887
+  (0.2ms) rollback transaction
496
2888
   (0.0ms) begin transaction
497
2889
   (0.0ms) commit transaction
498
2890
   (0.0ms) begin transaction
499
2891
   (0.0ms) SAVEPOINT active_record_1
500
- SQL (0.3ms) INSERT INTO "books" ("created_at", "id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Mon, 28 Apr 2014 00:17:04 UTC +00:00], ["id", 1], ["name", "Green Mutant"], ["updated_at", Mon, 28 Apr 2014 00:17:04 UTC +00:00]]
2892
+ SQL (0.2ms) 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", "The White Rose of Wales"], ["updated_at", Mon, 28 Apr 2014 15:44:15 UTC +00:00]]
501
2893
   (0.0ms) RELEASE SAVEPOINT active_record_1
502
2894
   (0.3ms) rollback transaction
503
2895
   (0.0ms) begin transaction
2896
+  (0.0ms) commit transaction
2897
+  (0.0ms) begin transaction
2898
+  (0.0ms) rollback transaction
2899
+  (0.0ms) begin transaction
504
2900
   (0.0ms) SAVEPOINT active_record_1
505
- SQL (0.3ms) INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Mon, 28 Apr 2014 00:17:04 UTC +00:00], ["name", "Flying Cousins"], ["updated_at", Mon, 28 Apr 2014 00:17:04 UTC +00:00]]
2901
+ SQL (0.2ms) 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
   (0.0ms) RELEASE SAVEPOINT active_record_1
507
2903
   (0.0ms) SAVEPOINT active_record_1
508
- SQL (0.8ms) INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Mon, 28 Apr 2014 00:17:04 UTC +00:00], ["name", "The Thief Without a Brain"], ["updated_at", Mon, 28 Apr 2014 00:17:04 UTC +00:00]]
2904
+ SQL (0.3ms) INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["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
   (0.0ms) RELEASE SAVEPOINT active_record_1
510
-  (0.1ms) SAVEPOINT active_record_1
511
- SQL (0.1ms) INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Mon, 28 Apr 2014 00:17:04 UTC +00:00], ["name", "Codename: Demon"], ["updated_at", Mon, 28 Apr 2014 00:17:04 UTC +00:00]]
2906
+  (0.0ms) SAVEPOINT active_record_1
2907
+ SQL (0.1ms) 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
   (0.0ms) RELEASE SAVEPOINT active_record_1
513
2909
   (0.0ms) SAVEPOINT active_record_1
514
- SQL (0.1ms) INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Mon, 28 Apr 2014 00:17:04 UTC +00:00], ["name", "Season of the Ultra Diaries"], ["updated_at", Mon, 28 Apr 2014 00:17:04 UTC +00:00]]
2910
+ SQL (0.1ms) INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["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
   (0.0ms) RELEASE SAVEPOINT active_record_1
516
2912
   (0.0ms) SAVEPOINT active_record_1
517
- SQL (0.1ms) INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Mon, 28 Apr 2014 00:17:04 UTC +00:00], ["name", "Christmas on Tomas Harbor"], ["updated_at", Mon, 28 Apr 2014 00:17:04 UTC +00:00]]
2913
+ SQL (0.1ms) 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
   (0.0ms) RELEASE SAVEPOINT active_record_1
519
-  (0.1ms) SELECT COUNT(*) FROM "books"
2915
+  (0.0ms) SELECT COUNT(*) FROM "books"
520
2916
  Processing by BooksController#create as HTML
521
2917
  Parameters: {"book"=>{"name"=>"newly-created-book"}}
522
2918
   (0.0ms) SAVEPOINT active_record_1
523
- SQL (0.2ms) INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Mon, 28 Apr 2014 00:17:04 UTC +00:00], ["name", "newly-created-book"], ["updated_at", Mon, 28 Apr 2014 00:17:04 UTC +00:00]]
2919
+ SQL (0.2ms) 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
   (0.0ms) RELEASE SAVEPOINT active_record_1
525
2921
  Redirected to http://test.host/books
526
- Completed 302 Found in 2.0ms (ActiveRecord: 0.2ms)
527
-  (0.1ms) SELECT COUNT(*) FROM "books"
528
-  (0.4ms) rollback transaction
2922
+ Completed 302 Found in 1.8ms (ActiveRecord: 0.2ms)
2923
+  (0.0ms) SELECT COUNT(*) FROM "books"
2924
+  (0.3ms) rollback transaction
529
2925
   (0.0ms) begin transaction
530
2926
   (0.0ms) SAVEPOINT active_record_1
531
- SQL (0.3ms) INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Mon, 28 Apr 2014 00:17:04 UTC +00:00], ["name", "The Death Monster with a Thousand Faces"], ["updated_at", Mon, 28 Apr 2014 00:17:04 UTC +00:00]]
2927
+ SQL (0.3ms) 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
   (0.0ms) RELEASE SAVEPOINT active_record_1
533
2929
   (0.0ms) SAVEPOINT active_record_1
534
- SQL (0.3ms) INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Mon, 28 Apr 2014 00:17:04 UTC +00:00], ["name", "A Fistful of Ultra Mutant"], ["updated_at", Mon, 28 Apr 2014 00:17:04 UTC +00:00]]
2930
+ SQL (0.3ms) INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["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
   (0.0ms) RELEASE SAVEPOINT active_record_1
536
2932
   (0.0ms) SAVEPOINT active_record_1
537
- SQL (0.1ms) INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Mon, 28 Apr 2014 00:17:04 UTC +00:00], ["name", "1979 A.D."], ["updated_at", Mon, 28 Apr 2014 00:17:04 UTC +00:00]]
2933
+ SQL (0.1ms) 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
   (0.0ms) RELEASE SAVEPOINT active_record_1
539
2935
   (0.0ms) SAVEPOINT active_record_1
540
- SQL (0.1ms) INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Mon, 28 Apr 2014 00:17:04 UTC +00:00], ["name", "Fake Women"], ["updated_at", Mon, 28 Apr 2014 00:17:04 UTC +00:00]]
2936
+ SQL (0.1ms) INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["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
   (0.0ms) RELEASE SAVEPOINT active_record_1
542
2938
   (0.0ms) SAVEPOINT active_record_1
543
- SQL (0.1ms) INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Mon, 28 Apr 2014 00:17:04 UTC +00:00], ["name", "Day of the Nuclear Women"], ["updated_at", Mon, 28 Apr 2014 00:17:04 UTC +00:00]]
2939
+ SQL (0.1ms) 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
   (0.0ms) RELEASE SAVEPOINT active_record_1
545
2941
  Processing by BooksController#index as HTML
546
2942
  Book Load (0.1ms) SELECT "books".* FROM "books"
547
- Completed 200 OK in 7.4ms (Views: 6.2ms | ActiveRecord: 0.1ms)
548
-  (0.5ms) rollback transaction
2943
+ Completed 200 OK in 9.0ms (Views: 8.0ms | ActiveRecord: 0.1ms)
2944
+  (0.4ms) rollback transaction
549
2945
   (0.0ms) begin transaction
550
2946
   (0.0ms) SAVEPOINT active_record_1
551
- SQL (0.3ms) INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Mon, 28 Apr 2014 00:17:04 UTC +00:00], ["name", "Hard Boiled Dreams"], ["updated_at", Mon, 28 Apr 2014 00:17:04 UTC +00:00]]
2947
+ SQL (0.3ms) 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
   (0.0ms) RELEASE SAVEPOINT active_record_1
553
2949
   (0.0ms) SAVEPOINT active_record_1
554
- SQL (0.3ms) INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Mon, 28 Apr 2014 00:17:04 UTC +00:00], ["name", "The Cousins from Cipriani"], ["updated_at", Mon, 28 Apr 2014 00:17:04 UTC +00:00]]
2950
+ SQL (0.3ms) INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["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
   (0.0ms) RELEASE SAVEPOINT active_record_1
556
2952
   (0.0ms) SAVEPOINT active_record_1
557
- SQL (0.1ms) INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Mon, 28 Apr 2014 00:17:04 UTC +00:00], ["name", "The Tokyo Friday from Outer Space"], ["updated_at", Mon, 28 Apr 2014 00:17:04 UTC +00:00]]
2953
+ SQL (0.1ms) 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
   (0.0ms) RELEASE SAVEPOINT active_record_1
559
2955
   (0.0ms) SAVEPOINT active_record_1
560
- SQL (0.1ms) INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Mon, 28 Apr 2014 00:17:04 UTC +00:00], ["name", "The Woman"], ["updated_at", Mon, 28 Apr 2014 00:17:04 UTC +00:00]]
2956
+ SQL (0.1ms) INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["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
   (0.0ms) RELEASE SAVEPOINT active_record_1
562
2958
   (0.0ms) SAVEPOINT active_record_1
563
- SQL (0.1ms) INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Mon, 28 Apr 2014 00:17:04 UTC +00:00], ["name", "The Beast Without a Men"], ["updated_at", Mon, 28 Apr 2014 00:17:04 UTC +00:00]]
2959
+ SQL (0.1ms) 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
   (0.0ms) RELEASE SAVEPOINT active_record_1
565
2961
  Processing by BooksController#show as HTML
566
2962
  Parameters: {"id"=>"1"}
567
2963
  Book Load (0.1ms) SELECT "books".* FROM "books" WHERE "books"."id" = ? LIMIT 1 [["id", "1"]]
568
- Completed 200 OK in 2.8ms (Views: 1.4ms | ActiveRecord: 0.1ms)
2964
+ Completed 200 OK in 3.8ms (Views: 2.1ms | ActiveRecord: 0.1ms)
569
2965
   (0.4ms) rollback transaction
570
2966
   (0.0ms) begin transaction
571
2967
   (0.0ms) SAVEPOINT active_record_1
572
- SQL (0.3ms) INSERT INTO "books" ("created_at", "id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Mon, 28 Apr 2014 00:17:04 UTC +00:00], ["id", 1], ["name", "Danger Fly"], ["updated_at", Mon, 28 Apr 2014 00:17:04 UTC +00:00]]
2968
+ SQL (0.3ms) 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
   (0.0ms) RELEASE SAVEPOINT active_record_1
574
- Started GET "/books/1" for 127.0.0.1 at 2014-04-27 17:17:04 -0700
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
  Book Load (0.0ms) SELECT "books".* FROM "books" WHERE "books"."id" = ? LIMIT 1 [["id", "1"]]
578
- Completed 200 OK in 1.7ms (Views: 0.9ms | ActiveRecord: 0.0ms)
2974
+ Completed 200 OK in 1.6ms (Views: 0.9ms | ActiveRecord: 0.0ms)
579
2975
   (0.3ms) rollback transaction
580
-  (0.1ms) begin transaction
581
- Started GET "/books" for 127.0.0.1 at 2014-04-27 17:17:04 -0700
2976
+  (0.0ms) 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
- Book Load (0.2ms) SELECT "books".* FROM "books" 
584
- Completed 200 OK in 1.5ms (Views: 0.9ms | ActiveRecord: 0.2ms)
2979
+ Book Load (0.1ms) SELECT "books".* FROM "books" 
2980
+ Completed 200 OK in 1.3ms (Views: 0.8ms | ActiveRecord: 0.1ms)
585
2981
   (0.0ms) rollback transaction
586
2982
   (0.0ms) begin transaction
587
2983
   (0.0ms) SAVEPOINT active_record_1
588
- SQL (0.3ms) INSERT INTO "books" ("created_at", "id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Mon, 28 Apr 2014 00:17:04 UTC +00:00], ["id", 1], ["name", "Codename: Cat"], ["updated_at", Mon, 28 Apr 2014 00:17:04 UTC +00:00]]
2984
+ SQL (0.3ms) 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", "War of the Monster"], ["updated_at", Mon, 28 Apr 2014 15:44:15 UTC +00:00]]
589
2985
   (0.0ms) RELEASE SAVEPOINT active_record_1
590
- Started DELETE "/books/1" for 127.0.0.1 at 2014-04-27 17:17:04 -0700
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
  Book Load (0.0ms) SELECT "books".* FROM "books" WHERE "books"."id" = ? LIMIT 1 [["id", "1"]]
@@ -595,16 +2991,16 @@ Processing by BooksController#destroy as HTML
595
2991
  SQL (0.3ms) DELETE FROM "books" WHERE "books"."id" = ? [["id", 1]]
596
2992
   (0.0ms) RELEASE SAVEPOINT active_record_1
597
2993
  Redirected to http://www.example.com/books
598
- Completed 302 Found in 2.2ms (ActiveRecord: 0.4ms)
2994
+ Completed 302 Found in 1.9ms (ActiveRecord: 0.4ms)
599
2995
   (0.1ms) SELECT COUNT(*) FROM "books" WHERE "books"."id" = 1
600
2996
   (0.4ms) rollback transaction
601
2997
   (0.0ms) begin transaction
602
2998
   (0.1ms) SELECT COUNT(*) FROM "books"
603
- Started POST "/books" for 127.0.0.1 at 2014-04-27 17:17:04 -0700
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
   (0.0ms) SAVEPOINT active_record_1
607
- SQL (0.3ms) INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Mon, 28 Apr 2014 00:17:04 UTC +00:00], ["name", "some new book"], ["updated_at", Mon, 28 Apr 2014 00:17:04 UTC +00:00]]
3003
+ SQL (0.3ms) 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
   (0.0ms) RELEASE SAVEPOINT active_record_1
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
   (0.3ms) rollback transaction
613
3009
   (0.0ms) begin transaction
614
3010
   (0.0ms) SAVEPOINT active_record_1
615
- SQL (0.3ms) INSERT INTO "books" ("created_at", "id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Mon, 28 Apr 2014 00:17:04 UTC +00:00], ["id", 1], ["name", "some new book"], ["updated_at", Mon, 28 Apr 2014 00:17:04 UTC +00:00]]
3011
+ SQL (0.3ms) 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
   (0.0ms) RELEASE SAVEPOINT active_record_1
617
- Started PUT "/books/1" for 127.0.0.1 at 2014-04-27 17:17:04 -0700
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
  Book Load (0.0ms) SELECT "books".* FROM "books" WHERE "books"."id" = ? LIMIT 1 [["id", "1"]]
621
3017
   (0.0ms) SAVEPOINT active_record_1
622
-  (0.3ms) UPDATE "books" SET "name" = 'changed book', "updated_at" = '2014-04-28 00:17:04.703277' WHERE "books"."id" = 1
3018
+  (0.3ms) UPDATE "books" SET "name" = 'changed book', "updated_at" = '2014-04-28 15:44:15.846453' WHERE "books"."id" = 1
623
3019
   (0.0ms) RELEASE SAVEPOINT active_record_1
624
3020
  Redirected to http://www.example.com/books/1
625
- Completed 302 Found in 3.0ms (ActiveRecord: 0.4ms)
3021
+ Completed 302 Found in 2.9ms (ActiveRecord: 0.4ms)
626
3022
  Book Load (0.0ms) SELECT "books".* FROM "books" WHERE "books"."id" = ? LIMIT 1 [["id", 1]]
627
-  (0.4ms) rollback transaction
3023
+  (0.3ms) rollback transaction
628
3024
   (0.0ms) begin transaction
629
3025
   (0.0ms) commit transaction
630
3026
   (0.0ms) begin transaction
@@ -634,23 +3030,23 @@ Completed 302 Found in 3.0ms (ActiveRecord: 0.4ms)
634
3030
   (0.0ms) begin transaction
635
3031
   (0.0ms) commit transaction
636
3032
   (0.0ms) begin transaction
637
-  (0.0ms) rollback transaction
3033
+  (0.1ms) rollback transaction
638
3034
   (0.0ms) begin transaction
639
3035
   (0.0ms) commit transaction
640
3036
   (0.0ms) begin transaction
641
-  (0.0ms) rollback transaction
3037
+  (0.1ms) rollback transaction
642
3038
   (0.0ms) begin transaction
643
-  (0.0ms) commit transaction
3039
+  (0.1ms) commit transaction
3040
+  (0.0ms) begin transaction
3041
+  (0.1ms) rollback transaction
644
3042
   (0.0ms) begin transaction
645
-  (0.0ms) rollback transaction
646
-  (0.1ms) begin transaction
647
3043
   (0.0ms) commit transaction
648
3044
   (0.0ms) begin transaction
649
3045
   (0.0ms) rollback transaction
650
3046
   (0.0ms) begin transaction
651
3047
   (0.0ms) commit transaction
652
3048
   (0.0ms) begin transaction
653
-  (0.0ms) rollback transaction
3049
+  (0.1ms) rollback transaction
654
3050
   (0.0ms) begin transaction
655
3051
   (0.0ms) commit transaction
656
3052
   (0.0ms) begin transaction
@@ -699,173 +3095,173 @@ Completed 302 Found in 3.0ms (ActiveRecord: 0.4ms)
699
3095
   (0.1ms) begin transaction
700
3096
   (0.0ms) commit transaction
701
3097
   (0.0ms) begin transaction
702
- SQL (2.8ms) INSERT INTO "books" ("created_at", "id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Mon, 28 Apr 2014 00:17:07 UTC +00:00], ["id", 1], ["name", "War of the Blonde Wizard"], ["updated_at", Mon, 28 Apr 2014 00:17:07 UTC +00:00]]
703
-  (0.2ms) rollback transaction
704
-  (0.0ms) begin transaction
705
-  (0.0ms) commit transaction
706
-  (0.0ms) begin transaction
707
-  (0.0ms) rollback transaction
3098
+  (0.0ms) rollback transaction
3099
+  (0.0ms) begin transaction
3100
+  (0.0ms) commit transaction
3101
+  (0.0ms) begin transaction
3102
+ SQL (2.4ms) 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", "Blue Thief: The Barton Schinner Story"], ["updated_at", Mon, 28 Apr 2014 15:44:18 UTC +00:00]]
3103
+  (0.3ms) rollback transaction
708
3104
   (0.0ms) begin transaction
709
3105
   (0.0ms) commit transaction
710
3106
   (0.0ms) begin transaction
711
- SQL (0.3ms) INSERT INTO "books" ("created_at", "id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Mon, 28 Apr 2014 00:17:07 UTC +00:00], ["id", 1], ["name", "The Cat from Across the Ocean"], ["updated_at", Mon, 28 Apr 2014 00:17:07 UTC +00:00]]
3107
+ SQL (0.3ms) 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
   (0.3ms) rollback transaction
713
3109
   (0.0ms) begin transaction
714
3110
   (0.0ms) commit transaction
715
3111
   (0.0ms) begin transaction
716
- SQL (0.3ms) INSERT INTO "books" ("created_at", "id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Mon, 28 Apr 2014 00:17:07 UTC +00:00], ["id", 1], ["name", "Codename: American Brains"], ["updated_at", Mon, 28 Apr 2014 00:17:07 UTC +00:00]]
3112
+ SQL (0.3ms) 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", "When Dejon Met Cicero"], ["updated_at", Mon, 28 Apr 2014 15:44:18 UTC +00:00]]
717
3113
   (0.3ms) rollback transaction
718
3114
   (0.0ms) begin transaction
719
3115
   (0.0ms) commit transaction
720
3116
   (0.0ms) begin transaction
721
- SQL (0.3ms) INSERT INTO "books" ("created_at", "id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Mon, 28 Apr 2014 00:17:07 UTC +00:00], ["id", 1], ["name", "The Ninja Who Fell to Earth"], ["updated_at", Mon, 28 Apr 2014 00:17:07 UTC +00:00]]
722
-  (0.2ms) rollback transaction
3117
+ SQL (0.3ms) 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
+  (0.3ms) rollback transaction
723
3119
   (0.0ms) begin transaction
724
3120
  --------------------------------
725
3121
  BooksControllerTest: test_create
726
3122
  --------------------------------
727
3123
   (0.1ms) SAVEPOINT active_record_1
728
- SQL (0.4ms) INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Mon, 28 Apr 2014 00:17:07 UTC +00:00], ["name", "Codename: American Brain"], ["updated_at", Mon, 28 Apr 2014 00:17:07 UTC +00:00]]
3124
+ SQL (0.4ms) 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
   (0.0ms) RELEASE SAVEPOINT active_record_1
730
3126
   (0.0ms) SAVEPOINT active_record_1
731
- SQL (0.9ms) INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Mon, 28 Apr 2014 00:17:07 UTC +00:00], ["name", "When Tania Met Deron"], ["updated_at", Mon, 28 Apr 2014 00:17:07 UTC +00:00]]
3127
+ SQL (0.3ms) INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["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
   (0.0ms) RELEASE SAVEPOINT active_record_1
733
-  (0.1ms) SAVEPOINT active_record_1
734
- SQL (0.1ms) INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Mon, 28 Apr 2014 00:17:07 UTC +00:00], ["name", "Ultra Witch"], ["updated_at", Mon, 28 Apr 2014 00:17:07 UTC +00:00]]
3129
+  (0.0ms) SAVEPOINT active_record_1
3130
+ SQL (0.1ms) 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
   (0.0ms) RELEASE SAVEPOINT active_record_1
736
3132
   (0.0ms) SAVEPOINT active_record_1
737
- SQL (0.1ms) INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Mon, 28 Apr 2014 00:17:07 UTC +00:00], ["name", "Green World"], ["updated_at", Mon, 28 Apr 2014 00:17:07 UTC +00:00]]
3133
+ SQL (0.1ms) INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["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
   (0.0ms) RELEASE SAVEPOINT active_record_1
739
3135
   (0.0ms) SAVEPOINT active_record_1
740
- SQL (0.1ms) INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Mon, 28 Apr 2014 00:17:07 UTC +00:00], ["name", "The Electric Mutant"], ["updated_at", Mon, 28 Apr 2014 00:17:07 UTC +00:00]]
3136
+ SQL (0.1ms) 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
   (0.0ms) RELEASE SAVEPOINT active_record_1
742
3138
   (0.1ms) SELECT COUNT(*) FROM "books"
743
3139
  Processing by BooksController#create as HTML
744
3140
  Parameters: {"book"=>{"name"=>"newly-created-book"}}
745
3141
   (0.1ms) SAVEPOINT active_record_1
746
- SQL (0.2ms) INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Mon, 28 Apr 2014 00:17:07 UTC +00:00], ["name", "newly-created-book"], ["updated_at", Mon, 28 Apr 2014 00:17:07 UTC +00:00]]
3142
+ SQL (0.1ms) 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
   (0.0ms) RELEASE SAVEPOINT active_record_1
748
3144
  Redirected to http://test.host/books
749
- Completed 302 Found in 2ms (ActiveRecord: 0.3ms)
750
-  (0.1ms) SELECT COUNT(*) FROM "books"
3145
+ Completed 302 Found in 2ms (ActiveRecord: 0.2ms)
3146
+  (0.0ms) SELECT COUNT(*) FROM "books"
751
3147
   (0.4ms) rollback transaction
752
-  (0.0ms) begin transaction
3148
+  (0.1ms) begin transaction
753
3149
  -------------------------------
754
3150
  BooksControllerTest: test_index
755
3151
  -------------------------------
756
3152
   (0.0ms) SAVEPOINT active_record_1
757
- SQL (0.3ms) INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Mon, 28 Apr 2014 00:17:07 UTC +00:00], ["name", "The Hungry Tears from Across the Ocean"], ["updated_at", Mon, 28 Apr 2014 00:17:07 UTC +00:00]]
3153
+ SQL (0.3ms) 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
   (0.0ms) RELEASE SAVEPOINT active_record_1
759
3155
   (0.0ms) SAVEPOINT active_record_1
760
- SQL (0.3ms) INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Mon, 28 Apr 2014 00:17:07 UTC +00:00], ["name", "The Clash Who Fell to Earth"], ["updated_at", Mon, 28 Apr 2014 00:17:07 UTC +00:00]]
3156
+ SQL (0.3ms) INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["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
   (0.0ms) RELEASE SAVEPOINT active_record_1
762
3158
   (0.0ms) SAVEPOINT active_record_1
763
- SQL (0.2ms) INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Mon, 28 Apr 2014 00:17:07 UTC +00:00], ["name", "Dr. Rain"], ["updated_at", Mon, 28 Apr 2014 00:17:07 UTC +00:00]]
3159
+ SQL (0.1ms) 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
   (0.0ms) RELEASE SAVEPOINT active_record_1
765
3161
   (0.0ms) SAVEPOINT active_record_1
766
- SQL (0.1ms) INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Mon, 28 Apr 2014 00:17:07 UTC +00:00], ["name", "Bloody Ninja"], ["updated_at", Mon, 28 Apr 2014 00:17:07 UTC +00:00]]
3162
+ SQL (0.1ms) INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["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
   (0.0ms) RELEASE SAVEPOINT active_record_1
768
3164
   (0.0ms) SAVEPOINT active_record_1
769
- SQL (0.1ms) INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Mon, 28 Apr 2014 00:17:07 UTC +00:00], ["name", "The Bloody Witch That Came to Dinner"], ["updated_at", Mon, 28 Apr 2014 00:17:07 UTC +00:00]]
3165
+ SQL (0.1ms) 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
   (0.0ms) RELEASE SAVEPOINT active_record_1
771
3167
  Processing by BooksController#index as HTML
772
- Completed 200 OK in 15ms (Views: 14.9ms | ActiveRecord: 0.0ms)
3168
+ Completed 200 OK in 15ms (Views: 15.1ms | ActiveRecord: 0.0ms)
773
3169
   (0.1ms) SELECT COUNT(*) FROM "books"
774
-  (0.3ms) rollback transaction
3170
+  (0.4ms) rollback transaction
775
3171
   (0.1ms) begin transaction
776
3172
  ------------------------------
777
3173
  BooksControllerTest: test_show
778
3174
  ------------------------------
779
3175
   (0.0ms) SAVEPOINT active_record_1
780
- SQL (0.3ms) INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Mon, 28 Apr 2014 00:17:07 UTC +00:00], ["name", "Rise of the Jungle"], ["updated_at", Mon, 28 Apr 2014 00:17:07 UTC +00:00]]
3176
+ SQL (0.3ms) 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
   (0.0ms) RELEASE SAVEPOINT active_record_1
782
3178
   (0.0ms) SAVEPOINT active_record_1
783
- SQL (0.3ms) INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Mon, 28 Apr 2014 00:17:07 UTC +00:00], ["name", "Case of the Missing American City"], ["updated_at", Mon, 28 Apr 2014 00:17:07 UTC +00:00]]
3179
+ SQL (0.3ms) INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["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
   (0.0ms) RELEASE SAVEPOINT active_record_1
785
3181
   (0.0ms) SAVEPOINT active_record_1
786
- SQL (0.1ms) INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Mon, 28 Apr 2014 00:17:07 UTC +00:00], ["name", "Green Cousins"], ["updated_at", Mon, 28 Apr 2014 00:17:07 UTC +00:00]]
787
-  (0.0ms) RELEASE SAVEPOINT active_record_1
3182
+ SQL (0.1ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
788
3184
   (0.0ms) SAVEPOINT active_record_1
789
- SQL (0.1ms) INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Mon, 28 Apr 2014 00:17:07 UTC +00:00], ["name", "Curse of the Pickpocket"], ["updated_at", Mon, 28 Apr 2014 00:17:07 UTC +00:00]]
3185
+ SQL (0.1ms) INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["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
   (0.0ms) RELEASE SAVEPOINT active_record_1
791
3187
   (0.0ms) SAVEPOINT active_record_1
792
- SQL (0.1ms) INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Mon, 28 Apr 2014 00:17:07 UTC +00:00], ["name", "The Mutant Without a Pickpocket"], ["updated_at", Mon, 28 Apr 2014 00:17:07 UTC +00:00]]
3188
+ SQL (0.1ms) 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
   (0.0ms) RELEASE SAVEPOINT active_record_1
794
3190
  Processing by BooksController#show as HTML
795
3191
  Parameters: {"id"=>"1"}
796
3192
  Book Load (0.1ms) SELECT "books".* FROM "books" WHERE "books"."id" = ? LIMIT 1 [["id", "1"]]
797
- Completed 200 OK in 3ms (Views: 1.4ms | ActiveRecord: 0.1ms)
3193
+ Completed 200 OK in 3ms (Views: 1.3ms | ActiveRecord: 0.1ms)
798
3194
   (0.4ms) rollback transaction
799
3195
   (0.0ms) begin transaction
800
3196
  -----------------------------------------------------------------------
801
3197
  FastlyHeadersTest: test_/books/:id_show_page_should_have_fastly_headers
802
3198
  -----------------------------------------------------------------------
803
-  (0.0ms) SAVEPOINT active_record_1
804
- SQL (0.3ms) INSERT INTO "books" ("created_at", "id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Mon, 28 Apr 2014 00:17:07 UTC +00:00], ["id", 1], ["name", "Champagne Man"], ["updated_at", Mon, 28 Apr 2014 00:17:07 UTC +00:00]]
3199
+  (0.1ms) SAVEPOINT active_record_1
3200
+ SQL (0.3ms) 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
   (0.0ms) RELEASE SAVEPOINT active_record_1
806
- Started GET "/books/1" for 127.0.0.1 at 2014-04-27 17:17:07 -0700
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
  Book Load (0.1ms) SELECT "books".* FROM "books" WHERE "books"."id" = ? LIMIT 1 [["id", "1"]]
810
- Completed 200 OK in 2ms (Views: 0.8ms | ActiveRecord: 0.1ms)
811
-  (0.4ms) rollback transaction
812
-  (0.0ms) begin transaction
3206
+ Completed 200 OK in 2ms (Views: 0.7ms | ActiveRecord: 0.1ms)
3207
+  (0.3ms) rollback transaction
3208
+  (0.1ms) 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-27 17:17:07 -0700
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.7ms | ActiveRecord: 0.0ms)
819
-  (0.1ms) rollback transaction
3214
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
3215
+  (0.0ms) rollback transaction
820
3216
   (0.0ms) begin transaction
821
3217
  ----------------------------------------------------------------------------------------------
822
3218
  FastlyHeadersTest: test_DELETE_/books/:id_should_not_have_fastly_headers/_fastly_header_values
823
3219
  ----------------------------------------------------------------------------------------------
824
3220
   (0.0ms) SAVEPOINT active_record_1
825
- SQL (0.3ms) INSERT INTO "books" ("created_at", "id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Mon, 28 Apr 2014 00:17:07 UTC +00:00], ["id", 1], ["name", "2808 A.D."], ["updated_at", Mon, 28 Apr 2014 00:17:07 UTC +00:00]]
826
-  (0.0ms) RELEASE SAVEPOINT active_record_1
827
- Started DELETE "/books/1" for 127.0.0.1 at 2014-04-27 17:17:07 -0700
3221
+ SQL (0.3ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
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
- Book Load (0.0ms) SELECT "books".* FROM "books" WHERE "books"."id" = ? LIMIT 1 [["id", "1"]]
3226
+ Book Load (0.1ms) SELECT "books".* FROM "books" WHERE "books"."id" = ? LIMIT 1 [["id", "1"]]
831
3227
   (0.0ms) SAVEPOINT active_record_1
832
3228
  SQL (0.3ms) DELETE FROM "books" WHERE "books"."id" = ? [["id", 1]]
833
3229
   (0.0ms) RELEASE SAVEPOINT active_record_1
834
3230
  Redirected to http://www.example.com/books
835
- Completed 302 Found in 2ms (ActiveRecord: 0.4ms)
3231
+ Completed 302 Found in 2ms (ActiveRecord: 0.5ms)
836
3232
   (0.1ms) SELECT COUNT(*) FROM "books" WHERE "books"."id" = 1
837
-  (0.5ms) rollback transaction
838
-  (0.0ms) begin transaction
3233
+  (0.4ms) rollback transaction
3234
+  (0.1ms) begin transaction
839
3235
  ----------------------------------------------------------------------------------------
840
3236
  FastlyHeadersTest: test_POST_/books_should_not_have_fastly_headers/_fastly_header_values
841
3237
  ----------------------------------------------------------------------------------------
842
3238
   (0.1ms) SELECT COUNT(*) FROM "books"
843
- Started POST "/books" for 127.0.0.1 at 2014-04-27 17:17:07 -0700
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
-  (0.1ms) SAVEPOINT active_record_1
847
- SQL (0.3ms) INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Mon, 28 Apr 2014 00:17:07 UTC +00:00], ["name", "some new book"], ["updated_at", Mon, 28 Apr 2014 00:17:07 UTC +00:00]]
3242
+  (0.0ms) SAVEPOINT active_record_1
3243
+ SQL (0.2ms) INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["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
   (0.0ms) RELEASE SAVEPOINT active_record_1
849
3245
  Redirected to http://www.example.com/books
850
- Completed 302 Found in 2ms (ActiveRecord: 0.4ms)
3246
+ Completed 302 Found in 2ms (ActiveRecord: 0.3ms)
851
3247
   (0.1ms) SELECT COUNT(*) FROM "books"
852
3248
   (0.3ms) rollback transaction
853
-  (0.1ms) begin transaction
3249
+  (0.0ms) begin transaction
854
3250
  -------------------------------------------------------------------------------------------
855
3251
  FastlyHeadersTest: test_PUT_/books/:id_should_not_have_fastly_headers/_fastly_header_values
856
3252
  -------------------------------------------------------------------------------------------
857
-  (0.0ms) SAVEPOINT active_record_1
858
- SQL (0.3ms) INSERT INTO "books" ("created_at", "id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Mon, 28 Apr 2014 00:17:07 UTC +00:00], ["id", 1], ["name", "some new book"], ["updated_at", Mon, 28 Apr 2014 00:17:07 UTC +00:00]]
3253
+  (0.1ms) SAVEPOINT active_record_1
3254
+ SQL (0.3ms) 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", "some new book"], ["updated_at", Mon, 28 Apr 2014 15:44:18 UTC +00:00]]
859
3255
   (0.0ms) RELEASE SAVEPOINT active_record_1
860
- Started PUT "/books/1" for 127.0.0.1 at 2014-04-27 17:17:07 -0700
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
  Book Load (0.0ms) SELECT "books".* FROM "books" WHERE "books"."id" = ? LIMIT 1 [["id", "1"]]
864
3260
   (0.0ms) SAVEPOINT active_record_1
865
- SQL (0.4ms) UPDATE "books" SET "name" = ?, "updated_at" = ? WHERE "books"."id" = 1 [["name", "changed book"], ["updated_at", Mon, 28 Apr 2014 00:17:07 UTC +00:00]]
3261
+ SQL (0.4ms) UPDATE "books" SET "name" = ?, "updated_at" = ? WHERE "books"."id" = 1 [["name", "changed book"], ["updated_at", Mon, 28 Apr 2014 15:44:18 UTC +00:00]]
866
3262
   (0.0ms) RELEASE SAVEPOINT active_record_1
867
3263
  Redirected to http://www.example.com/books/1
868
- Completed 302 Found in 3ms (ActiveRecord: 0.6ms)
3264
+ Completed 302 Found in 3ms (ActiveRecord: 0.5ms)
869
3265
  Book Load (0.0ms) SELECT "books".* FROM "books" WHERE "books"."id" = ? LIMIT 1 [["id", 1]]
870
3266
   (0.3ms) rollback transaction
871
3267
   (0.0ms) begin transaction
@@ -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
-  (0.0ms) rollback transaction
3275
+  (0.1ms) rollback transaction
880
3276
   (0.0ms) begin transaction
881
3277
   (0.0ms) commit transaction
882
3278
   (0.0ms) begin transaction
@@ -884,12 +3280,12 @@ FastlyRails::CacheControlHeadersTest: test_sets_cache_control_headers_on_actionc
884
3280
   (0.0ms) begin transaction
885
3281
   (0.0ms) commit transaction
886
3282
   (0.0ms) begin transaction
887
-  (0.0ms) rollback transaction
3283
+  (0.1ms) rollback transaction
888
3284
   (0.0ms) begin transaction
889
3285
   (0.0ms) commit transaction
890
3286
   (0.0ms) begin transaction
891
-  (0.0ms) rollback transaction
892
-  (0.1ms) begin transaction
3287
+  (0.1ms) rollback transaction
3288
+  (0.0ms) begin transaction
893
3289
   (0.0ms) commit transaction
894
3290
   (0.0ms) begin transaction
895
3291
   (0.0ms) rollback transaction
@@ -901,7 +3297,7 @@ FastlyRails::CacheControlHeadersTest: test_sets_cache_control_headers_on_actionc
901
3297
   (0.0ms) commit transaction
902
3298
   (0.0ms) begin transaction
903
3299
   (0.0ms) rollback transaction
904
-  (0.1ms) begin transaction
3300
+  (0.0ms) begin transaction
905
3301
   (0.0ms) commit transaction
906
3302
   (0.0ms) begin transaction
907
3303
   (0.0ms) rollback transaction
@@ -911,14 +3307,14 @@ FastlyRails::CacheControlHeadersTest: test_sets_cache_control_headers_on_actionc
911
3307
   (0.0ms) rollback transaction
912
3308
   (0.0ms) begin transaction
913
3309
   (0.0ms) commit transaction
914
-  (0.1ms) begin transaction
3310
+  (0.0ms) begin transaction
915
3311
   (0.0ms) rollback transaction
916
3312
   (0.0ms) begin transaction
917
3313
   (0.0ms) commit transaction
918
3314
   (0.0ms) begin transaction
919
3315
   (0.0ms) rollback transaction
920
3316
   (0.0ms) begin transaction
921
-  (0.1ms) commit transaction
3317
+  (0.0ms) commit transaction
922
3318
   (0.0ms) begin transaction
923
3319
   (0.0ms) rollback transaction
924
3320
   (0.0ms) begin transaction
@@ -928,7 +3324,7 @@ FastlyRails::CacheControlHeadersTest: test_sets_cache_control_headers_on_actionc
928
3324
   (0.0ms) begin transaction
929
3325
   (0.0ms) commit transaction
930
3326
   (0.0ms) begin transaction
931
-  (0.1ms) rollback transaction
3327
+  (0.0ms) rollback transaction
932
3328
   (0.0ms) begin transaction
933
3329
   (0.0ms) commit transaction
934
3330
   (0.0ms) begin transaction
@@ -936,7 +3332,7 @@ FastlyRails::CacheControlHeadersTest: test_sets_cache_control_headers_on_actionc
936
3332
   (0.0ms) begin transaction
937
3333
   (0.0ms) commit transaction
938
3334
   (0.0ms) begin transaction
939
-  (0.0ms) rollback transaction
3335
+  (0.1ms) rollback transaction
940
3336
   (0.0ms) begin transaction
941
3337
   (0.0ms) commit transaction
942
3338
   (0.0ms) begin transaction
@@ -951,154 +3347,154 @@ Migrating to CreateBooks (20140407202136)
951
3347
   (0.0ms) begin transaction
952
3348
   (0.0ms) commit transaction
953
3349
   (0.0ms) begin transaction
954
-  (0.0ms) SAVEPOINT active_record_1
955
- SQL (2.5ms) INSERT INTO "books" ("created_at", "id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Mon, 28 Apr 2014 00:17:16 UTC +00:00], ["id", 1], ["name", "The Tentacle with a Thousand Faces"], ["updated_at", Mon, 28 Apr 2014 00:17:16 UTC +00:00]]
3350
+  (0.1ms) SAVEPOINT active_record_1
3351
+ SQL (4.1ms) 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
   (0.0ms) RELEASE SAVEPOINT active_record_1
957
-  (6.2ms) rollback transaction
3353
+  (0.3ms) rollback transaction
958
3354
   (0.0ms) begin transaction
959
3355
   (0.0ms) commit transaction
960
3356
   (0.0ms) begin transaction
961
3357
   (0.0ms) SAVEPOINT active_record_1
962
- SQL (0.4ms) INSERT INTO "books" ("created_at", "id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Mon, 28 Apr 2014 00:17:16 UTC +00:00], ["id", 1], ["name", "The Blonde Dreams from Hell"], ["updated_at", Mon, 28 Apr 2014 00:17:16 UTC +00:00]]
3358
+ SQL (0.2ms) 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", "Death World"], ["updated_at", Sat, 03 May 2014 17:43:26 UTC +00:00]]
963
3359
   (0.0ms) RELEASE SAVEPOINT active_record_1
964
-  (0.3ms) rollback transaction
3360
+  (0.2ms) rollback transaction
965
3361
   (0.0ms) begin transaction
966
3362
   (0.0ms) commit transaction
967
3363
   (0.0ms) begin transaction
968
3364
   (0.0ms) SAVEPOINT active_record_1
969
- SQL (0.3ms) INSERT INTO "books" ("created_at", "id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Mon, 28 Apr 2014 00:17:16 UTC +00:00], ["id", 1], ["name", "The Fly Who Fell to Earth"], ["updated_at", Mon, 28 Apr 2014 00:17:16 UTC +00:00]]
3365
+ SQL (0.2ms) 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
   (0.0ms) RELEASE SAVEPOINT active_record_1
971
-  (0.3ms) rollback transaction
3367
+  (0.2ms) rollback transaction
972
3368
   (0.0ms) begin transaction
973
3369
   (0.0ms) commit transaction
974
3370
   (0.0ms) begin transaction
975
3371
   (0.0ms) SAVEPOINT active_record_1
976
- SQL (0.3ms) INSERT INTO "books" ("created_at", "id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Mon, 28 Apr 2014 00:17:16 UTC +00:00], ["id", 1], ["name", "The Tokyo Beast from Mars"], ["updated_at", Mon, 28 Apr 2014 00:17:16 UTC +00:00]]
3372
+ SQL (0.2ms) 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", "A Fistful of Brain"], ["updated_at", Sat, 03 May 2014 17:43:26 UTC +00:00]]
977
3373
   (0.0ms) RELEASE SAVEPOINT active_record_1
978
3374
   (0.2ms) rollback transaction
979
3375
   (0.0ms) begin transaction
980
3376
   (0.0ms) SAVEPOINT active_record_1
981
- SQL (0.4ms) INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Mon, 28 Apr 2014 00:17:16 UTC +00:00], ["name", "Legend of Brains"], ["updated_at", Mon, 28 Apr 2014 00:17:16 UTC +00:00]]
3377
+ SQL (0.3ms) 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
   (0.0ms) RELEASE SAVEPOINT active_record_1
983
3379
   (0.0ms) SAVEPOINT active_record_1
984
- SQL (0.9ms) INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Mon, 28 Apr 2014 00:17:16 UTC +00:00], ["name", "The Ultra Brain from Mars"], ["updated_at", Mon, 28 Apr 2014 00:17:16 UTC +00:00]]
3380
+ SQL (0.2ms) INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["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
   (0.0ms) RELEASE SAVEPOINT active_record_1
986
3382
   (0.0ms) SAVEPOINT active_record_1
987
- SQL (0.1ms) INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Mon, 28 Apr 2014 00:17:16 UTC +00:00], ["name", "Action Cousins"], ["updated_at", Mon, 28 Apr 2014 00:17:16 UTC +00:00]]
3383
+ SQL (0.1ms) 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
   (0.0ms) RELEASE SAVEPOINT active_record_1
989
3385
   (0.0ms) SAVEPOINT active_record_1
990
- SQL (0.1ms) INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Mon, 28 Apr 2014 00:17:16 UTC +00:00], ["name", "The Green Friday from Across the Ocean"], ["updated_at", Mon, 28 Apr 2014 00:17:16 UTC +00:00]]
3386
+ SQL (0.1ms) INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["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
   (0.0ms) RELEASE SAVEPOINT active_record_1
992
3388
   (0.0ms) SAVEPOINT active_record_1
993
- SQL (0.1ms) INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Mon, 28 Apr 2014 00:17:16 UTC +00:00], ["name", "Demon 2: Electric Boogaloo"], ["updated_at", Mon, 28 Apr 2014 00:17:16 UTC +00:00]]
3389
+ SQL (0.1ms) 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
   (0.0ms) RELEASE SAVEPOINT active_record_1
995
-  (0.0ms) SELECT COUNT(*) FROM "books"
3391
+  (0.1ms) SELECT COUNT(*) FROM "books"
996
3392
  Processing by BooksController#create as HTML
997
3393
  Parameters: {"book"=>{"name"=>"newly-created-book"}}
998
-  (0.0ms) SAVEPOINT active_record_1
999
- SQL (0.2ms) INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Mon, 28 Apr 2014 00:17:16 UTC +00:00], ["name", "newly-created-book"], ["updated_at", Mon, 28 Apr 2014 00:17:16 UTC +00:00]]
3394
+  (0.1ms) SAVEPOINT active_record_1
3395
+ SQL (0.1ms) 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
   (0.0ms) RELEASE SAVEPOINT active_record_1
1001
3397
  Redirected to http://test.host/books
1002
- Completed 302 Found in 2.1ms (ActiveRecord: 0.3ms)
1003
-  (0.0ms) SELECT COUNT(*) FROM "books"
1004
-  (0.4ms) rollback transaction
1005
-  (0.1ms) begin transaction
3398
+ Completed 302 Found in 1.8ms (ActiveRecord: 0.2ms)
3399
+  (0.1ms) SELECT COUNT(*) FROM "books"
3400
+  (0.3ms) rollback transaction
3401
+  (0.0ms) begin transaction
1006
3402
   (0.0ms) SAVEPOINT active_record_1
1007
- SQL (0.3ms) INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Mon, 28 Apr 2014 00:17:16 UTC +00:00], ["name", "Danger Wolf"], ["updated_at", Mon, 28 Apr 2014 00:17:16 UTC +00:00]]
3403
+ SQL (0.2ms) 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
   (0.0ms) RELEASE SAVEPOINT active_record_1
1009
3405
   (0.0ms) SAVEPOINT active_record_1
1010
- SQL (0.3ms) INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Mon, 28 Apr 2014 00:17:16 UTC +00:00], ["name", "The Men from Outer Space"], ["updated_at", Mon, 28 Apr 2014 00:17:16 UTC +00:00]]
3406
+ SQL (0.2ms) INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["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
   (0.0ms) RELEASE SAVEPOINT active_record_1
1012
3408
   (0.0ms) SAVEPOINT active_record_1
1013
- SQL (0.1ms) INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Mon, 28 Apr 2014 00:17:16 UTC +00:00], ["name", "Curse of the Wolf"], ["updated_at", Mon, 28 Apr 2014 00:17:16 UTC +00:00]]
3409
+ SQL (0.1ms) 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
   (0.0ms) RELEASE SAVEPOINT active_record_1
1015
3411
   (0.0ms) SAVEPOINT active_record_1
1016
- SQL (0.1ms) INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Mon, 28 Apr 2014 00:17:16 UTC +00:00], ["name", "The Blue Mutant from Mars"], ["updated_at", Mon, 28 Apr 2014 00:17:16 UTC +00:00]]
3412
+ SQL (0.1ms) INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["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
   (0.0ms) RELEASE SAVEPOINT active_record_1
1018
3414
   (0.0ms) SAVEPOINT active_record_1
1019
- SQL (0.1ms) INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Mon, 28 Apr 2014 00:17:16 UTC +00:00], ["name", "Red Dreams"], ["updated_at", Mon, 28 Apr 2014 00:17:16 UTC +00:00]]
3415
+ SQL (0.1ms) 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
   (0.0ms) RELEASE SAVEPOINT active_record_1
1021
3417
  Processing by BooksController#index as HTML
1022
3418
  Book Load (0.1ms) SELECT "books".* FROM "books"
1023
- Completed 200 OK in 7.1ms (Views: 5.9ms | ActiveRecord: 0.1ms)
1024
-  (0.4ms) rollback transaction
1025
-  (0.0ms) begin transaction
3419
+ Completed 200 OK in 8.4ms (Views: 7.4ms | ActiveRecord: 0.1ms)
3420
+  (0.3ms) rollback transaction
3421
+  (0.1ms) begin transaction
1026
3422
   (0.0ms) SAVEPOINT active_record_1
1027
- SQL (0.3ms) INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Mon, 28 Apr 2014 00:17:16 UTC +00:00], ["name", "Killer Man"], ["updated_at", Mon, 28 Apr 2014 00:17:16 UTC +00:00]]
3423
+ SQL (0.3ms) 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
   (0.0ms) RELEASE SAVEPOINT active_record_1
1029
3425
   (0.0ms) SAVEPOINT active_record_1
1030
- SQL (0.3ms) INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Mon, 28 Apr 2014 00:17:16 UTC +00:00], ["name", "Green Cat"], ["updated_at", Mon, 28 Apr 2014 00:17:16 UTC +00:00]]
3426
+ SQL (0.2ms) INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["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
   (0.0ms) RELEASE SAVEPOINT active_record_1
1032
3428
   (0.0ms) SAVEPOINT active_record_1
1033
- SQL (0.1ms) INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Mon, 28 Apr 2014 00:17:16 UTC +00:00], ["name", "A Fistful of Wizard"], ["updated_at", Mon, 28 Apr 2014 00:17:16 UTC +00:00]]
3429
+ SQL (0.1ms) 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
   (0.0ms) RELEASE SAVEPOINT active_record_1
1035
3431
   (0.0ms) SAVEPOINT active_record_1
1036
- SQL (0.1ms) INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Mon, 28 Apr 2014 00:17:16 UTC +00:00], ["name", "Day of the Tentacle"], ["updated_at", Mon, 28 Apr 2014 00:17:16 UTC +00:00]]
3432
+ SQL (0.1ms) INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["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
   (0.0ms) RELEASE SAVEPOINT active_record_1
1038
3434
   (0.0ms) SAVEPOINT active_record_1
1039
- SQL (0.1ms) INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Mon, 28 Apr 2014 00:17:16 UTC +00:00], ["name", "Dangerous Man"], ["updated_at", Mon, 28 Apr 2014 00:17:16 UTC +00:00]]
3435
+ SQL (0.1ms) 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
   (0.0ms) RELEASE SAVEPOINT active_record_1
1041
3437
  Processing by BooksController#show as HTML
1042
3438
  Parameters: {"id"=>"1"}
1043
- Book Load (0.2ms) SELECT "books".* FROM "books" WHERE "books"."id" = ? LIMIT 1 [["id", "1"]]
1044
- Completed 200 OK in 3.8ms (Views: 1.6ms | ActiveRecord: 0.2ms)
1045
-  (0.4ms) rollback transaction
3439
+ Book Load (0.1ms) 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
+  (0.3ms) rollback transaction
1046
3442
   (0.0ms) begin transaction
1047
3443
   (0.0ms) SAVEPOINT active_record_1
1048
- SQL (0.3ms) INSERT INTO "books" ("created_at", "id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Mon, 28 Apr 2014 00:17:16 UTC +00:00], ["id", 1], ["name", "The Mutant Who Fell to Earth"], ["updated_at", Mon, 28 Apr 2014 00:17:16 UTC +00:00]]
3444
+ SQL (0.3ms) 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
   (0.0ms) RELEASE SAVEPOINT active_record_1
1050
- Started GET "/books/1" for 127.0.0.1 at 2014-04-27 17:17:16 -0700
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
- Book Load (0.1ms) SELECT "books".* FROM "books" WHERE "books"."id" = ? LIMIT 1 [["id", "1"]]
1054
- Completed 200 OK in 1.7ms (Views: 0.9ms | ActiveRecord: 0.1ms)
3449
+ Book Load (0.0ms) 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
   (0.3ms) rollback transaction
1056
3452
   (0.0ms) begin transaction
1057
- Started GET "/books" for 127.0.0.1 at 2014-04-27 17:17:16 -0700
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
  Book Load (0.1ms) SELECT "books".* FROM "books" 
1060
- Completed 200 OK in 1.8ms (Views: 1.0ms | ActiveRecord: 0.1ms)
3456
+ Completed 200 OK in 1.2ms (Views: 0.7ms | ActiveRecord: 0.1ms)
1061
3457
   (0.0ms) rollback transaction
1062
3458
   (0.0ms) begin transaction
1063
-  (0.1ms) SAVEPOINT active_record_1
1064
- SQL (0.4ms) INSERT INTO "books" ("created_at", "id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Mon, 28 Apr 2014 00:17:16 UTC +00:00], ["id", 1], ["name", "Flying Ninja"], ["updated_at", Mon, 28 Apr 2014 00:17:16 UTC +00:00]]
3459
+  (0.0ms) SAVEPOINT active_record_1
3460
+ SQL (0.3ms) 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", "American Gypsy"], ["updated_at", Sat, 03 May 2014 17:43:26 UTC +00:00]]
1065
3461
   (0.0ms) RELEASE SAVEPOINT active_record_1
1066
- Started DELETE "/books/1" for 127.0.0.1 at 2014-04-27 17:17:16 -0700
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
- Book Load (0.1ms) SELECT "books".* FROM "books" WHERE "books"."id" = ? LIMIT 1 [["id", "1"]]
3465
+ Book Load (0.0ms) SELECT "books".* FROM "books" WHERE "books"."id" = ? LIMIT 1 [["id", "1"]]
1070
3466
   (0.0ms) SAVEPOINT active_record_1
1071
3467
  SQL (0.3ms) DELETE FROM "books" WHERE "books"."id" = ? [["id", 1]]
1072
3468
   (0.0ms) RELEASE SAVEPOINT active_record_1
1073
3469
  Redirected to http://www.example.com/books
1074
- Completed 302 Found in 2.4ms (ActiveRecord: 0.5ms)
3470
+ Completed 302 Found in 2.2ms (ActiveRecord: 0.4ms)
1075
3471
   (0.1ms) SELECT COUNT(*) FROM "books" WHERE "books"."id" = 1
1076
3472
   (0.3ms) rollback transaction
1077
3473
   (0.0ms) begin transaction
1078
3474
   (0.1ms) SELECT COUNT(*) FROM "books"
1079
- Started POST "/books" for 127.0.0.1 at 2014-04-27 17:17:16 -0700
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
   (0.0ms) SAVEPOINT active_record_1
1083
- SQL (0.3ms) INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Mon, 28 Apr 2014 00:17:16 UTC +00:00], ["name", "some new book"], ["updated_at", Mon, 28 Apr 2014 00:17:16 UTC +00:00]]
3479
+ SQL (0.2ms) 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
   (0.0ms) RELEASE SAVEPOINT active_record_1
1085
3481
  Redirected to http://www.example.com/books
1086
- Completed 302 Found in 1.8ms (ActiveRecord: 0.4ms)
1087
-  (0.0ms) SELECT COUNT(*) FROM "books"
3482
+ Completed 302 Found in 1.4ms (ActiveRecord: 0.3ms)
3483
+  (0.1ms) SELECT COUNT(*) FROM "books"
1088
3484
   (0.3ms) rollback transaction
1089
3485
   (0.0ms) begin transaction
1090
3486
   (0.0ms) SAVEPOINT active_record_1
1091
- SQL (0.3ms) INSERT INTO "books" ("created_at", "id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Mon, 28 Apr 2014 00:17:16 UTC +00:00], ["id", 1], ["name", "some new book"], ["updated_at", Mon, 28 Apr 2014 00:17:16 UTC +00:00]]
3487
+ SQL (0.2ms) 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
   (0.0ms) RELEASE SAVEPOINT active_record_1
1093
- Started PUT "/books/1" for 127.0.0.1 at 2014-04-27 17:17:16 -0700
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
- Book Load (0.1ms) SELECT "books".* FROM "books" WHERE "books"."id" = ? LIMIT 1 [["id", "1"]]
3492
+ Book Load (0.0ms) SELECT "books".* FROM "books" WHERE "books"."id" = ? LIMIT 1 [["id", "1"]]
1097
3493
   (0.0ms) SAVEPOINT active_record_1
1098
-  (0.3ms) UPDATE "books" SET "name" = 'changed book', "updated_at" = '2014-04-28 00:17:16.923590' WHERE "books"."id" = 1
3494
+  (0.2ms) UPDATE "books" SET "name" = 'changed book', "updated_at" = '2014-05-03 17:43:26.251468' WHERE "books"."id" = 1
1099
3495
   (0.0ms) RELEASE SAVEPOINT active_record_1
1100
3496
  Redirected to http://www.example.com/books/1
1101
- Completed 302 Found in 3.0ms (ActiveRecord: 0.4ms)
3497
+ Completed 302 Found in 2.7ms (ActiveRecord: 0.3ms)
1102
3498
  Book Load (0.0ms) SELECT "books".* FROM "books" WHERE "books"."id" = ? LIMIT 1 [["id", 1]]
1103
3499
   (0.3ms) rollback transaction
1104
3500
   (0.0ms) begin transaction
@@ -1110,11 +3506,11 @@ Completed 302 Found in 3.0ms (ActiveRecord: 0.4ms)
1110
3506
   (0.0ms) begin transaction
1111
3507
   (0.0ms) commit transaction
1112
3508
   (0.0ms) begin transaction
1113
-  (0.1ms) rollback transaction
3509
+  (0.0ms) rollback transaction
1114
3510
   (0.0ms) begin transaction
1115
3511
   (0.0ms) commit transaction
1116
3512
   (0.0ms) begin transaction
1117
-  (0.0ms) rollback transaction
3513
+  (0.1ms) rollback transaction
1118
3514
   (0.0ms) begin transaction
1119
3515
   (0.1ms) commit transaction
1120
3516
   (0.0ms) begin transaction
@@ -1179,73 +3575,73 @@ Completed 302 Found in 3.0ms (ActiveRecord: 0.4ms)
1179
3575
   (0.0ms) begin transaction
1180
3576
   (0.0ms) commit transaction
1181
3577
   (0.0ms) begin transaction
1182
- SQL (2.3ms) INSERT INTO "books" ("created_at", "id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Mon, 28 Apr 2014 00:17:19 UTC +00:00], ["id", 1], ["name", "1160 A.D."], ["updated_at", Mon, 28 Apr 2014 00:17:19 UTC +00:00]]
3578
+ SQL (2.7ms) 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 Diaries Without a Cat"], ["updated_at", Sat, 03 May 2014 17:43:28 UTC +00:00]]
1183
3579
   (0.3ms) rollback transaction
1184
3580
   (0.0ms) begin transaction
1185
3581
   (0.0ms) commit transaction
1186
3582
   (0.0ms) begin transaction
1187
- SQL (0.3ms) INSERT INTO "books" ("created_at", "id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Mon, 28 Apr 2014 00:17:19 UTC +00:00], ["id", 1], ["name", "Blonde Ninjas"], ["updated_at", Mon, 28 Apr 2014 00:17:19 UTC +00:00]]
3583
+ SQL (0.2ms) 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
   (0.3ms) rollback transaction
1189
3585
   (0.0ms) begin transaction
1190
3586
   (0.0ms) commit transaction
1191
3587
   (0.0ms) begin transaction
1192
- SQL (0.3ms) INSERT INTO "books" ("created_at", "id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Mon, 28 Apr 2014 00:17:19 UTC +00:00], ["id", 1], ["name", "Planet of the Ninja"], ["updated_at", Mon, 28 Apr 2014 00:17:19 UTC +00:00]]
1193
-  (0.2ms) rollback transaction
1194
-  (0.0ms) begin transaction
3588
+ SQL (0.2ms) 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 Man from Mars"], ["updated_at", Sat, 03 May 2014 17:43:28 UTC +00:00]]
3589
+  (0.3ms) rollback transaction
3590
+  (0.1ms) begin transaction
1195
3591
   (0.0ms) commit transaction
1196
3592
   (0.0ms) begin transaction
1197
- SQL (0.3ms) INSERT INTO "books" ("created_at", "id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Mon, 28 Apr 2014 00:17:19 UTC +00:00], ["id", 1], ["name", "Ultra Diaries"], ["updated_at", Mon, 28 Apr 2014 00:17:19 UTC +00:00]]
1198
-  (0.2ms) rollback transaction
3593
+ SQL (0.2ms) 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
+  (0.3ms) rollback transaction
1199
3595
   (0.0ms) begin transaction
1200
3596
  --------------------------------
1201
3597
  BooksControllerTest: test_create
1202
3598
  --------------------------------
1203
3599
   (0.1ms) SAVEPOINT active_record_1
1204
- SQL (0.4ms) INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Mon, 28 Apr 2014 00:17:19 UTC +00:00], ["name", "The Friday That Came to Dinner"], ["updated_at", Mon, 28 Apr 2014 00:17:19 UTC +00:00]]
1205
-  (0.1ms) RELEASE SAVEPOINT active_record_1
3600
+ SQL (0.4ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1206
3602
   (0.0ms) SAVEPOINT active_record_1
1207
- SQL (0.8ms) INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Mon, 28 Apr 2014 00:17:19 UTC +00:00], ["name", "The World from Mars"], ["updated_at", Mon, 28 Apr 2014 00:17:19 UTC +00:00]]
3603
+ SQL (0.3ms) INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["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
   (0.0ms) RELEASE SAVEPOINT active_record_1
1209
3605
   (0.0ms) SAVEPOINT active_record_1
1210
- SQL (0.1ms) INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Mon, 28 Apr 2014 00:17:19 UTC +00:00], ["name", "The Nuclear Witch from Mars"], ["updated_at", Mon, 28 Apr 2014 00:17:19 UTC +00:00]]
3606
+ SQL (0.1ms) 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
   (0.0ms) RELEASE SAVEPOINT active_record_1
1212
3608
   (0.0ms) SAVEPOINT active_record_1
1213
- SQL (0.1ms) INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Mon, 28 Apr 2014 00:17:19 UTC +00:00], ["name", "The Brains That Came to Dinner"], ["updated_at", Mon, 28 Apr 2014 00:17:19 UTC +00:00]]
3609
+ SQL (0.1ms) INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["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
   (0.0ms) RELEASE SAVEPOINT active_record_1
1215
3611
   (0.0ms) SAVEPOINT active_record_1
1216
- SQL (0.1ms) INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Mon, 28 Apr 2014 00:17:19 UTC +00:00], ["name", "A Fistful of Pickpocket"], ["updated_at", Mon, 28 Apr 2014 00:17:19 UTC +00:00]]
3612
+ SQL (0.1ms) 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
   (0.0ms) RELEASE SAVEPOINT active_record_1
1218
3614
   (0.1ms) SELECT COUNT(*) FROM "books"
1219
3615
  Processing by BooksController#create as HTML
1220
3616
  Parameters: {"book"=>{"name"=>"newly-created-book"}}
1221
3617
   (0.1ms) SAVEPOINT active_record_1
1222
- SQL (0.2ms) INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Mon, 28 Apr 2014 00:17:19 UTC +00:00], ["name", "newly-created-book"], ["updated_at", Mon, 28 Apr 2014 00:17:19 UTC +00:00]]
3618
+ SQL (0.2ms) 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
   (0.0ms) RELEASE SAVEPOINT active_record_1
1224
3620
  Redirected to http://test.host/books
1225
3621
  Completed 302 Found in 2ms (ActiveRecord: 0.3ms)
1226
3622
   (0.1ms) SELECT COUNT(*) FROM "books"
1227
3623
   (0.4ms) rollback transaction
1228
-  (0.0ms) begin transaction
3624
+  (0.1ms) begin transaction
1229
3625
  -------------------------------
1230
3626
  BooksControllerTest: test_index
1231
3627
  -------------------------------
1232
3628
   (0.0ms) SAVEPOINT active_record_1
1233
- SQL (0.3ms) INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Mon, 28 Apr 2014 00:17:19 UTC +00:00], ["name", "The American Wolves from Across the Ocean"], ["updated_at", Mon, 28 Apr 2014 00:17:19 UTC +00:00]]
3629
+ SQL (0.3ms) 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
   (0.0ms) RELEASE SAVEPOINT active_record_1
1235
3631
   (0.0ms) SAVEPOINT active_record_1
1236
- SQL (0.3ms) INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Mon, 28 Apr 2014 00:17:19 UTC +00:00], ["name", "Rise of the Cousins"], ["updated_at", Mon, 28 Apr 2014 00:17:19 UTC +00:00]]
3632
+ SQL (0.2ms) INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["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
   (0.0ms) RELEASE SAVEPOINT active_record_1
1238
-  (0.0ms) SAVEPOINT active_record_1
1239
- SQL (0.1ms) INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Mon, 28 Apr 2014 00:17:19 UTC +00:00], ["name", "Electric World"], ["updated_at", Mon, 28 Apr 2014 00:17:19 UTC +00:00]]
3634
+  (0.1ms) SAVEPOINT active_record_1
3635
+ SQL (0.1ms) 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
   (0.0ms) RELEASE SAVEPOINT active_record_1
1241
3637
   (0.0ms) SAVEPOINT active_record_1
1242
- SQL (0.1ms) INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Mon, 28 Apr 2014 00:17:19 UTC +00:00], ["name", "Christmas on Olga Ports"], ["updated_at", Mon, 28 Apr 2014 00:17:19 UTC +00:00]]
1243
-  (0.0ms) RELEASE SAVEPOINT active_record_1
3638
+ SQL (0.1ms) INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1244
3640
   (0.0ms) SAVEPOINT active_record_1
1245
- SQL (0.1ms) INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Mon, 28 Apr 2014 00:17:19 UTC +00:00], ["name", "The Green Mutant Who Fell to Earth"], ["updated_at", Mon, 28 Apr 2014 00:17:19 UTC +00:00]]
3641
+ SQL (0.1ms) 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
   (0.0ms) RELEASE SAVEPOINT active_record_1
1247
3643
  Processing by BooksController#index as HTML
1248
- Completed 200 OK in 11ms (Views: 10.4ms | ActiveRecord: 0.0ms)
3644
+ Completed 200 OK in 37ms (Views: 37.2ms | ActiveRecord: 0.0ms)
1249
3645
   (0.1ms) SELECT COUNT(*) FROM "books"
1250
3646
   (0.4ms) rollback transaction
1251
3647
   (0.0ms) 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
   (0.0ms) SAVEPOINT active_record_1
1256
- SQL (0.3ms) INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Mon, 28 Apr 2014 00:17:19 UTC +00:00], ["name", "Green Monster"], ["updated_at", Mon, 28 Apr 2014 00:17:19 UTC +00:00]]
3652
+ SQL (0.3ms) 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
   (0.0ms) RELEASE SAVEPOINT active_record_1
1258
3654
   (0.0ms) SAVEPOINT active_record_1
1259
- SQL (0.3ms) INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Mon, 28 Apr 2014 00:17:19 UTC +00:00], ["name", "The Rain Who Fell to Earth"], ["updated_at", Mon, 28 Apr 2014 00:17:19 UTC +00:00]]
3655
+ SQL (0.2ms) INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["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
   (0.0ms) RELEASE SAVEPOINT active_record_1
1261
3657
   (0.0ms) SAVEPOINT active_record_1
1262
- SQL (0.1ms) INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Mon, 28 Apr 2014 00:17:19 UTC +00:00], ["name", "Blonde Diaries"], ["updated_at", Mon, 28 Apr 2014 00:17:19 UTC +00:00]]
3658
+ SQL (0.1ms) 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
   (0.0ms) RELEASE SAVEPOINT active_record_1
1264
3660
   (0.0ms) SAVEPOINT active_record_1
1265
- SQL (0.1ms) INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Mon, 28 Apr 2014 00:17:19 UTC +00:00], ["name", "Hungry Identity"], ["updated_at", Mon, 28 Apr 2014 00:17:19 UTC +00:00]]
3661
+ SQL (0.1ms) INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["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
   (0.0ms) RELEASE SAVEPOINT active_record_1
1267
3663
   (0.0ms) SAVEPOINT active_record_1
1268
- SQL (0.1ms) INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Mon, 28 Apr 2014 00:17:19 UTC +00:00], ["name", "Journey of the Dreams"], ["updated_at", Mon, 28 Apr 2014 00:17:19 UTC +00:00]]
3664
+ SQL (0.1ms) 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
   (0.0ms) RELEASE SAVEPOINT active_record_1
1270
3666
  Processing by BooksController#show as HTML
1271
3667
  Parameters: {"id"=>"1"}
1272
3668
  Book Load (0.1ms) SELECT "books".* FROM "books" WHERE "books"."id" = ? LIMIT 1 [["id", "1"]]
1273
- Completed 200 OK in 3ms (Views: 1.4ms | ActiveRecord: 0.1ms)
1274
-  (0.5ms) rollback transaction
3669
+ Completed 200 OK in 3ms (Views: 1.7ms | ActiveRecord: 0.1ms)
3670
+  (0.4ms) rollback transaction
1275
3671
   (0.0ms) begin transaction
1276
3672
  -----------------------------------------------------------------------
1277
3673
  FastlyHeadersTest: test_/books/:id_show_page_should_have_fastly_headers
1278
3674
  -----------------------------------------------------------------------
1279
3675
   (0.0ms) SAVEPOINT active_record_1
1280
- SQL (0.3ms) INSERT INTO "books" ("created_at", "id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Mon, 28 Apr 2014 00:17:19 UTC +00:00], ["id", 1], ["name", "Flying Friday"], ["updated_at", Mon, 28 Apr 2014 00:17:19 UTC +00:00]]
3676
+ SQL (0.3ms) 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
   (0.0ms) RELEASE SAVEPOINT active_record_1
1282
- Started GET "/books/1" for 127.0.0.1 at 2014-04-27 17:17:19 -0700
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
  Book Load (0.1ms) SELECT "books".* FROM "books" WHERE "books"."id" = ? LIMIT 1 [["id", "1"]]
1286
- Completed 200 OK in 2ms (Views: 0.8ms | ActiveRecord: 0.1ms)
1287
-  (0.5ms) rollback transaction
3682
+ Completed 200 OK in 2ms (Views: 0.7ms | ActiveRecord: 0.1ms)
3683
+  (0.4ms) rollback transaction
1288
3684
   (0.0ms) 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-04-27 17:17:19 -0700
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.7ms | ActiveRecord: 0.0ms)
1295
-  (0.1ms) rollback transaction
3690
+ Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
3691
+  (0.0ms) rollback transaction
1296
3692
   (0.0ms) begin transaction
1297
3693
  ----------------------------------------------------------------------------------------------
1298
3694
  FastlyHeadersTest: test_DELETE_/books/:id_should_not_have_fastly_headers/_fastly_header_values
1299
3695
  ----------------------------------------------------------------------------------------------
1300
3696
   (0.0ms) SAVEPOINT active_record_1
1301
- SQL (0.3ms) INSERT INTO "books" ("created_at", "id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Mon, 28 Apr 2014 00:17:19 UTC +00:00], ["id", 1], ["name", "When Mattie Met Jacky"], ["updated_at", Mon, 28 Apr 2014 00:17:19 UTC +00:00]]
3697
+ SQL (0.3ms) 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
   (0.0ms) RELEASE SAVEPOINT active_record_1
1303
- Started DELETE "/books/1" for 127.0.0.1 at 2014-04-27 17:17:19 -0700
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
  Book Load (0.0ms) SELECT "books".* FROM "books" WHERE "books"."id" = ? LIMIT 1 [["id", "1"]]
1307
3703
   (0.0ms) SAVEPOINT active_record_1
1308
3704
  SQL (0.3ms) DELETE FROM "books" WHERE "books"."id" = ? [["id", 1]]
1309
-  (0.0ms) RELEASE SAVEPOINT active_record_1
3705
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1310
3706
  Redirected to http://www.example.com/books
1311
- Completed 302 Found in 2ms (ActiveRecord: 0.5ms)
3707
+ Completed 302 Found in 2ms (ActiveRecord: 0.4ms)
1312
3708
   (0.1ms) SELECT COUNT(*) FROM "books" WHERE "books"."id" = 1
1313
-  (0.3ms) rollback transaction
3709
+  (0.4ms) rollback transaction
1314
3710
   (0.0ms) begin transaction
1315
3711
  ----------------------------------------------------------------------------------------
1316
3712
  FastlyHeadersTest: test_POST_/books_should_not_have_fastly_headers/_fastly_header_values
1317
3713
  ----------------------------------------------------------------------------------------
1318
3714
   (0.1ms) SELECT COUNT(*) FROM "books"
1319
- Started POST "/books" for 127.0.0.1 at 2014-04-27 17:17:19 -0700
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
   (0.0ms) SAVEPOINT active_record_1
1323
- SQL (0.3ms) INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Mon, 28 Apr 2014 00:17:19 UTC +00:00], ["name", "some new book"], ["updated_at", Mon, 28 Apr 2014 00:17:19 UTC +00:00]]
3719
+ SQL (0.2ms) INSERT INTO "books" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["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
   (0.0ms) RELEASE SAVEPOINT active_record_1
1325
3721
  Redirected to http://www.example.com/books
1326
- Completed 302 Found in 2ms (ActiveRecord: 0.4ms)
1327
-  (0.1ms) SELECT COUNT(*) FROM "books"
3722
+ Completed 302 Found in 2ms (ActiveRecord: 0.3ms)
3723
+  (0.0ms) SELECT COUNT(*) FROM "books"
1328
3724
   (0.3ms) rollback transaction
1329
-  (0.0ms) begin transaction
3725
+  (0.1ms) begin transaction
1330
3726
  -------------------------------------------------------------------------------------------
1331
3727
  FastlyHeadersTest: test_PUT_/books/:id_should_not_have_fastly_headers/_fastly_header_values
1332
3728
  -------------------------------------------------------------------------------------------
1333
-  (0.1ms) SAVEPOINT active_record_1
1334
- SQL (0.3ms) INSERT INTO "books" ("created_at", "id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Mon, 28 Apr 2014 00:17:19 UTC +00:00], ["id", 1], ["name", "some new book"], ["updated_at", Mon, 28 Apr 2014 00:17:19 UTC +00:00]]
3729
+  (0.0ms) SAVEPOINT active_record_1
3730
+ SQL (0.3ms) 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", "some new book"], ["updated_at", Sat, 03 May 2014 17:43:28 UTC +00:00]]
1335
3731
   (0.0ms) RELEASE SAVEPOINT active_record_1
1336
- Started PUT "/books/1" for 127.0.0.1 at 2014-04-27 17:17:19 -0700
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
- Book Load (0.0ms) SELECT "books".* FROM "books" WHERE "books"."id" = ? LIMIT 1 [["id", "1"]]
3735
+ Book Load (0.1ms) SELECT "books".* FROM "books" WHERE "books"."id" = ? LIMIT 1 [["id", "1"]]
1340
3736
   (0.0ms) SAVEPOINT active_record_1
1341
- SQL (0.4ms) UPDATE "books" SET "name" = ?, "updated_at" = ? WHERE "books"."id" = 1 [["name", "changed book"], ["updated_at", Mon, 28 Apr 2014 00:17:19 UTC +00:00]]
3737
+ SQL (0.3ms) UPDATE "books" SET "name" = ?, "updated_at" = ? WHERE "books"."id" = 1 [["name", "changed book"], ["updated_at", Sat, 03 May 2014 17:43:28 UTC +00:00]]
1342
3738
   (0.0ms) 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
   (0.0ms) begin transaction
1357
3753
   (0.0ms) commit transaction
1358
3754
   (0.0ms) begin transaction
1359
-  (0.1ms) rollback transaction
3755
+  (0.0ms) rollback transaction
1360
3756
   (0.0ms) begin transaction
1361
3757
   (0.0ms) commit transaction
1362
3758
   (0.0ms) begin transaction
1363
3759
   (0.0ms) rollback transaction
1364
-  (0.0ms) begin transaction
3760
+  (0.1ms) begin transaction
1365
3761
   (0.0ms) commit transaction
1366
3762
   (0.0ms) begin transaction
1367
3763
   (0.0ms) rollback transaction
@@ -1385,11 +3781,11 @@ FastlyRails::CacheControlHeadersTest: test_sets_cache_control_headers_on_actionc
1385
3781
   (0.0ms) commit transaction
1386
3782
   (0.0ms) begin transaction
1387
3783
   (0.0ms) rollback transaction
1388
-  (0.0ms) begin transaction
3784
+  (0.1ms) begin transaction
1389
3785
   (0.0ms) commit transaction
1390
3786
   (0.0ms) begin transaction
1391
3787
   (0.0ms) rollback transaction
1392
-  (0.0ms) begin transaction
3788
+  (0.1ms) begin transaction
1393
3789
   (0.0ms) commit transaction
1394
3790
   (0.0ms) begin transaction
1395
3791
   (0.0ms) rollback transaction