exposed 0.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/MIT-LICENSE +20 -0
- data/README.md +138 -0
- data/Rakefile +40 -0
- data/app/controllers/exposed/base.rb +84 -0
- data/config/routes.rb +2 -0
- data/lib/exposed.rb +4 -0
- data/lib/exposed/engine.rb +5 -0
- data/lib/exposed/version.rb +3 -0
- data/lib/tasks/exposed_tasks.rake +4 -0
- data/test/dummy/README.rdoc +261 -0
- data/test/dummy/Rakefile +7 -0
- data/test/dummy/app/assets/javascripts/application.js +15 -0
- data/test/dummy/app/assets/javascripts/posts.js +2 -0
- data/test/dummy/app/assets/stylesheets/application.css +13 -0
- data/test/dummy/app/assets/stylesheets/posts.css +4 -0
- data/test/dummy/app/controllers/application_controller.rb +2 -0
- data/test/dummy/app/controllers/posts_controller.rb +2 -0
- data/test/dummy/app/helpers/application_helper.rb +2 -0
- data/test/dummy/app/helpers/posts_helper.rb +2 -0
- data/test/dummy/app/models/comment.rb +4 -0
- data/test/dummy/app/models/post.rb +4 -0
- data/test/dummy/app/views/layouts/application.html.erb +14 -0
- data/test/dummy/config.ru +4 -0
- data/test/dummy/config/application.rb +59 -0
- data/test/dummy/config/boot.rb +10 -0
- data/test/dummy/config/database.yml +25 -0
- data/test/dummy/config/environment.rb +5 -0
- data/test/dummy/config/environments/development.rb +37 -0
- data/test/dummy/config/environments/production.rb +67 -0
- data/test/dummy/config/environments/test.rb +37 -0
- data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
- data/test/dummy/config/initializers/inflections.rb +15 -0
- data/test/dummy/config/initializers/mime_types.rb +5 -0
- data/test/dummy/config/initializers/secret_token.rb +7 -0
- data/test/dummy/config/initializers/session_store.rb +8 -0
- data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
- data/test/dummy/config/locales/en.yml +5 -0
- data/test/dummy/config/routes.rb +5 -0
- data/test/dummy/db/development.sqlite3 +0 -0
- data/test/dummy/db/migrate/20121013230139_create_posts.rb +10 -0
- data/test/dummy/db/migrate/20121013230216_create_comments.rb +10 -0
- data/test/dummy/db/schema.rb +30 -0
- data/test/dummy/db/test.sqlite3 +0 -0
- data/test/dummy/log/development.log +422 -0
- data/test/dummy/log/test.log +2067 -0
- data/test/dummy/public/404.html +26 -0
- data/test/dummy/public/422.html +26 -0
- data/test/dummy/public/500.html +25 -0
- data/test/dummy/public/favicon.ico +0 -0
- data/test/dummy/script/rails +6 -0
- data/test/dummy/test/fixtures/comments.yml +13 -0
- data/test/dummy/test/fixtures/posts.yml +11 -0
- data/test/dummy/test/functional/posts_controller_test.rb +18 -0
- data/test/dummy/test/unit/comment_test.rb +7 -0
- data/test/dummy/test/unit/helpers/posts_helper_test.rb +4 -0
- data/test/dummy/test/unit/post_test.rb +7 -0
- data/test/dummy/tmp/pids/server.pid +1 -0
- data/test/exposed_test.rb +7 -0
- data/test/integration/delete_test.rb +25 -0
- data/test/integration/get_test.rb +53 -0
- data/test/integration/post_test.rb +25 -0
- data/test/integration/put_test.rb +25 -0
- data/test/test_helper.rb +41 -0
- metadata +186 -0
@@ -0,0 +1,2067 @@
|
|
1
|
+
Connecting to database specified by database.yml
|
2
|
+
[1m[36m (2.6ms)[0m [1mbegin transaction[0m
|
3
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
4
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
5
|
+
Processing by PostsController#index as HTML
|
6
|
+
Completed 500 Internal Server Error in 41ms
|
7
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
8
|
+
Connecting to database specified by database.yml
|
9
|
+
[1m[36m (2.6ms)[0m [1mbegin transaction[0m
|
10
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
11
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
12
|
+
Processing by PostsController#index as HTML
|
13
|
+
Completed 500 Internal Server Error in 44ms
|
14
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
15
|
+
Connecting to database specified by database.yml
|
16
|
+
[1m[36m (29.4ms)[0m [1mbegin transaction[0m
|
17
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
18
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
19
|
+
Processing by PostsController#index as HTML
|
20
|
+
Completed 500 Internal Server Error in 87ms
|
21
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
22
|
+
Connecting to database specified by database.yml
|
23
|
+
[1m[36m (2.3ms)[0m [1mbegin transaction[0m
|
24
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
25
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
26
|
+
Processing by PostsController#index as HTML
|
27
|
+
Completed 500 Internal Server Error in 41ms
|
28
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
29
|
+
Connecting to database specified by database.yml
|
30
|
+
[1m[36m (8.8ms)[0m [1mbegin transaction[0m
|
31
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
32
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
33
|
+
Processing by PostsController#index as HTML
|
34
|
+
Completed 500 Internal Server Error in 65ms
|
35
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
36
|
+
Connecting to database specified by database.yml
|
37
|
+
[1m[36m (1.5ms)[0m [1mbegin transaction[0m
|
38
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
39
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
40
|
+
Processing by PostsController#index as HTML
|
41
|
+
Completed 500 Internal Server Error in 75ms (Views: 0.2ms | ActiveRecord: 0.8ms)
|
42
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
43
|
+
Connecting to database specified by database.yml
|
44
|
+
[1m[36m (1.9ms)[0m [1mbegin transaction[0m
|
45
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
46
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
47
|
+
Processing by PostsController#index as HTML
|
48
|
+
Completed 500 Internal Server Error in 40ms (Views: 0.3ms | ActiveRecord: 1.6ms)
|
49
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
50
|
+
Connecting to database specified by database.yml
|
51
|
+
[1m[36m (1.6ms)[0m [1mbegin transaction[0m
|
52
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
53
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
54
|
+
Processing by PostsController#index as HTML
|
55
|
+
Completed 500 Internal Server Error in 47ms (Views: 0.2ms | ActiveRecord: 1.4ms)
|
56
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
57
|
+
Connecting to database specified by database.yml
|
58
|
+
[1m[36m (2.6ms)[0m [1mbegin transaction[0m
|
59
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
60
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
61
|
+
Processing by PostsController#index as HTML
|
62
|
+
Completed 500 Internal Server Error in 43ms (Views: 0.3ms | ActiveRecord: 2.3ms)
|
63
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
64
|
+
Connecting to database specified by database.yml
|
65
|
+
[1m[36m (2.3ms)[0m [1mbegin transaction[0m
|
66
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
67
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
68
|
+
Processing by PostsController#index as HTML
|
69
|
+
Completed 500 Internal Server Error in 41ms (Views: 0.4ms | ActiveRecord: 1.6ms)
|
70
|
+
[1m[35m (1.4ms)[0m rollback transaction
|
71
|
+
Connecting to database specified by database.yml
|
72
|
+
[1m[36m (1.9ms)[0m [1mbegin transaction[0m
|
73
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
74
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
75
|
+
Processing by PostsController#index as HTML
|
76
|
+
Completed 500 Internal Server Error in 43ms (Views: 0.3ms | ActiveRecord: 1.4ms)
|
77
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
78
|
+
Connecting to database specified by database.yml
|
79
|
+
[1m[36m (2.3ms)[0m [1mbegin transaction[0m
|
80
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
81
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
82
|
+
Processing by PostsController#index as HTML
|
83
|
+
Completed 500 Internal Server Error in 48ms (Views: 0.7ms | ActiveRecord: 1.5ms)
|
84
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
85
|
+
Connecting to database specified by database.yml
|
86
|
+
[1m[36m (2.1ms)[0m [1mbegin transaction[0m
|
87
|
+
[1m[35m (1.0ms)[0m rollback transaction
|
88
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
89
|
+
Processing by PostsController#index as HTML
|
90
|
+
Completed 500 Internal Server Error in 83ms (Views: 0.2ms | ActiveRecord: 1.3ms)
|
91
|
+
[1m[35m (1.2ms)[0m rollback transaction
|
92
|
+
Connecting to database specified by database.yml
|
93
|
+
[1m[36m (2.7ms)[0m [1mbegin transaction[0m
|
94
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
95
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
96
|
+
Processing by PostsController#index as HTML
|
97
|
+
Completed 500 Internal Server Error in 99ms (Views: 0.3ms | ActiveRecord: 5.5ms)
|
98
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
99
|
+
Connecting to database specified by database.yml
|
100
|
+
[1m[36m (1.3ms)[0m [1mbegin transaction[0m
|
101
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
102
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
103
|
+
Processing by PostsController#index as HTML
|
104
|
+
Completed 500 Internal Server Error in 41ms (Views: 0.3ms | ActiveRecord: 1.5ms)
|
105
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
106
|
+
Connecting to database specified by database.yml
|
107
|
+
[1m[36m (2.7ms)[0m [1mbegin transaction[0m
|
108
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
109
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
110
|
+
Processing by PostsController#index as HTML
|
111
|
+
Completed 500 Internal Server Error in 45ms (Views: 0.3ms | ActiveRecord: 2.4ms)
|
112
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
113
|
+
Connecting to database specified by database.yml
|
114
|
+
[1m[36m (2.5ms)[0m [1mbegin transaction[0m
|
115
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
116
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
117
|
+
Processing by PostsController#index as HTML
|
118
|
+
Completed 500 Internal Server Error in 46ms (Views: 0.2ms | ActiveRecord: 0.7ms)
|
119
|
+
Here
|
120
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
121
|
+
Connecting to database specified by database.yml
|
122
|
+
[1m[36m (2.0ms)[0m [1mbegin transaction[0m
|
123
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
124
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
125
|
+
Processing by PostsController#index as HTML
|
126
|
+
Completed 500 Internal Server Error in 41ms (Views: 0.3ms | ActiveRecord: 1.3ms)
|
127
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
128
|
+
Connecting to database specified by database.yml
|
129
|
+
[1m[36m (2.6ms)[0m [1mbegin transaction[0m
|
130
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
131
|
+
[1m[36m (0.4ms)[0m [1mbegin transaction[0m
|
132
|
+
[1m[35mFixture Delete (0.5ms)[0m DELETE FROM "posts"
|
133
|
+
[1m[36mFixture Insert (0.4ms)[0m [1mINSERT INTO "posts" ("title", "content", "created_at", "updated_at", "id") VALUES ('First post', 'Content of the first post', '2012-10-27 06:27:57', '2012-10-27 06:27:57', 655213220)[0m
|
134
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "posts" ("title", "content", "created_at", "updated_at", "id") VALUES ('Second post', 'Content of the second post', '2012-10-27 06:27:57', '2012-10-27 06:27:57', 1040487196)
|
135
|
+
[1m[36mFixture Delete (0.1ms)[0m [1mDELETE FROM "comments"[0m
|
136
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "comments" ("content", "created_at", "updated_at", "id", "post_id") VALUES ('You are right.', '2012-10-27 06:27:57', '2012-10-27 06:27:57', 554292058, 655213220)
|
137
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT INTO "comments" ("content", "created_at", "updated_at", "id", "post_id") VALUES ('You are wrong.', '2012-10-27 06:27:57', '2012-10-27 06:27:57', 939557606, 655213220)[0m
|
138
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "comments" ("content", "created_at", "updated_at", "id", "post_id") VALUES ('You are both right and wrong.', '2012-10-27 06:27:57', '2012-10-27 06:27:57', 252162679, 1040487196)
|
139
|
+
[1m[36m (18.9ms)[0m [1mcommit transaction[0m
|
140
|
+
[1m[35m (0.1ms)[0m begin transaction
|
141
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
142
|
+
[1m[35m (0.1ms)[0m begin transaction
|
143
|
+
Processing by PostsController#index as HTML
|
144
|
+
[1m[36mPost Load (0.2ms)[0m [1mSELECT "posts".* FROM "posts" [0m
|
145
|
+
Completed 200 OK in 8ms (Views: 1.3ms | ActiveRecord: 0.2ms)
|
146
|
+
Helloooo
|
147
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
148
|
+
Connecting to database specified by database.yml
|
149
|
+
[1m[36m (7.5ms)[0m [1mbegin transaction[0m
|
150
|
+
[1m[35mFixture Delete (2.3ms)[0m DELETE FROM "posts"
|
151
|
+
[1m[36mFixture Insert (0.3ms)[0m [1mINSERT INTO "posts" ("title", "content", "created_at", "updated_at", "id") VALUES ('First post', 'Content of the first post', '2013-02-10 12:52:28', '2013-02-10 12:52:28', 655213220)[0m
|
152
|
+
[1m[35mFixture Insert (0.0ms)[0m INSERT INTO "posts" ("title", "content", "created_at", "updated_at", "id") VALUES ('Second post', 'Content of the second post', '2013-02-10 12:52:28', '2013-02-10 12:52:28', 1040487196)
|
153
|
+
[1m[36mFixture Delete (1.3ms)[0m [1mDELETE FROM "comments"[0m
|
154
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "comments" ("content", "created_at", "updated_at", "id", "post_id") VALUES ('You are right.', '2013-02-10 12:52:28', '2013-02-10 12:52:28', 554292058, 655213220)
|
155
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT INTO "comments" ("content", "created_at", "updated_at", "id", "post_id") VALUES ('You are wrong.', '2013-02-10 12:52:28', '2013-02-10 12:52:28', 939557606, 655213220)[0m
|
156
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "comments" ("content", "created_at", "updated_at", "id", "post_id") VALUES ('You are both right and wrong.', '2013-02-10 12:52:28', '2013-02-10 12:52:28', 252162679, 1040487196)
|
157
|
+
[1m[36m (4.2ms)[0m [1mcommit transaction[0m
|
158
|
+
[1m[35m (0.0ms)[0m begin transaction
|
159
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
160
|
+
Connecting to database specified by database.yml
|
161
|
+
[1m[36m (2.5ms)[0m [1mbegin transaction[0m
|
162
|
+
Processing by PostsController#index as HTML
|
163
|
+
[1m[35mPost Load (0.2ms)[0m SELECT "posts".* FROM "posts"
|
164
|
+
Completed 200 OK in 50ms (Views: 2.1ms | ActiveRecord: 2.0ms)
|
165
|
+
Helloooo
|
166
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
167
|
+
Connecting to database specified by database.yml
|
168
|
+
[1m[36m (2.2ms)[0m [1mbegin transaction[0m
|
169
|
+
[1m[35mFixture Delete (0.6ms)[0m DELETE FROM "posts"
|
170
|
+
[1m[36mFixture Insert (0.5ms)[0m [1mINSERT INTO "posts" ("title", "content", "created_at", "updated_at", "id") VALUES ('First post', 'Content of the first post', '2013-02-10 13:05:08', '2013-02-10 13:05:08', 655213220)[0m
|
171
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "posts" ("title", "content", "created_at", "updated_at", "id") VALUES ('Second post', 'Content of the second post', '2013-02-10 13:05:08', '2013-02-10 13:05:08', 1040487196)
|
172
|
+
[1m[36mFixture Delete (0.1ms)[0m [1mDELETE FROM "comments"[0m
|
173
|
+
[1m[35mFixture Insert (0.0ms)[0m INSERT INTO "comments" ("content", "created_at", "updated_at", "id", "post_id") VALUES ('You are right.', '2013-02-10 13:05:08', '2013-02-10 13:05:08', 554292058, 655213220)
|
174
|
+
[1m[36mFixture Insert (0.0ms)[0m [1mINSERT INTO "comments" ("content", "created_at", "updated_at", "id", "post_id") VALUES ('You are wrong.', '2013-02-10 13:05:08', '2013-02-10 13:05:08', 939557606, 655213220)[0m
|
175
|
+
[1m[35mFixture Insert (0.0ms)[0m INSERT INTO "comments" ("content", "created_at", "updated_at", "id", "post_id") VALUES ('You are both right and wrong.', '2013-02-10 13:05:08', '2013-02-10 13:05:08', 252162679, 1040487196)
|
176
|
+
[1m[36m (21.5ms)[0m [1mcommit transaction[0m
|
177
|
+
[1m[35m (0.2ms)[0m begin transaction
|
178
|
+
|
179
|
+
|
180
|
+
Started GET "/posts" for 127.0.0.1 at 2013-02-10 14:05:08 +0100
|
181
|
+
Processing by PostsController#index as HTML
|
182
|
+
[1m[36mPost Load (0.1ms)[0m [1mSELECT "posts".* FROM "posts" [0m
|
183
|
+
Completed 200 OK in 9ms (Views: 1.9ms | ActiveRecord: 0.1ms)
|
184
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
185
|
+
Connecting to database specified by database.yml
|
186
|
+
[1m[36m (3.3ms)[0m [1mbegin transaction[0m
|
187
|
+
[1m[35mFixture Delete (0.5ms)[0m DELETE FROM "posts"
|
188
|
+
[1m[36mFixture Insert (0.5ms)[0m [1mINSERT INTO "posts" ("title", "content", "created_at", "updated_at", "id") VALUES ('First post', 'Content of the first post', '2013-02-10 13:05:20', '2013-02-10 13:05:20', 655213220)[0m
|
189
|
+
[1m[35mFixture Insert (0.0ms)[0m INSERT INTO "posts" ("title", "content", "created_at", "updated_at", "id") VALUES ('Second post', 'Content of the second post', '2013-02-10 13:05:20', '2013-02-10 13:05:20', 1040487196)
|
190
|
+
[1m[36mFixture Delete (0.1ms)[0m [1mDELETE FROM "comments"[0m
|
191
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "comments" ("content", "created_at", "updated_at", "id", "post_id") VALUES ('You are right.', '2013-02-10 13:05:20', '2013-02-10 13:05:20', 554292058, 655213220)
|
192
|
+
[1m[36mFixture Insert (0.0ms)[0m [1mINSERT INTO "comments" ("content", "created_at", "updated_at", "id", "post_id") VALUES ('You are wrong.', '2013-02-10 13:05:20', '2013-02-10 13:05:20', 939557606, 655213220)[0m
|
193
|
+
[1m[35mFixture Insert (0.0ms)[0m INSERT INTO "comments" ("content", "created_at", "updated_at", "id", "post_id") VALUES ('You are both right and wrong.', '2013-02-10 13:05:20', '2013-02-10 13:05:20', 252162679, 1040487196)
|
194
|
+
[1m[36m (4.6ms)[0m [1mcommit transaction[0m
|
195
|
+
[1m[35m (0.0ms)[0m begin transaction
|
196
|
+
|
197
|
+
|
198
|
+
Started GET "/posts" for 127.0.0.1 at 2013-02-10 14:05:20 +0100
|
199
|
+
Processing by PostsController#index as HTML
|
200
|
+
[1m[36mPost Load (0.3ms)[0m [1mSELECT "posts".* FROM "posts" [0m
|
201
|
+
Completed 200 OK in 9ms (Views: 1.5ms | ActiveRecord: 0.3ms)
|
202
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
203
|
+
Connecting to database specified by database.yml
|
204
|
+
[1m[36m (1.8ms)[0m [1mbegin transaction[0m
|
205
|
+
[1m[35mFixture Delete (0.4ms)[0m DELETE FROM "posts"
|
206
|
+
[1m[36mFixture Insert (0.3ms)[0m [1mINSERT INTO "posts" ("title", "content", "created_at", "updated_at", "id") VALUES ('First post', 'Content of the first post', '2013-02-10 13:14:50', '2013-02-10 13:14:50', 655213220)[0m
|
207
|
+
[1m[35mFixture Insert (0.0ms)[0m INSERT INTO "posts" ("title", "content", "created_at", "updated_at", "id") VALUES ('Second post', 'Content of the second post', '2013-02-10 13:14:50', '2013-02-10 13:14:50', 1040487196)
|
208
|
+
[1m[36mFixture Delete (0.1ms)[0m [1mDELETE FROM "comments"[0m
|
209
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "comments" ("content", "created_at", "updated_at", "id", "post_id") VALUES ('You are right.', '2013-02-10 13:14:50', '2013-02-10 13:14:50', 554292058, 655213220)
|
210
|
+
[1m[36mFixture Insert (0.0ms)[0m [1mINSERT INTO "comments" ("content", "created_at", "updated_at", "id", "post_id") VALUES ('You are wrong.', '2013-02-10 13:14:50', '2013-02-10 13:14:50', 939557606, 655213220)[0m
|
211
|
+
[1m[35mFixture Insert (0.0ms)[0m INSERT INTO "comments" ("content", "created_at", "updated_at", "id", "post_id") VALUES ('You are both right and wrong.', '2013-02-10 13:14:50', '2013-02-10 13:14:50', 252162679, 1040487196)
|
212
|
+
[1m[36m (4.2ms)[0m [1mcommit transaction[0m
|
213
|
+
[1m[35m (0.0ms)[0m begin transaction
|
214
|
+
|
215
|
+
|
216
|
+
Started GET "/posts" for 127.0.0.1 at 2013-02-10 14:14:50 +0100
|
217
|
+
Processing by PostsController#index as HTML
|
218
|
+
[1m[36mPost Load (0.3ms)[0m [1mSELECT "posts".* FROM "posts" [0m
|
219
|
+
Completed 200 OK in 14ms (Views: 3.4ms | ActiveRecord: 0.3ms)
|
220
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
221
|
+
Connecting to database specified by database.yml
|
222
|
+
[1m[36m (2.0ms)[0m [1mbegin transaction[0m
|
223
|
+
[1m[35mFixture Delete (0.6ms)[0m DELETE FROM "posts"
|
224
|
+
[1m[36mFixture Insert (0.8ms)[0m [1mINSERT INTO "posts" ("title", "content", "created_at", "updated_at", "id") VALUES ('First post', 'Content of the first post', '2013-02-10 13:25:27', '2013-02-10 13:25:27', 655213220)[0m
|
225
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "posts" ("title", "content", "created_at", "updated_at", "id") VALUES ('Second post', 'Content of the second post', '2013-02-10 13:25:27', '2013-02-10 13:25:27', 1040487196)
|
226
|
+
[1m[36mFixture Delete (0.1ms)[0m [1mDELETE FROM "comments"[0m
|
227
|
+
[1m[35mFixture Insert (0.0ms)[0m INSERT INTO "comments" ("content", "created_at", "updated_at", "id", "post_id") VALUES ('You are right.', '2013-02-10 13:25:27', '2013-02-10 13:25:27', 554292058, 655213220)
|
228
|
+
[1m[36mFixture Insert (0.0ms)[0m [1mINSERT INTO "comments" ("content", "created_at", "updated_at", "id", "post_id") VALUES ('You are wrong.', '2013-02-10 13:25:27', '2013-02-10 13:25:27', 939557606, 655213220)[0m
|
229
|
+
[1m[35mFixture Insert (0.0ms)[0m INSERT INTO "comments" ("content", "created_at", "updated_at", "id", "post_id") VALUES ('You are both right and wrong.', '2013-02-10 13:25:27', '2013-02-10 13:25:27', 252162679, 1040487196)
|
230
|
+
[1m[36m (19.6ms)[0m [1mcommit transaction[0m
|
231
|
+
[1m[35m (0.0ms)[0m begin transaction
|
232
|
+
|
233
|
+
|
234
|
+
Started GET "/posts" for 127.0.0.1 at 2013-02-10 14:25:27 +0100
|
235
|
+
Processing by PostsController#index as HTML
|
236
|
+
[1m[36mPost Load (0.2ms)[0m [1mSELECT "posts".* FROM "posts" [0m
|
237
|
+
Completed 200 OK in 12ms (Views: 3.7ms | ActiveRecord: 0.2ms)
|
238
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
239
|
+
Connecting to database specified by database.yml
|
240
|
+
[1m[36m (2.3ms)[0m [1mbegin transaction[0m
|
241
|
+
[1m[35mFixture Delete (0.5ms)[0m DELETE FROM "posts"
|
242
|
+
[1m[36mFixture Insert (0.2ms)[0m [1mINSERT INTO "posts" ("title", "content", "created_at", "updated_at", "id") VALUES ('First post', 'Content of the first post', '2013-02-10 13:25:48', '2013-02-10 13:25:48', 655213220)[0m
|
243
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "posts" ("title", "content", "created_at", "updated_at", "id") VALUES ('Second post', 'Content of the second post', '2013-02-10 13:25:48', '2013-02-10 13:25:48', 1040487196)
|
244
|
+
[1m[36mFixture Delete (0.1ms)[0m [1mDELETE FROM "comments"[0m
|
245
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "comments" ("content", "created_at", "updated_at", "id", "post_id") VALUES ('You are right.', '2013-02-10 13:25:48', '2013-02-10 13:25:48', 554292058, 655213220)
|
246
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT INTO "comments" ("content", "created_at", "updated_at", "id", "post_id") VALUES ('You are wrong.', '2013-02-10 13:25:48', '2013-02-10 13:25:48', 939557606, 655213220)[0m
|
247
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "comments" ("content", "created_at", "updated_at", "id", "post_id") VALUES ('You are both right and wrong.', '2013-02-10 13:25:48', '2013-02-10 13:25:48', 252162679, 1040487196)
|
248
|
+
[1m[36m (4.5ms)[0m [1mcommit transaction[0m
|
249
|
+
[1m[35m (0.0ms)[0m begin transaction
|
250
|
+
|
251
|
+
|
252
|
+
Started GET "/posts" for 127.0.0.1 at 2013-02-10 14:25:48 +0100
|
253
|
+
Processing by PostsController#index as HTML
|
254
|
+
[1m[36mPost Load (0.7ms)[0m [1mSELECT "posts".* FROM "posts" [0m
|
255
|
+
Completed 200 OK in 9ms (Views: 1.7ms | ActiveRecord: 0.7ms)
|
256
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
257
|
+
Connecting to database specified by database.yml
|
258
|
+
[1m[36m (3.1ms)[0m [1mbegin transaction[0m
|
259
|
+
[1m[35mFixture Delete (0.6ms)[0m DELETE FROM "posts"
|
260
|
+
[1m[36mFixture Insert (0.4ms)[0m [1mINSERT INTO "posts" ("title", "content", "created_at", "updated_at", "id") VALUES ('First post', 'Content of the first post', '2013-02-10 13:26:40', '2013-02-10 13:26:40', 655213220)[0m
|
261
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "posts" ("title", "content", "created_at", "updated_at", "id") VALUES ('Second post', 'Content of the second post', '2013-02-10 13:26:40', '2013-02-10 13:26:40', 1040487196)
|
262
|
+
[1m[36mFixture Delete (0.1ms)[0m [1mDELETE FROM "comments"[0m
|
263
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "comments" ("content", "created_at", "updated_at", "id", "post_id") VALUES ('You are right.', '2013-02-10 13:26:40', '2013-02-10 13:26:40', 554292058, 655213220)
|
264
|
+
[1m[36mFixture Insert (0.0ms)[0m [1mINSERT INTO "comments" ("content", "created_at", "updated_at", "id", "post_id") VALUES ('You are wrong.', '2013-02-10 13:26:40', '2013-02-10 13:26:40', 939557606, 655213220)[0m
|
265
|
+
[1m[35mFixture Insert (0.0ms)[0m INSERT INTO "comments" ("content", "created_at", "updated_at", "id", "post_id") VALUES ('You are both right and wrong.', '2013-02-10 13:26:40', '2013-02-10 13:26:40', 252162679, 1040487196)
|
266
|
+
[1m[36m (11.3ms)[0m [1mcommit transaction[0m
|
267
|
+
[1m[35m (0.0ms)[0m begin transaction
|
268
|
+
|
269
|
+
|
270
|
+
Started GET "/posts" for 127.0.0.1 at 2013-02-10 14:26:40 +0100
|
271
|
+
Processing by PostsController#index as HTML
|
272
|
+
[1m[36mPost Load (0.3ms)[0m [1mSELECT "posts".* FROM "posts" [0m
|
273
|
+
Completed 200 OK in 9ms (Views: 1.5ms | ActiveRecord: 0.3ms)
|
274
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
275
|
+
Connecting to database specified by database.yml
|
276
|
+
[1m[36m (2.8ms)[0m [1mbegin transaction[0m
|
277
|
+
[1m[35mFixture Delete (0.5ms)[0m DELETE FROM "posts"
|
278
|
+
[1m[36mFixture Insert (0.4ms)[0m [1mINSERT INTO "posts" ("title", "content", "created_at", "updated_at", "id") VALUES ('First post', 'Content of the first post', '2013-02-10 13:28:03', '2013-02-10 13:28:03', 655213220)[0m
|
279
|
+
[1m[35mFixture Insert (0.0ms)[0m INSERT INTO "posts" ("title", "content", "created_at", "updated_at", "id") VALUES ('Second post', 'Content of the second post', '2013-02-10 13:28:03', '2013-02-10 13:28:03', 1040487196)
|
280
|
+
[1m[36mFixture Delete (0.1ms)[0m [1mDELETE FROM "comments"[0m
|
281
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "comments" ("content", "created_at", "updated_at", "id", "post_id") VALUES ('You are right.', '2013-02-10 13:28:03', '2013-02-10 13:28:03', 554292058, 655213220)
|
282
|
+
[1m[36mFixture Insert (0.6ms)[0m [1mINSERT INTO "comments" ("content", "created_at", "updated_at", "id", "post_id") VALUES ('You are wrong.', '2013-02-10 13:28:03', '2013-02-10 13:28:03', 939557606, 655213220)[0m
|
283
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "comments" ("content", "created_at", "updated_at", "id", "post_id") VALUES ('You are both right and wrong.', '2013-02-10 13:28:03', '2013-02-10 13:28:03', 252162679, 1040487196)
|
284
|
+
[1m[36m (4.3ms)[0m [1mcommit transaction[0m
|
285
|
+
[1m[35m (0.0ms)[0m begin transaction
|
286
|
+
|
287
|
+
|
288
|
+
Started GET "/posts" for 127.0.0.1 at 2013-02-10 14:28:03 +0100
|
289
|
+
Processing by PostsController#index as HTML
|
290
|
+
[1m[36mPost Load (0.2ms)[0m [1mSELECT "posts".* FROM "posts" [0m
|
291
|
+
Completed 200 OK in 8ms (Views: 1.9ms | ActiveRecord: 0.2ms)
|
292
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
293
|
+
Connecting to database specified by database.yml
|
294
|
+
[1m[36m (1.8ms)[0m [1mbegin transaction[0m
|
295
|
+
[1m[35mFixture Delete (0.3ms)[0m DELETE FROM "posts"
|
296
|
+
[1m[36mFixture Insert (0.4ms)[0m [1mINSERT INTO "posts" ("title", "content", "created_at", "updated_at", "id") VALUES ('First post', 'Content of the first post', '2013-02-10 13:32:50', '2013-02-10 13:32:50', 655213220)[0m
|
297
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "posts" ("title", "content", "created_at", "updated_at", "id") VALUES ('Second post', 'Content of the second post', '2013-02-10 13:32:50', '2013-02-10 13:32:50', 1040487196)
|
298
|
+
[1m[36mFixture Delete (0.4ms)[0m [1mDELETE FROM "comments"[0m
|
299
|
+
[1m[35mFixture Insert (0.0ms)[0m INSERT INTO "comments" ("content", "created_at", "updated_at", "id", "post_id") VALUES ('You are right.', '2013-02-10 13:32:50', '2013-02-10 13:32:50', 554292058, 655213220)
|
300
|
+
[1m[36mFixture Insert (0.0ms)[0m [1mINSERT INTO "comments" ("content", "created_at", "updated_at", "id", "post_id") VALUES ('You are wrong.', '2013-02-10 13:32:50', '2013-02-10 13:32:50', 939557606, 655213220)[0m
|
301
|
+
[1m[35mFixture Insert (0.0ms)[0m INSERT INTO "comments" ("content", "created_at", "updated_at", "id", "post_id") VALUES ('You are both right and wrong.', '2013-02-10 13:32:50', '2013-02-10 13:32:50', 252162679, 1040487196)
|
302
|
+
[1m[36m (4.0ms)[0m [1mcommit transaction[0m
|
303
|
+
[1m[35m (0.0ms)[0m begin transaction
|
304
|
+
|
305
|
+
|
306
|
+
Started GET "/posts" for 127.0.0.1 at 2013-02-10 14:32:50 +0100
|
307
|
+
Processing by PostsController#index as HTML
|
308
|
+
[1m[36mPost Load (0.1ms)[0m [1mSELECT "posts".* FROM "posts" [0m
|
309
|
+
Completed 200 OK in 9ms (Views: 1.1ms | ActiveRecord: 0.1ms)
|
310
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
311
|
+
Connecting to database specified by database.yml
|
312
|
+
[1m[36m (3.0ms)[0m [1mbegin transaction[0m
|
313
|
+
[1m[35mFixture Delete (0.7ms)[0m DELETE FROM "posts"
|
314
|
+
[1m[36mFixture Insert (0.3ms)[0m [1mINSERT INTO "posts" ("title", "content", "created_at", "updated_at", "id") VALUES ('First post', 'Content of the first post', '2013-02-10 13:35:45', '2013-02-10 13:35:45', 655213220)[0m
|
315
|
+
[1m[35mFixture Insert (0.0ms)[0m INSERT INTO "posts" ("title", "content", "created_at", "updated_at", "id") VALUES ('Second post', 'Content of the second post', '2013-02-10 13:35:45', '2013-02-10 13:35:45', 1040487196)
|
316
|
+
[1m[36mFixture Delete (0.1ms)[0m [1mDELETE FROM "comments"[0m
|
317
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "comments" ("content", "created_at", "updated_at", "id", "post_id") VALUES ('You are right.', '2013-02-10 13:35:45', '2013-02-10 13:35:45', 554292058, 655213220)
|
318
|
+
[1m[36mFixture Insert (0.0ms)[0m [1mINSERT INTO "comments" ("content", "created_at", "updated_at", "id", "post_id") VALUES ('You are wrong.', '2013-02-10 13:35:45', '2013-02-10 13:35:45', 939557606, 655213220)[0m
|
319
|
+
[1m[35mFixture Insert (0.0ms)[0m INSERT INTO "comments" ("content", "created_at", "updated_at", "id", "post_id") VALUES ('You are both right and wrong.', '2013-02-10 13:35:45', '2013-02-10 13:35:45', 252162679, 1040487196)
|
320
|
+
[1m[36m (3.8ms)[0m [1mcommit transaction[0m
|
321
|
+
[1m[35m (0.0ms)[0m begin transaction
|
322
|
+
|
323
|
+
|
324
|
+
Started GET "/posts" for 127.0.0.1 at 2013-02-10 14:35:45 +0100
|
325
|
+
Processing by PostsController#index as HTML
|
326
|
+
[1m[36mPost Load (0.2ms)[0m [1mSELECT "posts".* FROM "posts" [0m
|
327
|
+
Completed 200 OK in 8ms (Views: 1.7ms | ActiveRecord: 0.2ms)
|
328
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
329
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
330
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
331
|
+
Connecting to database specified by database.yml
|
332
|
+
[1m[36m (2.7ms)[0m [1mbegin transaction[0m
|
333
|
+
[1m[35mFixture Delete (0.6ms)[0m DELETE FROM "posts"
|
334
|
+
[1m[36mFixture Insert (0.6ms)[0m [1mINSERT INTO "posts" ("title", "content", "created_at", "updated_at", "id") VALUES ('First post', 'Content of the first post', '2013-02-10 13:36:00', '2013-02-10 13:36:00', 655213220)[0m
|
335
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "posts" ("title", "content", "created_at", "updated_at", "id") VALUES ('Second post', 'Content of the second post', '2013-02-10 13:36:00', '2013-02-10 13:36:00', 1040487196)
|
336
|
+
[1m[36mFixture Delete (0.1ms)[0m [1mDELETE FROM "comments"[0m
|
337
|
+
[1m[35mFixture Insert (0.0ms)[0m INSERT INTO "comments" ("content", "created_at", "updated_at", "id", "post_id") VALUES ('You are right.', '2013-02-10 13:36:00', '2013-02-10 13:36:00', 554292058, 655213220)
|
338
|
+
[1m[36mFixture Insert (0.0ms)[0m [1mINSERT INTO "comments" ("content", "created_at", "updated_at", "id", "post_id") VALUES ('You are wrong.', '2013-02-10 13:36:00', '2013-02-10 13:36:00', 939557606, 655213220)[0m
|
339
|
+
[1m[35mFixture Insert (0.0ms)[0m INSERT INTO "comments" ("content", "created_at", "updated_at", "id", "post_id") VALUES ('You are both right and wrong.', '2013-02-10 13:36:00', '2013-02-10 13:36:00', 252162679, 1040487196)
|
340
|
+
[1m[36m (4.6ms)[0m [1mcommit transaction[0m
|
341
|
+
[1m[35m (0.0ms)[0m begin transaction
|
342
|
+
|
343
|
+
|
344
|
+
Started GET "/posts" for 127.0.0.1 at 2013-02-10 14:36:00 +0100
|
345
|
+
Processing by PostsController#index as HTML
|
346
|
+
[1m[36mPost Load (0.2ms)[0m [1mSELECT "posts".* FROM "posts" [0m
|
347
|
+
Completed 200 OK in 8ms (Views: 0.9ms | ActiveRecord: 0.2ms)
|
348
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
349
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
350
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
351
|
+
Connecting to database specified by database.yml
|
352
|
+
[1m[36m (1.9ms)[0m [1mbegin transaction[0m
|
353
|
+
[1m[35mFixture Delete (0.6ms)[0m DELETE FROM "posts"
|
354
|
+
[1m[36mFixture Insert (0.3ms)[0m [1mINSERT INTO "posts" ("title", "content", "created_at", "updated_at", "id") VALUES ('First post', 'Content of the first post', '2013-02-10 13:37:16', '2013-02-10 13:37:16', 655213220)[0m
|
355
|
+
[1m[35mFixture Insert (0.0ms)[0m INSERT INTO "posts" ("title", "content", "created_at", "updated_at", "id") VALUES ('Second post', 'Content of the second post', '2013-02-10 13:37:16', '2013-02-10 13:37:16', 1040487196)
|
356
|
+
[1m[36mFixture Delete (1.0ms)[0m [1mDELETE FROM "comments"[0m
|
357
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "comments" ("content", "created_at", "updated_at", "id", "post_id") VALUES ('You are right.', '2013-02-10 13:37:16', '2013-02-10 13:37:16', 554292058, 655213220)
|
358
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT INTO "comments" ("content", "created_at", "updated_at", "id", "post_id") VALUES ('You are wrong.', '2013-02-10 13:37:16', '2013-02-10 13:37:16', 939557606, 655213220)[0m
|
359
|
+
[1m[35mFixture Insert (0.0ms)[0m INSERT INTO "comments" ("content", "created_at", "updated_at", "id", "post_id") VALUES ('You are both right and wrong.', '2013-02-10 13:37:16', '2013-02-10 13:37:16', 252162679, 1040487196)
|
360
|
+
[1m[36m (18.6ms)[0m [1mcommit transaction[0m
|
361
|
+
[1m[35m (0.1ms)[0m begin transaction
|
362
|
+
|
363
|
+
|
364
|
+
Started GET "/posts" for 127.0.0.1 at 2013-02-10 14:37:16 +0100
|
365
|
+
Processing by PostsController#index as HTML
|
366
|
+
[1m[36mPost Load (0.3ms)[0m [1mSELECT "posts".* FROM "posts" [0m
|
367
|
+
Completed 200 OK in 9ms (Views: 1.0ms | ActiveRecord: 0.3ms)
|
368
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
369
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
370
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
371
|
+
Connecting to database specified by database.yml
|
372
|
+
[1m[36m (4.0ms)[0m [1mbegin transaction[0m
|
373
|
+
[1m[35mFixture Delete (0.4ms)[0m DELETE FROM "posts"
|
374
|
+
[1m[36mFixture Insert (0.3ms)[0m [1mINSERT INTO "posts" ("title", "content", "created_at", "updated_at", "id") VALUES ('First post', 'Content of the first post', '2013-02-10 13:37:34', '2013-02-10 13:37:34', 655213220)[0m
|
375
|
+
[1m[35mFixture Insert (0.0ms)[0m INSERT INTO "posts" ("title", "content", "created_at", "updated_at", "id") VALUES ('Second post', 'Content of the second post', '2013-02-10 13:37:34', '2013-02-10 13:37:34', 1040487196)
|
376
|
+
[1m[36mFixture Delete (0.1ms)[0m [1mDELETE FROM "comments"[0m
|
377
|
+
[1m[35mFixture Insert (0.0ms)[0m INSERT INTO "comments" ("content", "created_at", "updated_at", "id", "post_id") VALUES ('You are right.', '2013-02-10 13:37:34', '2013-02-10 13:37:34', 554292058, 655213220)
|
378
|
+
[1m[36mFixture Insert (0.0ms)[0m [1mINSERT INTO "comments" ("content", "created_at", "updated_at", "id", "post_id") VALUES ('You are wrong.', '2013-02-10 13:37:34', '2013-02-10 13:37:34', 939557606, 655213220)[0m
|
379
|
+
[1m[35mFixture Insert (0.0ms)[0m INSERT INTO "comments" ("content", "created_at", "updated_at", "id", "post_id") VALUES ('You are both right and wrong.', '2013-02-10 13:37:34', '2013-02-10 13:37:34', 252162679, 1040487196)
|
380
|
+
[1m[36m (16.1ms)[0m [1mcommit transaction[0m
|
381
|
+
[1m[35m (0.0ms)[0m begin transaction
|
382
|
+
|
383
|
+
|
384
|
+
Started GET "/posts" for 127.0.0.1 at 2013-02-10 14:37:34 +0100
|
385
|
+
Processing by PostsController#index as HTML
|
386
|
+
[1m[36mPost Load (0.1ms)[0m [1mSELECT "posts".* FROM "posts" [0m
|
387
|
+
Completed 200 OK in 9ms (Views: 1.3ms | ActiveRecord: 0.1ms)
|
388
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
389
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
390
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
391
|
+
Connecting to database specified by database.yml
|
392
|
+
[1m[36m (2.4ms)[0m [1mbegin transaction[0m
|
393
|
+
[1m[35mFixture Delete (0.5ms)[0m DELETE FROM "posts"
|
394
|
+
[1m[36mFixture Insert (0.4ms)[0m [1mINSERT INTO "posts" ("title", "content", "created_at", "updated_at", "id") VALUES ('First post', 'Content of the first post', '2013-02-10 13:38:24', '2013-02-10 13:38:24', 655213220)[0m
|
395
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "posts" ("title", "content", "created_at", "updated_at", "id") VALUES ('Second post', 'Content of the second post', '2013-02-10 13:38:24', '2013-02-10 13:38:24', 1040487196)
|
396
|
+
[1m[36mFixture Delete (0.1ms)[0m [1mDELETE FROM "comments"[0m
|
397
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "comments" ("content", "created_at", "updated_at", "id", "post_id") VALUES ('You are right.', '2013-02-10 13:38:24', '2013-02-10 13:38:24', 554292058, 655213220)
|
398
|
+
[1m[36mFixture Insert (0.0ms)[0m [1mINSERT INTO "comments" ("content", "created_at", "updated_at", "id", "post_id") VALUES ('You are wrong.', '2013-02-10 13:38:24', '2013-02-10 13:38:24', 939557606, 655213220)[0m
|
399
|
+
[1m[35mFixture Insert (0.0ms)[0m INSERT INTO "comments" ("content", "created_at", "updated_at", "id", "post_id") VALUES ('You are both right and wrong.', '2013-02-10 13:38:24', '2013-02-10 13:38:24', 252162679, 1040487196)
|
400
|
+
[1m[36m (15.1ms)[0m [1mcommit transaction[0m
|
401
|
+
[1m[35m (0.1ms)[0m begin transaction
|
402
|
+
|
403
|
+
|
404
|
+
Started GET "/posts" for 127.0.0.1 at 2013-02-10 14:38:24 +0100
|
405
|
+
Processing by PostsController#index as HTML
|
406
|
+
[1m[36mPost Load (0.3ms)[0m [1mSELECT "posts".* FROM "posts" [0m
|
407
|
+
Completed 200 OK in 8ms (Views: 2.4ms | ActiveRecord: 0.3ms)
|
408
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
409
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
410
|
+
[1m[35m (0.3ms)[0m rollback transaction
|
411
|
+
Connecting to database specified by database.yml
|
412
|
+
[1m[36m (2.5ms)[0m [1mbegin transaction[0m
|
413
|
+
[1m[35mFixture Delete (0.5ms)[0m DELETE FROM "posts"
|
414
|
+
[1m[36mFixture Insert (0.4ms)[0m [1mINSERT INTO "posts" ("title", "content", "created_at", "updated_at", "id") VALUES ('First post', 'Content of the first post', '2013-02-10 13:40:50', '2013-02-10 13:40:50', 655213220)[0m
|
415
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "posts" ("title", "content", "created_at", "updated_at", "id") VALUES ('Second post', 'Content of the second post', '2013-02-10 13:40:50', '2013-02-10 13:40:50', 1040487196)
|
416
|
+
[1m[36mFixture Delete (0.1ms)[0m [1mDELETE FROM "comments"[0m
|
417
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "comments" ("content", "created_at", "updated_at", "id", "post_id") VALUES ('You are right.', '2013-02-10 13:40:50', '2013-02-10 13:40:50', 554292058, 655213220)
|
418
|
+
[1m[36mFixture Insert (0.0ms)[0m [1mINSERT INTO "comments" ("content", "created_at", "updated_at", "id", "post_id") VALUES ('You are wrong.', '2013-02-10 13:40:50', '2013-02-10 13:40:50', 939557606, 655213220)[0m
|
419
|
+
[1m[35mFixture Insert (0.0ms)[0m INSERT INTO "comments" ("content", "created_at", "updated_at", "id", "post_id") VALUES ('You are both right and wrong.', '2013-02-10 13:40:50', '2013-02-10 13:40:50', 252162679, 1040487196)
|
420
|
+
[1m[36m (19.6ms)[0m [1mcommit transaction[0m
|
421
|
+
[1m[35m (0.1ms)[0m begin transaction
|
422
|
+
|
423
|
+
|
424
|
+
Started GET "/posts" for 127.0.0.1 at 2013-02-10 14:40:50 +0100
|
425
|
+
Processing by PostsController#index as HTML
|
426
|
+
[1m[36mPost Load (0.3ms)[0m [1mSELECT "posts".* FROM "posts" [0m
|
427
|
+
Completed 200 OK in 9ms (Views: 1.5ms | ActiveRecord: 0.3ms)
|
428
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
429
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
430
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
431
|
+
Connecting to database specified by database.yml
|
432
|
+
[1m[36m (1.6ms)[0m [1mbegin transaction[0m
|
433
|
+
[1m[35mFixture Delete (0.3ms)[0m DELETE FROM "posts"
|
434
|
+
[1m[36mFixture Insert (0.5ms)[0m [1mINSERT INTO "posts" ("title", "content", "created_at", "updated_at", "id") VALUES ('First post', 'Content of the first post', '2013-02-10 13:41:21', '2013-02-10 13:41:21', 655213220)[0m
|
435
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "posts" ("title", "content", "created_at", "updated_at", "id") VALUES ('Second post', 'Content of the second post', '2013-02-10 13:41:21', '2013-02-10 13:41:21', 1040487196)
|
436
|
+
[1m[36mFixture Delete (0.1ms)[0m [1mDELETE FROM "comments"[0m
|
437
|
+
[1m[35mFixture Insert (0.0ms)[0m INSERT INTO "comments" ("content", "created_at", "updated_at", "id", "post_id") VALUES ('You are right.', '2013-02-10 13:41:22', '2013-02-10 13:41:22', 554292058, 655213220)
|
438
|
+
[1m[36mFixture Insert (0.0ms)[0m [1mINSERT INTO "comments" ("content", "created_at", "updated_at", "id", "post_id") VALUES ('You are wrong.', '2013-02-10 13:41:22', '2013-02-10 13:41:22', 939557606, 655213220)[0m
|
439
|
+
[1m[35mFixture Insert (0.0ms)[0m INSERT INTO "comments" ("content", "created_at", "updated_at", "id", "post_id") VALUES ('You are both right and wrong.', '2013-02-10 13:41:22', '2013-02-10 13:41:22', 252162679, 1040487196)
|
440
|
+
[1m[36m (8.9ms)[0m [1mcommit transaction[0m
|
441
|
+
[1m[35m (0.1ms)[0m begin transaction
|
442
|
+
|
443
|
+
|
444
|
+
Started GET "/posts" for 127.0.0.1 at 2013-02-10 14:41:22 +0100
|
445
|
+
Processing by PostsController#index as HTML
|
446
|
+
[1m[36mPost Load (0.2ms)[0m [1mSELECT "posts".* FROM "posts" [0m
|
447
|
+
Completed 200 OK in 7ms (Views: 1.4ms | ActiveRecord: 0.2ms)
|
448
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
449
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
450
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
451
|
+
Connecting to database specified by database.yml
|
452
|
+
[1m[36m (1.8ms)[0m [1mbegin transaction[0m
|
453
|
+
[1m[35mFixture Delete (0.3ms)[0m DELETE FROM "posts"
|
454
|
+
[1m[36mFixture Insert (0.5ms)[0m [1mINSERT INTO "posts" ("title", "content", "created_at", "updated_at", "id") VALUES ('First post', 'Content of the first post', '2013-02-10 13:41:37', '2013-02-10 13:41:37', 655213220)[0m
|
455
|
+
[1m[35mFixture Insert (0.2ms)[0m INSERT INTO "posts" ("title", "content", "created_at", "updated_at", "id") VALUES ('Second post', 'Content of the second post', '2013-02-10 13:41:37', '2013-02-10 13:41:37', 1040487196)
|
456
|
+
[1m[36mFixture Delete (0.1ms)[0m [1mDELETE FROM "comments"[0m
|
457
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "comments" ("content", "created_at", "updated_at", "id", "post_id") VALUES ('You are right.', '2013-02-10 13:41:37', '2013-02-10 13:41:37', 554292058, 655213220)
|
458
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT INTO "comments" ("content", "created_at", "updated_at", "id", "post_id") VALUES ('You are wrong.', '2013-02-10 13:41:37', '2013-02-10 13:41:37', 939557606, 655213220)[0m
|
459
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "comments" ("content", "created_at", "updated_at", "id", "post_id") VALUES ('You are both right and wrong.', '2013-02-10 13:41:37', '2013-02-10 13:41:37', 252162679, 1040487196)
|
460
|
+
[1m[36m (4.6ms)[0m [1mcommit transaction[0m
|
461
|
+
[1m[35m (0.1ms)[0m begin transaction
|
462
|
+
|
463
|
+
|
464
|
+
Started GET "/posts" for 127.0.0.1 at 2013-02-10 14:41:37 +0100
|
465
|
+
Processing by PostsController#index as HTML
|
466
|
+
[1m[36mPost Load (0.3ms)[0m [1mSELECT "posts".* FROM "posts" [0m
|
467
|
+
Completed 200 OK in 9ms (Views: 1.5ms | ActiveRecord: 0.3ms)
|
468
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
469
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
470
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
471
|
+
Connecting to database specified by database.yml
|
472
|
+
[1m[36m (2.6ms)[0m [1mbegin transaction[0m
|
473
|
+
[1m[35mFixture Delete (0.3ms)[0m DELETE FROM "posts"
|
474
|
+
[1m[36mFixture Insert (0.4ms)[0m [1mINSERT INTO "posts" ("title", "content", "created_at", "updated_at", "id") VALUES ('First post', 'Content of the first post', '2013-02-10 13:41:51', '2013-02-10 13:41:51', 655213220)[0m
|
475
|
+
[1m[35mFixture Insert (0.0ms)[0m INSERT INTO "posts" ("title", "content", "created_at", "updated_at", "id") VALUES ('Second post', 'Content of the second post', '2013-02-10 13:41:51', '2013-02-10 13:41:51', 1040487196)
|
476
|
+
[1m[36mFixture Delete (0.1ms)[0m [1mDELETE FROM "comments"[0m
|
477
|
+
[1m[35mFixture Insert (0.0ms)[0m INSERT INTO "comments" ("content", "created_at", "updated_at", "id", "post_id") VALUES ('You are right.', '2013-02-10 13:41:51', '2013-02-10 13:41:51', 554292058, 655213220)
|
478
|
+
[1m[36mFixture Insert (0.6ms)[0m [1mINSERT INTO "comments" ("content", "created_at", "updated_at", "id", "post_id") VALUES ('You are wrong.', '2013-02-10 13:41:51', '2013-02-10 13:41:51', 939557606, 655213220)[0m
|
479
|
+
[1m[35mFixture Insert (0.0ms)[0m INSERT INTO "comments" ("content", "created_at", "updated_at", "id", "post_id") VALUES ('You are both right and wrong.', '2013-02-10 13:41:51', '2013-02-10 13:41:51', 252162679, 1040487196)
|
480
|
+
[1m[36m (4.6ms)[0m [1mcommit transaction[0m
|
481
|
+
[1m[35m (0.0ms)[0m begin transaction
|
482
|
+
|
483
|
+
|
484
|
+
Started GET "/posts" for 127.0.0.1 at 2013-02-10 14:41:51 +0100
|
485
|
+
Processing by PostsController#index as HTML
|
486
|
+
[1m[36mPost Load (0.3ms)[0m [1mSELECT "posts".* FROM "posts" [0m
|
487
|
+
Completed 200 OK in 9ms (Views: 1.5ms | ActiveRecord: 0.3ms)
|
488
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
489
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
490
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
491
|
+
Connecting to database specified by database.yml
|
492
|
+
[1m[36m (2.2ms)[0m [1mbegin transaction[0m
|
493
|
+
[1m[35mFixture Delete (0.5ms)[0m DELETE FROM "posts"
|
494
|
+
[1m[36mFixture Insert (0.3ms)[0m [1mINSERT INTO "posts" ("title", "content", "created_at", "updated_at", "id") VALUES ('First post', 'Content of the first post', '2013-02-10 13:46:49', '2013-02-10 13:46:49', 655213220)[0m
|
495
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "posts" ("title", "content", "created_at", "updated_at", "id") VALUES ('Second post', 'Content of the second post', '2013-02-10 13:46:49', '2013-02-10 13:46:49', 1040487196)
|
496
|
+
[1m[36mFixture Delete (0.1ms)[0m [1mDELETE FROM "comments"[0m
|
497
|
+
[1m[35mFixture Insert (0.0ms)[0m INSERT INTO "comments" ("content", "created_at", "updated_at", "id", "post_id") VALUES ('You are right.', '2013-02-10 13:46:49', '2013-02-10 13:46:49', 554292058, 655213220)
|
498
|
+
[1m[36mFixture Insert (0.0ms)[0m [1mINSERT INTO "comments" ("content", "created_at", "updated_at", "id", "post_id") VALUES ('You are wrong.', '2013-02-10 13:46:49', '2013-02-10 13:46:49', 939557606, 655213220)[0m
|
499
|
+
[1m[35mFixture Insert (0.0ms)[0m INSERT INTO "comments" ("content", "created_at", "updated_at", "id", "post_id") VALUES ('You are both right and wrong.', '2013-02-10 13:46:49', '2013-02-10 13:46:49', 252162679, 1040487196)
|
500
|
+
[1m[36m (6.8ms)[0m [1mcommit transaction[0m
|
501
|
+
[1m[35m (0.1ms)[0m begin transaction
|
502
|
+
|
503
|
+
|
504
|
+
Started GET "/posts" for 127.0.0.1 at 2013-02-10 14:46:49 +0100
|
505
|
+
Processing by PostsController#index as HTML
|
506
|
+
[1m[36mPost Load (0.3ms)[0m [1mSELECT "posts".* FROM "posts" [0m
|
507
|
+
Completed 200 OK in 9ms (Views: 1.7ms | ActiveRecord: 0.3ms)
|
508
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
509
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
510
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
511
|
+
Connecting to database specified by database.yml
|
512
|
+
[1m[36m (1.6ms)[0m [1mbegin transaction[0m
|
513
|
+
[1m[35mFixture Delete (0.3ms)[0m DELETE FROM "posts"
|
514
|
+
[1m[36mFixture Insert (0.2ms)[0m [1mINSERT INTO "posts" ("title", "content", "created_at", "updated_at", "id") VALUES ('First post', 'Content of the first post', '2013-02-10 13:47:03', '2013-02-10 13:47:03', 655213220)[0m
|
515
|
+
[1m[35mFixture Insert (0.0ms)[0m INSERT INTO "posts" ("title", "content", "created_at", "updated_at", "id") VALUES ('Second post', 'Content of the second post', '2013-02-10 13:47:03', '2013-02-10 13:47:03', 1040487196)
|
516
|
+
[1m[36mFixture Delete (0.1ms)[0m [1mDELETE FROM "comments"[0m
|
517
|
+
[1m[35mFixture Insert (1.3ms)[0m INSERT INTO "comments" ("content", "created_at", "updated_at", "id", "post_id") VALUES ('You are right.', '2013-02-10 13:47:03', '2013-02-10 13:47:03', 554292058, 655213220)
|
518
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT INTO "comments" ("content", "created_at", "updated_at", "id", "post_id") VALUES ('You are wrong.', '2013-02-10 13:47:03', '2013-02-10 13:47:03', 939557606, 655213220)[0m
|
519
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "comments" ("content", "created_at", "updated_at", "id", "post_id") VALUES ('You are both right and wrong.', '2013-02-10 13:47:03', '2013-02-10 13:47:03', 252162679, 1040487196)
|
520
|
+
[1m[36m (19.5ms)[0m [1mcommit transaction[0m
|
521
|
+
[1m[35m (0.0ms)[0m begin transaction
|
522
|
+
|
523
|
+
|
524
|
+
Started GET "/posts" for 127.0.0.1 at 2013-02-10 14:47:04 +0100
|
525
|
+
Processing by PostsController#index as HTML
|
526
|
+
[1m[36mPost Load (0.2ms)[0m [1mSELECT "posts".* FROM "posts" [0m
|
527
|
+
Completed 200 OK in 8ms (Views: 1.4ms | ActiveRecord: 0.2ms)
|
528
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
529
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
530
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
531
|
+
Connecting to database specified by database.yml
|
532
|
+
[1m[36m (3.1ms)[0m [1mbegin transaction[0m
|
533
|
+
[1m[35mFixture Delete (0.5ms)[0m DELETE FROM "posts"
|
534
|
+
[1m[36mFixture Insert (0.2ms)[0m [1mINSERT INTO "posts" ("title", "content", "created_at", "updated_at", "id") VALUES ('First post', 'Content of the first post', '2013-02-10 13:47:21', '2013-02-10 13:47:21', 655213220)[0m
|
535
|
+
[1m[35mFixture Insert (0.0ms)[0m INSERT INTO "posts" ("title", "content", "created_at", "updated_at", "id") VALUES ('Second post', 'Content of the second post', '2013-02-10 13:47:21', '2013-02-10 13:47:21', 1040487196)
|
536
|
+
[1m[36mFixture Delete (0.1ms)[0m [1mDELETE FROM "comments"[0m
|
537
|
+
[1m[35mFixture Insert (0.9ms)[0m INSERT INTO "comments" ("content", "created_at", "updated_at", "id", "post_id") VALUES ('You are right.', '2013-02-10 13:47:21', '2013-02-10 13:47:21', 554292058, 655213220)
|
538
|
+
[1m[36mFixture Insert (0.0ms)[0m [1mINSERT INTO "comments" ("content", "created_at", "updated_at", "id", "post_id") VALUES ('You are wrong.', '2013-02-10 13:47:21', '2013-02-10 13:47:21', 939557606, 655213220)[0m
|
539
|
+
[1m[35mFixture Insert (0.0ms)[0m INSERT INTO "comments" ("content", "created_at", "updated_at", "id", "post_id") VALUES ('You are both right and wrong.', '2013-02-10 13:47:21', '2013-02-10 13:47:21', 252162679, 1040487196)
|
540
|
+
[1m[36m (15.2ms)[0m [1mcommit transaction[0m
|
541
|
+
[1m[35m (0.1ms)[0m begin transaction
|
542
|
+
|
543
|
+
|
544
|
+
Started GET "/posts" for 127.0.0.1 at 2013-02-10 14:47:21 +0100
|
545
|
+
Processing by PostsController#index as HTML
|
546
|
+
[1m[36mPost Load (0.3ms)[0m [1mSELECT "posts".* FROM "posts" [0m
|
547
|
+
Completed 200 OK in 9ms (Views: 2.2ms | ActiveRecord: 0.3ms)
|
548
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
549
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
550
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
551
|
+
Connecting to database specified by database.yml
|
552
|
+
[1m[36m (3.0ms)[0m [1mbegin transaction[0m
|
553
|
+
[1m[35mFixture Delete (0.4ms)[0m DELETE FROM "posts"
|
554
|
+
[1m[36mFixture Insert (0.3ms)[0m [1mINSERT INTO "posts" ("title", "content", "created_at", "updated_at", "id") VALUES ('First post', 'Content of the first post', '2013-02-10 13:47:35', '2013-02-10 13:47:35', 655213220)[0m
|
555
|
+
[1m[35mFixture Insert (0.0ms)[0m INSERT INTO "posts" ("title", "content", "created_at", "updated_at", "id") VALUES ('Second post', 'Content of the second post', '2013-02-10 13:47:35', '2013-02-10 13:47:35', 1040487196)
|
556
|
+
[1m[36mFixture Delete (0.2ms)[0m [1mDELETE FROM "comments"[0m
|
557
|
+
[1m[35mFixture Insert (0.0ms)[0m INSERT INTO "comments" ("content", "created_at", "updated_at", "id", "post_id") VALUES ('You are right.', '2013-02-10 13:47:35', '2013-02-10 13:47:35', 554292058, 655213220)
|
558
|
+
[1m[36mFixture Insert (0.0ms)[0m [1mINSERT INTO "comments" ("content", "created_at", "updated_at", "id", "post_id") VALUES ('You are wrong.', '2013-02-10 13:47:35', '2013-02-10 13:47:35', 939557606, 655213220)[0m
|
559
|
+
[1m[35mFixture Insert (0.0ms)[0m INSERT INTO "comments" ("content", "created_at", "updated_at", "id", "post_id") VALUES ('You are both right and wrong.', '2013-02-10 13:47:35', '2013-02-10 13:47:35', 252162679, 1040487196)
|
560
|
+
[1m[36m (4.7ms)[0m [1mcommit transaction[0m
|
561
|
+
[1m[35m (0.0ms)[0m begin transaction
|
562
|
+
|
563
|
+
|
564
|
+
Started GET "/posts" for 127.0.0.1 at 2013-02-10 14:47:35 +0100
|
565
|
+
Processing by PostsController#index as HTML
|
566
|
+
[1m[36mPost Load (0.3ms)[0m [1mSELECT "posts".* FROM "posts" [0m
|
567
|
+
Completed 200 OK in 9ms (Views: 1.7ms | ActiveRecord: 0.3ms)
|
568
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
569
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
570
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
571
|
+
Connecting to database specified by database.yml
|
572
|
+
[1m[36m (2.4ms)[0m [1mbegin transaction[0m
|
573
|
+
[1m[35mFixture Delete (1.5ms)[0m DELETE FROM "posts"
|
574
|
+
[1m[36mFixture Insert (0.5ms)[0m [1mINSERT INTO "posts" ("title", "content", "created_at", "updated_at", "id") VALUES ('First post', 'Content of the first post', '2013-02-10 13:48:03', '2013-02-10 13:48:03', 655213220)[0m
|
575
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "posts" ("title", "content", "created_at", "updated_at", "id") VALUES ('Second post', 'Content of the second post', '2013-02-10 13:48:03', '2013-02-10 13:48:03', 1040487196)
|
576
|
+
[1m[36mFixture Delete (0.1ms)[0m [1mDELETE FROM "comments"[0m
|
577
|
+
[1m[35mFixture Insert (0.0ms)[0m INSERT INTO "comments" ("content", "created_at", "updated_at", "id", "post_id") VALUES ('You are right.', '2013-02-10 13:48:03', '2013-02-10 13:48:03', 554292058, 655213220)
|
578
|
+
[1m[36mFixture Insert (0.0ms)[0m [1mINSERT INTO "comments" ("content", "created_at", "updated_at", "id", "post_id") VALUES ('You are wrong.', '2013-02-10 13:48:03', '2013-02-10 13:48:03', 939557606, 655213220)[0m
|
579
|
+
[1m[35mFixture Insert (0.0ms)[0m INSERT INTO "comments" ("content", "created_at", "updated_at", "id", "post_id") VALUES ('You are both right and wrong.', '2013-02-10 13:48:03', '2013-02-10 13:48:03', 252162679, 1040487196)
|
580
|
+
[1m[36m (5.0ms)[0m [1mcommit transaction[0m
|
581
|
+
[1m[35m (0.0ms)[0m begin transaction
|
582
|
+
|
583
|
+
|
584
|
+
Started GET "/posts" for 127.0.0.1 at 2013-02-10 14:48:03 +0100
|
585
|
+
Processing by PostsController#index as HTML
|
586
|
+
[1m[36mPost Load (0.2ms)[0m [1mSELECT "posts".* FROM "posts" [0m
|
587
|
+
Completed 200 OK in 8ms (Views: 1.4ms | ActiveRecord: 0.2ms)
|
588
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
589
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
590
|
+
[1m[35m (0.3ms)[0m rollback transaction
|
591
|
+
Connecting to database specified by database.yml
|
592
|
+
[1m[36m (2.1ms)[0m [1mbegin transaction[0m
|
593
|
+
[1m[35mFixture Delete (0.4ms)[0m DELETE FROM "posts"
|
594
|
+
[1m[36mFixture Insert (0.2ms)[0m [1mINSERT INTO "posts" ("title", "content", "created_at", "updated_at", "id") VALUES ('First post', 'Content of the first post', '2013-02-10 13:48:29', '2013-02-10 13:48:29', 655213220)[0m
|
595
|
+
[1m[35mFixture Insert (0.0ms)[0m INSERT INTO "posts" ("title", "content", "created_at", "updated_at", "id") VALUES ('Second post', 'Content of the second post', '2013-02-10 13:48:29', '2013-02-10 13:48:29', 1040487196)
|
596
|
+
[1m[36mFixture Delete (0.1ms)[0m [1mDELETE FROM "comments"[0m
|
597
|
+
[1m[35mFixture Insert (0.0ms)[0m INSERT INTO "comments" ("content", "created_at", "updated_at", "id", "post_id") VALUES ('You are right.', '2013-02-10 13:48:29', '2013-02-10 13:48:29', 554292058, 655213220)
|
598
|
+
[1m[36mFixture Insert (0.0ms)[0m [1mINSERT INTO "comments" ("content", "created_at", "updated_at", "id", "post_id") VALUES ('You are wrong.', '2013-02-10 13:48:29', '2013-02-10 13:48:29', 939557606, 655213220)[0m
|
599
|
+
[1m[35mFixture Insert (0.0ms)[0m INSERT INTO "comments" ("content", "created_at", "updated_at", "id", "post_id") VALUES ('You are both right and wrong.', '2013-02-10 13:48:29', '2013-02-10 13:48:29', 252162679, 1040487196)
|
600
|
+
[1m[36m (5.5ms)[0m [1mcommit transaction[0m
|
601
|
+
[1m[35m (0.1ms)[0m begin transaction
|
602
|
+
|
603
|
+
|
604
|
+
Started GET "/posts" for 127.0.0.1 at 2013-02-10 14:48:29 +0100
|
605
|
+
Processing by PostsController#index as HTML
|
606
|
+
[1m[36mPost Load (0.3ms)[0m [1mSELECT "posts".* FROM "posts" [0m
|
607
|
+
Completed 200 OK in 8ms (Views: 1.5ms | ActiveRecord: 0.3ms)
|
608
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
609
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
610
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
611
|
+
Connecting to database specified by database.yml
|
612
|
+
[1m[36m (1.7ms)[0m [1mbegin transaction[0m
|
613
|
+
[1m[35mFixture Delete (0.3ms)[0m DELETE FROM "posts"
|
614
|
+
[1m[36mFixture Insert (0.5ms)[0m [1mINSERT INTO "posts" ("title", "content", "created_at", "updated_at", "id") VALUES ('First post', 'Content of the first post', '2013-02-10 13:48:46', '2013-02-10 13:48:46', 655213220)[0m
|
615
|
+
[1m[35mFixture Insert (0.0ms)[0m INSERT INTO "posts" ("title", "content", "created_at", "updated_at", "id") VALUES ('Second post', 'Content of the second post', '2013-02-10 13:48:46', '2013-02-10 13:48:46', 1040487196)
|
616
|
+
[1m[36mFixture Delete (0.1ms)[0m [1mDELETE FROM "comments"[0m
|
617
|
+
[1m[35mFixture Insert (0.4ms)[0m INSERT INTO "comments" ("content", "created_at", "updated_at", "id", "post_id") VALUES ('You are right.', '2013-02-10 13:48:46', '2013-02-10 13:48:46', 554292058, 655213220)
|
618
|
+
[1m[36mFixture Insert (0.0ms)[0m [1mINSERT INTO "comments" ("content", "created_at", "updated_at", "id", "post_id") VALUES ('You are wrong.', '2013-02-10 13:48:46', '2013-02-10 13:48:46', 939557606, 655213220)[0m
|
619
|
+
[1m[35mFixture Insert (0.0ms)[0m INSERT INTO "comments" ("content", "created_at", "updated_at", "id", "post_id") VALUES ('You are both right and wrong.', '2013-02-10 13:48:46', '2013-02-10 13:48:46', 252162679, 1040487196)
|
620
|
+
[1m[36m (6.1ms)[0m [1mcommit transaction[0m
|
621
|
+
[1m[35m (0.1ms)[0m begin transaction
|
622
|
+
|
623
|
+
|
624
|
+
Started GET "/posts" for 127.0.0.1 at 2013-02-10 14:48:46 +0100
|
625
|
+
Processing by PostsController#index as HTML
|
626
|
+
[1m[36mPost Load (0.3ms)[0m [1mSELECT "posts".* FROM "posts" [0m
|
627
|
+
Completed 200 OK in 8ms (Views: 0.9ms | ActiveRecord: 0.3ms)
|
628
|
+
[1m[35m (0.3ms)[0m rollback transaction
|
629
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
630
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
631
|
+
Connecting to database specified by database.yml
|
632
|
+
[1m[36m (2.3ms)[0m [1mbegin transaction[0m
|
633
|
+
[1m[35mFixture Delete (0.7ms)[0m DELETE FROM "posts"
|
634
|
+
[1m[36mFixture Insert (0.6ms)[0m [1mINSERT INTO "posts" ("title", "content", "created_at", "updated_at", "id") VALUES ('First post', 'Content of the first post', '2013-02-10 13:48:55', '2013-02-10 13:48:55', 655213220)[0m
|
635
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "posts" ("title", "content", "created_at", "updated_at", "id") VALUES ('Second post', 'Content of the second post', '2013-02-10 13:48:55', '2013-02-10 13:48:55', 1040487196)
|
636
|
+
[1m[36mFixture Delete (0.1ms)[0m [1mDELETE FROM "comments"[0m
|
637
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "comments" ("content", "created_at", "updated_at", "id", "post_id") VALUES ('You are right.', '2013-02-10 13:48:55', '2013-02-10 13:48:55', 554292058, 655213220)
|
638
|
+
[1m[36mFixture Insert (0.0ms)[0m [1mINSERT INTO "comments" ("content", "created_at", "updated_at", "id", "post_id") VALUES ('You are wrong.', '2013-02-10 13:48:55', '2013-02-10 13:48:55', 939557606, 655213220)[0m
|
639
|
+
[1m[35mFixture Insert (0.0ms)[0m INSERT INTO "comments" ("content", "created_at", "updated_at", "id", "post_id") VALUES ('You are both right and wrong.', '2013-02-10 13:48:55', '2013-02-10 13:48:55', 252162679, 1040487196)
|
640
|
+
[1m[36m (6.4ms)[0m [1mcommit transaction[0m
|
641
|
+
[1m[35m (0.5ms)[0m begin transaction
|
642
|
+
|
643
|
+
|
644
|
+
Started GET "/posts" for 127.0.0.1 at 2013-02-10 14:48:55 +0100
|
645
|
+
Processing by PostsController#index as HTML
|
646
|
+
[1m[36mPost Load (0.3ms)[0m [1mSELECT "posts".* FROM "posts" [0m
|
647
|
+
Completed 200 OK in 8ms (Views: 1.5ms | ActiveRecord: 0.3ms)
|
648
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
649
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
650
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
651
|
+
Connecting to database specified by database.yml
|
652
|
+
[1m[36m (2.6ms)[0m [1mbegin transaction[0m
|
653
|
+
[1m[35mFixture Delete (0.5ms)[0m DELETE FROM "posts"
|
654
|
+
[1m[36mFixture Insert (0.3ms)[0m [1mINSERT INTO "posts" ("title", "content", "created_at", "updated_at", "id") VALUES ('First post', 'Content of the first post', '2013-02-10 13:49:21', '2013-02-10 13:49:21', 655213220)[0m
|
655
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "posts" ("title", "content", "created_at", "updated_at", "id") VALUES ('Second post', 'Content of the second post', '2013-02-10 13:49:21', '2013-02-10 13:49:21', 1040487196)
|
656
|
+
[1m[36mFixture Delete (0.1ms)[0m [1mDELETE FROM "comments"[0m
|
657
|
+
[1m[35mFixture Insert (0.0ms)[0m INSERT INTO "comments" ("content", "created_at", "updated_at", "id", "post_id") VALUES ('You are right.', '2013-02-10 13:49:21', '2013-02-10 13:49:21', 554292058, 655213220)
|
658
|
+
[1m[36mFixture Insert (0.0ms)[0m [1mINSERT INTO "comments" ("content", "created_at", "updated_at", "id", "post_id") VALUES ('You are wrong.', '2013-02-10 13:49:21', '2013-02-10 13:49:21', 939557606, 655213220)[0m
|
659
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "comments" ("content", "created_at", "updated_at", "id", "post_id") VALUES ('You are both right and wrong.', '2013-02-10 13:49:21', '2013-02-10 13:49:21', 252162679, 1040487196)
|
660
|
+
[1m[36m (6.9ms)[0m [1mcommit transaction[0m
|
661
|
+
[1m[35m (0.1ms)[0m begin transaction
|
662
|
+
|
663
|
+
|
664
|
+
Started GET "/posts" for 127.0.0.1 at 2013-02-10 14:49:21 +0100
|
665
|
+
Processing by PostsController#index as HTML
|
666
|
+
[1m[36mPost Load (0.1ms)[0m [1mSELECT "posts".* FROM "posts" [0m
|
667
|
+
Completed 200 OK in 6ms (Views: 0.9ms | ActiveRecord: 0.1ms)
|
668
|
+
[1m[35m (0.3ms)[0m rollback transaction
|
669
|
+
[1m[36m (0.8ms)[0m [1mbegin transaction[0m
|
670
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
671
|
+
Connecting to database specified by database.yml
|
672
|
+
[1m[36m (2.9ms)[0m [1mbegin transaction[0m
|
673
|
+
[1m[35mFixture Delete (0.8ms)[0m DELETE FROM "posts"
|
674
|
+
[1m[36mFixture Insert (0.6ms)[0m [1mINSERT INTO "posts" ("title", "content", "created_at", "updated_at", "id") VALUES ('First post', 'Content of the first post', '2013-02-10 13:49:42', '2013-02-10 13:49:42', 655213220)[0m
|
675
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "posts" ("title", "content", "created_at", "updated_at", "id") VALUES ('Second post', 'Content of the second post', '2013-02-10 13:49:42', '2013-02-10 13:49:42', 1040487196)
|
676
|
+
[1m[36mFixture Delete (0.1ms)[0m [1mDELETE FROM "comments"[0m
|
677
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "comments" ("content", "created_at", "updated_at", "id", "post_id") VALUES ('You are right.', '2013-02-10 13:49:42', '2013-02-10 13:49:42', 554292058, 655213220)
|
678
|
+
[1m[36mFixture Insert (0.0ms)[0m [1mINSERT INTO "comments" ("content", "created_at", "updated_at", "id", "post_id") VALUES ('You are wrong.', '2013-02-10 13:49:42', '2013-02-10 13:49:42', 939557606, 655213220)[0m
|
679
|
+
[1m[35mFixture Insert (0.0ms)[0m INSERT INTO "comments" ("content", "created_at", "updated_at", "id", "post_id") VALUES ('You are both right and wrong.', '2013-02-10 13:49:42', '2013-02-10 13:49:42', 252162679, 1040487196)
|
680
|
+
[1m[36m (16.0ms)[0m [1mcommit transaction[0m
|
681
|
+
[1m[35m (0.0ms)[0m begin transaction
|
682
|
+
|
683
|
+
|
684
|
+
Started GET "/posts" for 127.0.0.1 at 2013-02-10 14:49:42 +0100
|
685
|
+
Processing by PostsController#index as HTML
|
686
|
+
[1m[36mPost Load (0.2ms)[0m [1mSELECT "posts".* FROM "posts" [0m
|
687
|
+
Completed 200 OK in 10ms (Views: 4.5ms | ActiveRecord: 0.2ms)
|
688
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
689
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
690
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
691
|
+
Connecting to database specified by database.yml
|
692
|
+
[1m[36m (1.9ms)[0m [1mbegin transaction[0m
|
693
|
+
[1m[35mFixture Delete (0.4ms)[0m DELETE FROM "posts"
|
694
|
+
[1m[36mFixture Insert (0.3ms)[0m [1mINSERT INTO "posts" ("title", "content", "created_at", "updated_at", "id") VALUES ('First post', 'Content of the first post', '2013-02-10 13:49:52', '2013-02-10 13:49:52', 655213220)[0m
|
695
|
+
[1m[35mFixture Insert (0.6ms)[0m INSERT INTO "posts" ("title", "content", "created_at", "updated_at", "id") VALUES ('Second post', 'Content of the second post', '2013-02-10 13:49:52', '2013-02-10 13:49:52', 1040487196)
|
696
|
+
[1m[36mFixture Delete (0.1ms)[0m [1mDELETE FROM "comments"[0m
|
697
|
+
[1m[35mFixture Insert (0.0ms)[0m INSERT INTO "comments" ("content", "created_at", "updated_at", "id", "post_id") VALUES ('You are right.', '2013-02-10 13:49:52', '2013-02-10 13:49:52', 554292058, 655213220)
|
698
|
+
[1m[36mFixture Insert (0.0ms)[0m [1mINSERT INTO "comments" ("content", "created_at", "updated_at", "id", "post_id") VALUES ('You are wrong.', '2013-02-10 13:49:52', '2013-02-10 13:49:52', 939557606, 655213220)[0m
|
699
|
+
[1m[35mFixture Insert (0.0ms)[0m INSERT INTO "comments" ("content", "created_at", "updated_at", "id", "post_id") VALUES ('You are both right and wrong.', '2013-02-10 13:49:52', '2013-02-10 13:49:52', 252162679, 1040487196)
|
700
|
+
[1m[36m (22.8ms)[0m [1mcommit transaction[0m
|
701
|
+
[1m[35m (0.0ms)[0m begin transaction
|
702
|
+
|
703
|
+
|
704
|
+
Started GET "/posts" for 127.0.0.1 at 2013-02-10 14:49:52 +0100
|
705
|
+
Processing by PostsController#index as HTML
|
706
|
+
[1m[36mPost Load (0.2ms)[0m [1mSELECT "posts".* FROM "posts" [0m
|
707
|
+
Completed 200 OK in 9ms (Views: 1.7ms | ActiveRecord: 0.2ms)
|
708
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
709
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
710
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
711
|
+
Connecting to database specified by database.yml
|
712
|
+
[1m[36m (2.4ms)[0m [1mbegin transaction[0m
|
713
|
+
[1m[35mFixture Delete (0.6ms)[0m DELETE FROM "posts"
|
714
|
+
[1m[36mFixture Insert (0.3ms)[0m [1mINSERT INTO "posts" ("title", "content", "created_at", "updated_at", "id") VALUES ('First post', 'Content of the first post', '2013-02-10 13:50:15', '2013-02-10 13:50:15', 655213220)[0m
|
715
|
+
[1m[35mFixture Insert (0.0ms)[0m INSERT INTO "posts" ("title", "content", "created_at", "updated_at", "id") VALUES ('Second post', 'Content of the second post', '2013-02-10 13:50:15', '2013-02-10 13:50:15', 1040487196)
|
716
|
+
[1m[36mFixture Delete (0.1ms)[0m [1mDELETE FROM "comments"[0m
|
717
|
+
[1m[35mFixture Insert (0.0ms)[0m INSERT INTO "comments" ("content", "created_at", "updated_at", "id", "post_id") VALUES ('You are right.', '2013-02-10 13:50:15', '2013-02-10 13:50:15', 554292058, 655213220)
|
718
|
+
[1m[36mFixture Insert (0.0ms)[0m [1mINSERT INTO "comments" ("content", "created_at", "updated_at", "id", "post_id") VALUES ('You are wrong.', '2013-02-10 13:50:15', '2013-02-10 13:50:15', 939557606, 655213220)[0m
|
719
|
+
[1m[35mFixture Insert (0.0ms)[0m INSERT INTO "comments" ("content", "created_at", "updated_at", "id", "post_id") VALUES ('You are both right and wrong.', '2013-02-10 13:50:15', '2013-02-10 13:50:15', 252162679, 1040487196)
|
720
|
+
[1m[36m (7.1ms)[0m [1mcommit transaction[0m
|
721
|
+
[1m[35m (0.0ms)[0m begin transaction
|
722
|
+
|
723
|
+
|
724
|
+
Started GET "/posts" for 127.0.0.1 at 2013-02-10 14:50:15 +0100
|
725
|
+
Processing by PostsController#index as HTML
|
726
|
+
[1m[36mPost Load (0.1ms)[0m [1mSELECT "posts".* FROM "posts" [0m
|
727
|
+
Completed 200 OK in 11ms (Views: 1.7ms | ActiveRecord: 0.1ms)
|
728
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
729
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
730
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
731
|
+
Connecting to database specified by database.yml
|
732
|
+
[1m[36m (1.9ms)[0m [1mbegin transaction[0m
|
733
|
+
[1m[35mFixture Delete (0.5ms)[0m DELETE FROM "posts"
|
734
|
+
[1m[36mFixture Insert (0.2ms)[0m [1mINSERT INTO "posts" ("title", "content", "created_at", "updated_at", "id") VALUES ('First post', 'Content of the first post', '2013-02-10 13:52:45', '2013-02-10 13:52:45', 655213220)[0m
|
735
|
+
[1m[35mFixture Insert (0.0ms)[0m INSERT INTO "posts" ("title", "content", "created_at", "updated_at", "id") VALUES ('Second post', 'Content of the second post', '2013-02-10 13:52:45', '2013-02-10 13:52:45', 1040487196)
|
736
|
+
[1m[36mFixture Delete (0.1ms)[0m [1mDELETE FROM "comments"[0m
|
737
|
+
[1m[35mFixture Insert (0.0ms)[0m INSERT INTO "comments" ("content", "created_at", "updated_at", "id", "post_id") VALUES ('You are right.', '2013-02-10 13:52:45', '2013-02-10 13:52:45', 554292058, 655213220)
|
738
|
+
[1m[36mFixture Insert (0.0ms)[0m [1mINSERT INTO "comments" ("content", "created_at", "updated_at", "id", "post_id") VALUES ('You are wrong.', '2013-02-10 13:52:45', '2013-02-10 13:52:45', 939557606, 655213220)[0m
|
739
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "comments" ("content", "created_at", "updated_at", "id", "post_id") VALUES ('You are both right and wrong.', '2013-02-10 13:52:45', '2013-02-10 13:52:45', 252162679, 1040487196)
|
740
|
+
[1m[36m (4.1ms)[0m [1mcommit transaction[0m
|
741
|
+
[1m[35m (0.0ms)[0m begin transaction
|
742
|
+
|
743
|
+
|
744
|
+
Started GET "/posts" for 127.0.0.1 at 2013-02-10 14:52:45 +0100
|
745
|
+
Processing by PostsController#index as HTML
|
746
|
+
[1m[36mPost Load (0.6ms)[0m [1mSELECT "posts".* FROM "posts" [0m
|
747
|
+
Completed 200 OK in 8ms (Views: 1.6ms | ActiveRecord: 0.6ms)
|
748
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
749
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
750
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
751
|
+
Connecting to database specified by database.yml
|
752
|
+
[1m[36m (1.9ms)[0m [1mbegin transaction[0m
|
753
|
+
[1m[35mFixture Delete (0.3ms)[0m DELETE FROM "posts"
|
754
|
+
[1m[36mFixture Insert (0.2ms)[0m [1mINSERT INTO "posts" ("title", "content", "created_at", "updated_at", "id") VALUES ('First post', 'Content of the first post', '2013-02-10 14:08:41', '2013-02-10 14:08:41', 655213220)[0m
|
755
|
+
[1m[35mFixture Insert (0.0ms)[0m INSERT INTO "posts" ("title", "content", "created_at", "updated_at", "id") VALUES ('Second post', 'Content of the second post', '2013-02-10 14:08:41', '2013-02-10 14:08:41', 1040487196)
|
756
|
+
[1m[36mFixture Delete (0.1ms)[0m [1mDELETE FROM "comments"[0m
|
757
|
+
[1m[35mFixture Insert (0.0ms)[0m INSERT INTO "comments" ("content", "created_at", "updated_at", "id", "post_id") VALUES ('You are right.', '2013-02-10 14:08:41', '2013-02-10 14:08:41', 554292058, 655213220)
|
758
|
+
[1m[36mFixture Insert (0.0ms)[0m [1mINSERT INTO "comments" ("content", "created_at", "updated_at", "id", "post_id") VALUES ('You are wrong.', '2013-02-10 14:08:41', '2013-02-10 14:08:41', 939557606, 655213220)[0m
|
759
|
+
[1m[35mFixture Insert (0.0ms)[0m INSERT INTO "comments" ("content", "created_at", "updated_at", "id", "post_id") VALUES ('You are both right and wrong.', '2013-02-10 14:08:41', '2013-02-10 14:08:41', 252162679, 1040487196)
|
760
|
+
[1m[36m (5.7ms)[0m [1mcommit transaction[0m
|
761
|
+
[1m[35m (0.0ms)[0m begin transaction
|
762
|
+
|
763
|
+
|
764
|
+
Started GET "/posts" for 127.0.0.1 at 2013-02-10 15:08:41 +0100
|
765
|
+
Processing by PostsController#index as HTML
|
766
|
+
[1m[36mPost Load (0.2ms)[0m [1mSELECT "posts".* FROM "posts" [0m
|
767
|
+
Completed 200 OK in 9ms (Views: 1.5ms | ActiveRecord: 0.2ms)
|
768
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
769
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
770
|
+
|
771
|
+
|
772
|
+
Started GET "/posts?include=comments" for 127.0.0.1 at 2013-02-10 15:08:41 +0100
|
773
|
+
Processing by PostsController#index as HTML
|
774
|
+
Parameters: {"include"=>"comments"}
|
775
|
+
[1m[35mPost Load (0.2ms)[0m SELECT "posts".* FROM "posts"
|
776
|
+
[1m[36mComment Load (0.3ms)[0m [1mSELECT "comments".* FROM "comments" WHERE "comments"."post_id" IN (655213220, 1040487196)[0m
|
777
|
+
Completed 200 OK in 47ms (Views: 2.1ms | ActiveRecord: 0.6ms)
|
778
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
779
|
+
Connecting to database specified by database.yml
|
780
|
+
[1m[36m (2.1ms)[0m [1mbegin transaction[0m
|
781
|
+
[1m[35mFixture Delete (0.4ms)[0m DELETE FROM "posts"
|
782
|
+
[1m[36mFixture Insert (0.3ms)[0m [1mINSERT INTO "posts" ("title", "content", "created_at", "updated_at", "id") VALUES ('First post', 'Content of the first post', '2013-02-10 14:09:04', '2013-02-10 14:09:04', 655213220)[0m
|
783
|
+
[1m[35mFixture Insert (0.0ms)[0m INSERT INTO "posts" ("title", "content", "created_at", "updated_at", "id") VALUES ('Second post', 'Content of the second post', '2013-02-10 14:09:04', '2013-02-10 14:09:04', 1040487196)
|
784
|
+
[1m[36mFixture Delete (0.1ms)[0m [1mDELETE FROM "comments"[0m
|
785
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "comments" ("content", "created_at", "updated_at", "id", "post_id") VALUES ('You are right.', '2013-02-10 14:09:04', '2013-02-10 14:09:04', 554292058, 655213220)
|
786
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT INTO "comments" ("content", "created_at", "updated_at", "id", "post_id") VALUES ('You are wrong.', '2013-02-10 14:09:04', '2013-02-10 14:09:04', 939557606, 655213220)[0m
|
787
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "comments" ("content", "created_at", "updated_at", "id", "post_id") VALUES ('You are both right and wrong.', '2013-02-10 14:09:04', '2013-02-10 14:09:04', 252162679, 1040487196)
|
788
|
+
[1m[36m (23.7ms)[0m [1mcommit transaction[0m
|
789
|
+
[1m[35m (0.0ms)[0m begin transaction
|
790
|
+
|
791
|
+
|
792
|
+
Started GET "/posts" for 127.0.0.1 at 2013-02-10 15:09:04 +0100
|
793
|
+
Processing by PostsController#index as HTML
|
794
|
+
[1m[36mPost Load (0.3ms)[0m [1mSELECT "posts".* FROM "posts" [0m
|
795
|
+
Completed 200 OK in 9ms (Views: 1.5ms | ActiveRecord: 0.3ms)
|
796
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
797
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
798
|
+
|
799
|
+
|
800
|
+
Started GET "/posts?include=comments" for 127.0.0.1 at 2013-02-10 15:09:04 +0100
|
801
|
+
Processing by PostsController#index as HTML
|
802
|
+
Parameters: {"include"=>"comments"}
|
803
|
+
[1m[35mPost Load (0.3ms)[0m SELECT "posts".* FROM "posts"
|
804
|
+
[1m[36mComment Load (0.4ms)[0m [1mSELECT "comments".* FROM "comments" WHERE "comments"."post_id" IN (655213220, 1040487196)[0m
|
805
|
+
Completed 200 OK in 48ms (Views: 2.5ms | ActiveRecord: 0.7ms)
|
806
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
807
|
+
Connecting to database specified by database.yml
|
808
|
+
[1m[36m (4.4ms)[0m [1mbegin transaction[0m
|
809
|
+
[1m[35mFixture Delete (0.4ms)[0m DELETE FROM "posts"
|
810
|
+
[1m[36mFixture Insert (0.4ms)[0m [1mINSERT INTO "posts" ("title", "content", "created_at", "updated_at", "id") VALUES ('First post', 'Content of the first post', '2013-02-10 14:09:27', '2013-02-10 14:09:27', 655213220)[0m
|
811
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "posts" ("title", "content", "created_at", "updated_at", "id") VALUES ('Second post', 'Content of the second post', '2013-02-10 14:09:27', '2013-02-10 14:09:27', 1040487196)
|
812
|
+
[1m[36mFixture Delete (0.1ms)[0m [1mDELETE FROM "comments"[0m
|
813
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "comments" ("content", "created_at", "updated_at", "id", "post_id") VALUES ('You are right.', '2013-02-10 14:09:27', '2013-02-10 14:09:27', 554292058, 655213220)
|
814
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT INTO "comments" ("content", "created_at", "updated_at", "id", "post_id") VALUES ('You are wrong.', '2013-02-10 14:09:27', '2013-02-10 14:09:27', 939557606, 655213220)[0m
|
815
|
+
[1m[35mFixture Insert (0.0ms)[0m INSERT INTO "comments" ("content", "created_at", "updated_at", "id", "post_id") VALUES ('You are both right and wrong.', '2013-02-10 14:09:27', '2013-02-10 14:09:27', 252162679, 1040487196)
|
816
|
+
[1m[36m (6.4ms)[0m [1mcommit transaction[0m
|
817
|
+
[1m[35m (0.1ms)[0m begin transaction
|
818
|
+
|
819
|
+
|
820
|
+
Started GET "/posts" for 127.0.0.1 at 2013-02-10 15:09:27 +0100
|
821
|
+
Processing by PostsController#index as HTML
|
822
|
+
[1m[36mPost Load (0.1ms)[0m [1mSELECT "posts".* FROM "posts" [0m
|
823
|
+
Completed 200 OK in 7ms (Views: 1.3ms | ActiveRecord: 0.1ms)
|
824
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
825
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
826
|
+
|
827
|
+
|
828
|
+
Started GET "/posts?include=comments" for 127.0.0.1 at 2013-02-10 15:09:27 +0100
|
829
|
+
Processing by PostsController#index as HTML
|
830
|
+
Parameters: {"include"=>"comments"}
|
831
|
+
[1m[35mPost Load (0.4ms)[0m SELECT "posts".* FROM "posts"
|
832
|
+
[1m[36mComment Load (0.4ms)[0m [1mSELECT "comments".* FROM "comments" WHERE "comments"."post_id" IN (655213220, 1040487196)[0m
|
833
|
+
Completed 200 OK in 48ms (Views: 1.3ms | ActiveRecord: 0.9ms)
|
834
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
835
|
+
Connecting to database specified by database.yml
|
836
|
+
[1m[36m (3.3ms)[0m [1mbegin transaction[0m
|
837
|
+
[1m[35mFixture Delete (0.6ms)[0m DELETE FROM "posts"
|
838
|
+
[1m[36mFixture Insert (0.2ms)[0m [1mINSERT INTO "posts" ("title", "content", "created_at", "updated_at", "id") VALUES ('First post', 'Content of the first post', '2013-02-10 14:11:57', '2013-02-10 14:11:57', 655213220)[0m
|
839
|
+
[1m[35mFixture Insert (0.0ms)[0m INSERT INTO "posts" ("title", "content", "created_at", "updated_at", "id") VALUES ('Second post', 'Content of the second post', '2013-02-10 14:11:57', '2013-02-10 14:11:57', 1040487196)
|
840
|
+
[1m[36mFixture Delete (0.1ms)[0m [1mDELETE FROM "comments"[0m
|
841
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "comments" ("content", "created_at", "updated_at", "id", "post_id") VALUES ('You are right.', '2013-02-10 14:11:57', '2013-02-10 14:11:57', 554292058, 655213220)
|
842
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT INTO "comments" ("content", "created_at", "updated_at", "id", "post_id") VALUES ('You are wrong.', '2013-02-10 14:11:57', '2013-02-10 14:11:57', 939557606, 655213220)[0m
|
843
|
+
[1m[35mFixture Insert (0.0ms)[0m INSERT INTO "comments" ("content", "created_at", "updated_at", "id", "post_id") VALUES ('You are both right and wrong.', '2013-02-10 14:11:57', '2013-02-10 14:11:57', 252162679, 1040487196)
|
844
|
+
[1m[36m (3.9ms)[0m [1mcommit transaction[0m
|
845
|
+
[1m[35m (0.0ms)[0m begin transaction
|
846
|
+
|
847
|
+
|
848
|
+
Started GET "/posts" for 127.0.0.1 at 2013-02-10 15:11:57 +0100
|
849
|
+
Processing by PostsController#index as HTML
|
850
|
+
[1m[36mPost Load (0.2ms)[0m [1mSELECT "posts".* FROM "posts" [0m
|
851
|
+
Completed 200 OK in 9ms (Views: 1.5ms | ActiveRecord: 0.2ms)
|
852
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
853
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
854
|
+
|
855
|
+
|
856
|
+
Started GET "/posts?include=comments" for 127.0.0.1 at 2013-02-10 15:11:57 +0100
|
857
|
+
Processing by PostsController#index as HTML
|
858
|
+
Parameters: {"include"=>"comments"}
|
859
|
+
[1m[35mPost Load (0.7ms)[0m SELECT "posts".* FROM "posts"
|
860
|
+
[1m[36mComment Load (0.4ms)[0m [1mSELECT "comments".* FROM "comments" WHERE "comments"."post_id" IN (655213220, 1040487196)[0m
|
861
|
+
Completed 200 OK in 48ms (Views: 1.5ms | ActiveRecord: 1.1ms)
|
862
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
863
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
864
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
865
|
+
Connecting to database specified by database.yml
|
866
|
+
[1m[36m (2.5ms)[0m [1mbegin transaction[0m
|
867
|
+
[1m[35mFixture Delete (0.6ms)[0m DELETE FROM "posts"
|
868
|
+
[1m[36mFixture Insert (0.5ms)[0m [1mINSERT INTO "posts" ("title", "content", "created_at", "updated_at", "id") VALUES ('First post', 'Content of the first post', '2013-02-10 14:12:13', '2013-02-10 14:12:13', 655213220)[0m
|
869
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "posts" ("title", "content", "created_at", "updated_at", "id") VALUES ('Second post', 'Content of the second post', '2013-02-10 14:12:13', '2013-02-10 14:12:13', 1040487196)
|
870
|
+
[1m[36mFixture Delete (0.7ms)[0m [1mDELETE FROM "comments"[0m
|
871
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "comments" ("content", "created_at", "updated_at", "id", "post_id") VALUES ('You are right.', '2013-02-10 14:12:13', '2013-02-10 14:12:13', 554292058, 655213220)
|
872
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT INTO "comments" ("content", "created_at", "updated_at", "id", "post_id") VALUES ('You are wrong.', '2013-02-10 14:12:13', '2013-02-10 14:12:13', 939557606, 655213220)[0m
|
873
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "comments" ("content", "created_at", "updated_at", "id", "post_id") VALUES ('You are both right and wrong.', '2013-02-10 14:12:13', '2013-02-10 14:12:13', 252162679, 1040487196)
|
874
|
+
[1m[36m (5.3ms)[0m [1mcommit transaction[0m
|
875
|
+
[1m[35m (0.0ms)[0m begin transaction
|
876
|
+
|
877
|
+
|
878
|
+
Started GET "/posts" for 127.0.0.1 at 2013-02-10 15:12:13 +0100
|
879
|
+
Processing by PostsController#index as HTML
|
880
|
+
[1m[36mPost Load (0.3ms)[0m [1mSELECT "posts".* FROM "posts" [0m
|
881
|
+
Completed 200 OK in 8ms (Views: 1.5ms | ActiveRecord: 0.3ms)
|
882
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
883
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
884
|
+
|
885
|
+
|
886
|
+
Started GET "/posts?include=comments" for 127.0.0.1 at 2013-02-10 15:12:13 +0100
|
887
|
+
Processing by PostsController#index as HTML
|
888
|
+
Parameters: {"include"=>"comments"}
|
889
|
+
[1m[35mPost Load (0.2ms)[0m SELECT "posts".* FROM "posts"
|
890
|
+
[1m[36mComment Load (0.2ms)[0m [1mSELECT "comments".* FROM "comments" WHERE "comments"."post_id" IN (655213220, 1040487196)[0m
|
891
|
+
Completed 200 OK in 47ms (Views: 0.8ms | ActiveRecord: 0.4ms)
|
892
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
893
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
894
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
895
|
+
Connecting to database specified by database.yml
|
896
|
+
[1m[36m (1.9ms)[0m [1mbegin transaction[0m
|
897
|
+
[1m[35mFixture Delete (0.7ms)[0m DELETE FROM "posts"
|
898
|
+
[1m[36mFixture Insert (0.4ms)[0m [1mINSERT INTO "posts" ("title", "content", "created_at", "updated_at", "id") VALUES ('First post', 'Content of the first post', '2013-02-10 14:12:55', '2013-02-10 14:12:55', 655213220)[0m
|
899
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "posts" ("title", "content", "created_at", "updated_at", "id") VALUES ('Second post', 'Content of the second post', '2013-02-10 14:12:55', '2013-02-10 14:12:55', 1040487196)
|
900
|
+
[1m[36mFixture Delete (0.1ms)[0m [1mDELETE FROM "comments"[0m
|
901
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "comments" ("content", "created_at", "updated_at", "id", "post_id") VALUES ('You are right.', '2013-02-10 14:12:55', '2013-02-10 14:12:55', 554292058, 655213220)
|
902
|
+
[1m[36mFixture Insert (0.0ms)[0m [1mINSERT INTO "comments" ("content", "created_at", "updated_at", "id", "post_id") VALUES ('You are wrong.', '2013-02-10 14:12:55', '2013-02-10 14:12:55', 939557606, 655213220)[0m
|
903
|
+
[1m[35mFixture Insert (0.0ms)[0m INSERT INTO "comments" ("content", "created_at", "updated_at", "id", "post_id") VALUES ('You are both right and wrong.', '2013-02-10 14:12:55', '2013-02-10 14:12:55', 252162679, 1040487196)
|
904
|
+
[1m[36m (5.8ms)[0m [1mcommit transaction[0m
|
905
|
+
[1m[35m (0.1ms)[0m begin transaction
|
906
|
+
|
907
|
+
|
908
|
+
Started GET "/posts" for 127.0.0.1 at 2013-02-10 15:12:55 +0100
|
909
|
+
Processing by PostsController#index as HTML
|
910
|
+
[1m[36mPost Load (0.2ms)[0m [1mSELECT "posts".* FROM "posts" [0m
|
911
|
+
Completed 200 OK in 8ms (Views: 2.4ms | ActiveRecord: 0.2ms)
|
912
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
913
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
914
|
+
|
915
|
+
|
916
|
+
Started GET "/posts?include=comments" for 127.0.0.1 at 2013-02-10 15:12:55 +0100
|
917
|
+
Processing by PostsController#index as HTML
|
918
|
+
Parameters: {"include"=>"comments"}
|
919
|
+
[1m[35mPost Load (0.3ms)[0m SELECT "posts".* FROM "posts"
|
920
|
+
[1m[36mComment Load (0.5ms)[0m [1mSELECT "comments".* FROM "comments" WHERE "comments"."post_id" IN (655213220, 1040487196)[0m
|
921
|
+
Completed 200 OK in 48ms (Views: 1.4ms | ActiveRecord: 0.8ms)
|
922
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
923
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
924
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
925
|
+
Connecting to database specified by database.yml
|
926
|
+
[1m[36m (1.6ms)[0m [1mbegin transaction[0m
|
927
|
+
[1m[35mFixture Delete (0.5ms)[0m DELETE FROM "posts"
|
928
|
+
[1m[36mFixture Insert (0.4ms)[0m [1mINSERT INTO "posts" ("title", "content", "created_at", "updated_at", "id") VALUES ('First post', 'Content of the first post', '2013-02-10 14:17:37', '2013-02-10 14:17:37', 655213220)[0m
|
929
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "posts" ("title", "content", "created_at", "updated_at", "id") VALUES ('Second post', 'Content of the second post', '2013-02-10 14:17:37', '2013-02-10 14:17:37', 1040487196)
|
930
|
+
[1m[36mFixture Delete (0.1ms)[0m [1mDELETE FROM "comments"[0m
|
931
|
+
[1m[35mFixture Insert (0.0ms)[0m INSERT INTO "comments" ("content", "created_at", "updated_at", "id", "post_id") VALUES ('You are right.', '2013-02-10 14:17:37', '2013-02-10 14:17:37', 554292058, 655213220)
|
932
|
+
[1m[36mFixture Insert (0.0ms)[0m [1mINSERT INTO "comments" ("content", "created_at", "updated_at", "id", "post_id") VALUES ('You are wrong.', '2013-02-10 14:17:37', '2013-02-10 14:17:37', 939557606, 655213220)[0m
|
933
|
+
[1m[35mFixture Insert (0.0ms)[0m INSERT INTO "comments" ("content", "created_at", "updated_at", "id", "post_id") VALUES ('You are both right and wrong.', '2013-02-10 14:17:37', '2013-02-10 14:17:37', 252162679, 1040487196)
|
934
|
+
[1m[36m (4.5ms)[0m [1mcommit transaction[0m
|
935
|
+
[1m[35m (0.0ms)[0m begin transaction
|
936
|
+
|
937
|
+
|
938
|
+
Started GET "/posts" for 127.0.0.1 at 2013-02-10 15:17:37 +0100
|
939
|
+
Processing by PostsController#index as HTML
|
940
|
+
[1m[36mPost Load (0.3ms)[0m [1mSELECT "posts".* FROM "posts" [0m
|
941
|
+
Completed 200 OK in 8ms (Views: 2.7ms | ActiveRecord: 0.3ms)
|
942
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
943
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
944
|
+
|
945
|
+
|
946
|
+
Started GET "/posts?include=comments" for 127.0.0.1 at 2013-02-10 15:17:37 +0100
|
947
|
+
Processing by PostsController#index as HTML
|
948
|
+
Parameters: {"include"=>"comments"}
|
949
|
+
[1m[35mPost Load (0.2ms)[0m SELECT "posts".* FROM "posts"
|
950
|
+
[1m[36mComment Load (0.3ms)[0m [1mSELECT "comments".* FROM "comments" WHERE "comments"."post_id" IN (655213220, 1040487196)[0m
|
951
|
+
Completed 200 OK in 47ms (Views: 1.2ms | ActiveRecord: 0.5ms)
|
952
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
953
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
954
|
+
|
955
|
+
|
956
|
+
Started GET "/posts?include=comments" for 127.0.0.1 at 2013-02-10 15:17:37 +0100
|
957
|
+
Processing by PostsController#index as HTML
|
958
|
+
Parameters: {"include"=>"comments"}
|
959
|
+
[1m[35mPost Load (0.2ms)[0m SELECT "posts".* FROM "posts"
|
960
|
+
[1m[36mComment Load (0.1ms)[0m [1mSELECT "comments".* FROM "comments" WHERE "comments"."post_id" IN (655213220, 1040487196)[0m
|
961
|
+
Completed 200 OK in 3ms (Views: 0.8ms | ActiveRecord: 0.3ms)
|
962
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
963
|
+
Connecting to database specified by database.yml
|
964
|
+
[1m[36m (2.8ms)[0m [1mbegin transaction[0m
|
965
|
+
[1m[35mFixture Delete (0.5ms)[0m DELETE FROM "posts"
|
966
|
+
[1m[36mFixture Insert (0.4ms)[0m [1mINSERT INTO "posts" ("title", "content", "created_at", "updated_at", "id") VALUES ('First post', 'Content of the first post', '2013-02-10 14:17:58', '2013-02-10 14:17:58', 655213220)[0m
|
967
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "posts" ("title", "content", "created_at", "updated_at", "id") VALUES ('Second post', 'Content of the second post', '2013-02-10 14:17:58', '2013-02-10 14:17:58', 1040487196)
|
968
|
+
[1m[36mFixture Delete (0.1ms)[0m [1mDELETE FROM "comments"[0m
|
969
|
+
[1m[35mFixture Insert (0.0ms)[0m INSERT INTO "comments" ("content", "created_at", "updated_at", "id", "post_id") VALUES ('You are right.', '2013-02-10 14:17:58', '2013-02-10 14:17:58', 554292058, 655213220)
|
970
|
+
[1m[36mFixture Insert (0.0ms)[0m [1mINSERT INTO "comments" ("content", "created_at", "updated_at", "id", "post_id") VALUES ('You are wrong.', '2013-02-10 14:17:58', '2013-02-10 14:17:58', 939557606, 655213220)[0m
|
971
|
+
[1m[35mFixture Insert (0.0ms)[0m INSERT INTO "comments" ("content", "created_at", "updated_at", "id", "post_id") VALUES ('You are both right and wrong.', '2013-02-10 14:17:58', '2013-02-10 14:17:58', 252162679, 1040487196)
|
972
|
+
[1m[36m (21.0ms)[0m [1mcommit transaction[0m
|
973
|
+
[1m[35m (0.0ms)[0m begin transaction
|
974
|
+
|
975
|
+
|
976
|
+
Started GET "/posts" for 127.0.0.1 at 2013-02-10 15:17:58 +0100
|
977
|
+
Processing by PostsController#index as HTML
|
978
|
+
[1m[36mPost Load (0.1ms)[0m [1mSELECT "posts".* FROM "posts" [0m
|
979
|
+
Completed 200 OK in 8ms (Views: 1.6ms | ActiveRecord: 0.1ms)
|
980
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
981
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
982
|
+
|
983
|
+
|
984
|
+
Started GET "/posts?include=comments" for 127.0.0.1 at 2013-02-10 15:17:58 +0100
|
985
|
+
Processing by PostsController#index as HTML
|
986
|
+
Parameters: {"include"=>"comments"}
|
987
|
+
[1m[35mPost Load (0.3ms)[0m SELECT "posts".* FROM "posts"
|
988
|
+
[1m[36mComment Load (0.5ms)[0m [1mSELECT "comments".* FROM "comments" WHERE "comments"."post_id" IN (655213220, 1040487196)[0m
|
989
|
+
Completed 200 OK in 50ms (Views: 2.3ms | ActiveRecord: 0.7ms)
|
990
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
991
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
992
|
+
|
993
|
+
|
994
|
+
Started GET "/posts/1" for 127.0.0.1 at 2013-02-10 15:17:58 +0100
|
995
|
+
Processing by PostsController#show as HTML
|
996
|
+
Parameters: {"id"=>"1"}
|
997
|
+
[1m[35mPost Load (0.3ms)[0m SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", "1"]]
|
998
|
+
Completed 404 Not Found in 2ms (Views: 0.1ms | ActiveRecord: 0.3ms)
|
999
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
1000
|
+
Connecting to database specified by database.yml
|
1001
|
+
[1m[36m (3.2ms)[0m [1mbegin transaction[0m
|
1002
|
+
[1m[35mFixture Delete (0.6ms)[0m DELETE FROM "posts"
|
1003
|
+
[1m[36mFixture Insert (0.5ms)[0m [1mINSERT INTO "posts" ("title", "content", "created_at", "updated_at", "id") VALUES ('First post', 'Content of the first post', '2013-02-10 14:18:08', '2013-02-10 14:18:08', 655213220)[0m
|
1004
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "posts" ("title", "content", "created_at", "updated_at", "id") VALUES ('Second post', 'Content of the second post', '2013-02-10 14:18:08', '2013-02-10 14:18:08', 1040487196)
|
1005
|
+
[1m[36mFixture Delete (0.1ms)[0m [1mDELETE FROM "comments"[0m
|
1006
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "comments" ("content", "created_at", "updated_at", "id", "post_id") VALUES ('You are right.', '2013-02-10 14:18:08', '2013-02-10 14:18:08', 554292058, 655213220)
|
1007
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT INTO "comments" ("content", "created_at", "updated_at", "id", "post_id") VALUES ('You are wrong.', '2013-02-10 14:18:08', '2013-02-10 14:18:08', 939557606, 655213220)[0m
|
1008
|
+
[1m[35mFixture Insert (0.0ms)[0m INSERT INTO "comments" ("content", "created_at", "updated_at", "id", "post_id") VALUES ('You are both right and wrong.', '2013-02-10 14:18:08', '2013-02-10 14:18:08', 252162679, 1040487196)
|
1009
|
+
[1m[36m (22.3ms)[0m [1mcommit transaction[0m
|
1010
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1011
|
+
|
1012
|
+
|
1013
|
+
Started GET "/posts" for 127.0.0.1 at 2013-02-10 15:18:08 +0100
|
1014
|
+
Processing by PostsController#index as HTML
|
1015
|
+
[1m[36mPost Load (0.2ms)[0m [1mSELECT "posts".* FROM "posts" [0m
|
1016
|
+
Completed 200 OK in 8ms (Views: 2.4ms | ActiveRecord: 0.2ms)
|
1017
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
1018
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1019
|
+
|
1020
|
+
|
1021
|
+
Started GET "/posts?include=comments" for 127.0.0.1 at 2013-02-10 15:18:08 +0100
|
1022
|
+
Processing by PostsController#index as HTML
|
1023
|
+
Parameters: {"include"=>"comments"}
|
1024
|
+
[1m[35mPost Load (0.2ms)[0m SELECT "posts".* FROM "posts"
|
1025
|
+
[1m[36mComment Load (0.3ms)[0m [1mSELECT "comments".* FROM "comments" WHERE "comments"."post_id" IN (655213220, 1040487196)[0m
|
1026
|
+
Completed 200 OK in 46ms (Views: 0.8ms | ActiveRecord: 0.5ms)
|
1027
|
+
[1m[35m (0.3ms)[0m rollback transaction
|
1028
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1029
|
+
|
1030
|
+
|
1031
|
+
Started GET "/posts/one" for 127.0.0.1 at 2013-02-10 15:18:08 +0100
|
1032
|
+
Processing by PostsController#show as HTML
|
1033
|
+
Parameters: {"id"=>"one"}
|
1034
|
+
[1m[35mPost Load (0.2ms)[0m SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", "one"]]
|
1035
|
+
Completed 404 Not Found in 2ms (Views: 0.1ms | ActiveRecord: 0.2ms)
|
1036
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
1037
|
+
Connecting to database specified by database.yml
|
1038
|
+
[1m[36m (3.3ms)[0m [1mbegin transaction[0m
|
1039
|
+
[1m[35mFixture Delete (0.6ms)[0m DELETE FROM "posts"
|
1040
|
+
[1m[36mFixture Insert (0.8ms)[0m [1mINSERT INTO "posts" ("title", "content", "created_at", "updated_at", "id") VALUES ('First post', 'Content of the first post', '2013-02-10 14:19:52', '2013-02-10 14:19:52', 655213220)[0m
|
1041
|
+
[1m[35mFixture Insert (0.0ms)[0m INSERT INTO "posts" ("title", "content", "created_at", "updated_at", "id") VALUES ('Second post', 'Content of the second post', '2013-02-10 14:19:52', '2013-02-10 14:19:52', 1040487196)
|
1042
|
+
[1m[36mFixture Delete (0.1ms)[0m [1mDELETE FROM "comments"[0m
|
1043
|
+
[1m[35mFixture Insert (0.0ms)[0m INSERT INTO "comments" ("content", "created_at", "updated_at", "id", "post_id") VALUES ('You are right.', '2013-02-10 14:19:52', '2013-02-10 14:19:52', 554292058, 655213220)
|
1044
|
+
[1m[36mFixture Insert (0.0ms)[0m [1mINSERT INTO "comments" ("content", "created_at", "updated_at", "id", "post_id") VALUES ('You are wrong.', '2013-02-10 14:19:52', '2013-02-10 14:19:52', 939557606, 655213220)[0m
|
1045
|
+
[1m[35mFixture Insert (0.0ms)[0m INSERT INTO "comments" ("content", "created_at", "updated_at", "id", "post_id") VALUES ('You are both right and wrong.', '2013-02-10 14:19:52', '2013-02-10 14:19:52', 252162679, 1040487196)
|
1046
|
+
[1m[36m (5.3ms)[0m [1mcommit transaction[0m
|
1047
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1048
|
+
|
1049
|
+
|
1050
|
+
Started GET "/posts" for 127.0.0.1 at 2013-02-10 15:19:52 +0100
|
1051
|
+
Processing by PostsController#index as HTML
|
1052
|
+
[1m[36mPost Load (0.3ms)[0m [1mSELECT "posts".* FROM "posts" [0m
|
1053
|
+
Completed 200 OK in 9ms (Views: 2.1ms | ActiveRecord: 0.3ms)
|
1054
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1055
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1056
|
+
|
1057
|
+
|
1058
|
+
Started GET "/posts?include=comments" for 127.0.0.1 at 2013-02-10 15:19:52 +0100
|
1059
|
+
Processing by PostsController#index as HTML
|
1060
|
+
Parameters: {"include"=>"comments"}
|
1061
|
+
[1m[35mPost Load (0.2ms)[0m SELECT "posts".* FROM "posts"
|
1062
|
+
[1m[36mComment Load (0.3ms)[0m [1mSELECT "comments".* FROM "comments" WHERE "comments"."post_id" IN (655213220, 1040487196)[0m
|
1063
|
+
Completed 200 OK in 48ms (Views: 2.3ms | ActiveRecord: 0.6ms)
|
1064
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
1065
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1066
|
+
|
1067
|
+
|
1068
|
+
Started GET "/posts/1" for 127.0.0.1 at 2013-02-10 15:19:52 +0100
|
1069
|
+
Processing by PostsController#show as HTML
|
1070
|
+
Parameters: {"id"=>"1"}
|
1071
|
+
[1m[35mPost Load (0.4ms)[0m SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", "1"]]
|
1072
|
+
Completed 404 Not Found in 2ms (Views: 0.2ms | ActiveRecord: 0.4ms)
|
1073
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
1074
|
+
Connecting to database specified by database.yml
|
1075
|
+
[1m[36m (2.3ms)[0m [1mbegin transaction[0m
|
1076
|
+
[1m[35mFixture Delete (0.5ms)[0m DELETE FROM "posts"
|
1077
|
+
[1m[36mFixture Insert (0.5ms)[0m [1mINSERT INTO "posts" ("title", "content", "created_at", "updated_at", "id") VALUES ('First post', 'Content of the first post', '2013-02-10 14:28:43', '2013-02-10 14:28:43', 655213220)[0m
|
1078
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "posts" ("title", "content", "created_at", "updated_at", "id") VALUES ('Second post', 'Content of the second post', '2013-02-10 14:28:43', '2013-02-10 14:28:43', 1040487196)
|
1079
|
+
[1m[36mFixture Delete (0.1ms)[0m [1mDELETE FROM "comments"[0m
|
1080
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "comments" ("content", "created_at", "updated_at", "id", "post_id") VALUES ('You are right.', '2013-02-10 14:28:43', '2013-02-10 14:28:43', 554292058, 655213220)
|
1081
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT INTO "comments" ("content", "created_at", "updated_at", "id", "post_id") VALUES ('You are wrong.', '2013-02-10 14:28:43', '2013-02-10 14:28:43', 939557606, 655213220)[0m
|
1082
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "comments" ("content", "created_at", "updated_at", "id", "post_id") VALUES ('You are both right and wrong.', '2013-02-10 14:28:43', '2013-02-10 14:28:43', 252162679, 1040487196)
|
1083
|
+
[1m[36m (16.1ms)[0m [1mcommit transaction[0m
|
1084
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1085
|
+
|
1086
|
+
|
1087
|
+
Started GET "/posts" for 127.0.0.1 at 2013-02-10 15:28:43 +0100
|
1088
|
+
Processing by PostsController#index as HTML
|
1089
|
+
[1m[36mPost Load (0.3ms)[0m [1mSELECT "posts".* FROM "posts" [0m
|
1090
|
+
Completed 200 OK in 10ms (Views: 1.5ms | ActiveRecord: 0.3ms)
|
1091
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1092
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1093
|
+
|
1094
|
+
|
1095
|
+
Started GET "/posts?include=comments" for 127.0.0.1 at 2013-02-10 15:28:43 +0100
|
1096
|
+
Processing by PostsController#index as HTML
|
1097
|
+
Parameters: {"include"=>"comments"}
|
1098
|
+
[1m[35mPost Load (0.3ms)[0m SELECT "posts".* FROM "posts"
|
1099
|
+
[1m[36mComment Load (0.4ms)[0m [1mSELECT "comments".* FROM "comments" WHERE "comments"."post_id" IN (655213220, 1040487196)[0m
|
1100
|
+
Completed 200 OK in 49ms (Views: 0.9ms | ActiveRecord: 0.7ms)
|
1101
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1102
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1103
|
+
|
1104
|
+
|
1105
|
+
Started GET "/posts/1" for 127.0.0.1 at 2013-02-10 15:28:43 +0100
|
1106
|
+
Processing by PostsController#show as HTML
|
1107
|
+
Parameters: {"id"=>"1"}
|
1108
|
+
[1m[35mPost Load (0.3ms)[0m SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", "1"]]
|
1109
|
+
Completed 404 Not Found in 2ms (Views: 0.2ms | ActiveRecord: 0.3ms)
|
1110
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
1111
|
+
Connecting to database specified by database.yml
|
1112
|
+
[1m[36m (1.2ms)[0m [1mbegin transaction[0m
|
1113
|
+
[1m[35mFixture Delete (0.5ms)[0m DELETE FROM "posts"
|
1114
|
+
[1m[36mFixture Insert (0.2ms)[0m [1mINSERT INTO "posts" ("title", "content", "created_at", "updated_at", "id") VALUES ('First post', 'Content of the first post', '2013-02-10 14:28:56', '2013-02-10 14:28:56', 655213220)[0m
|
1115
|
+
[1m[35mFixture Insert (0.0ms)[0m INSERT INTO "posts" ("title", "content", "created_at", "updated_at", "id") VALUES ('Second post', 'Content of the second post', '2013-02-10 14:28:56', '2013-02-10 14:28:56', 1040487196)
|
1116
|
+
[1m[36mFixture Delete (0.1ms)[0m [1mDELETE FROM "comments"[0m
|
1117
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "comments" ("content", "created_at", "updated_at", "id", "post_id") VALUES ('You are right.', '2013-02-10 14:28:56', '2013-02-10 14:28:56', 554292058, 655213220)
|
1118
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT INTO "comments" ("content", "created_at", "updated_at", "id", "post_id") VALUES ('You are wrong.', '2013-02-10 14:28:56', '2013-02-10 14:28:56', 939557606, 655213220)[0m
|
1119
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "comments" ("content", "created_at", "updated_at", "id", "post_id") VALUES ('You are both right and wrong.', '2013-02-10 14:28:56', '2013-02-10 14:28:56', 252162679, 1040487196)
|
1120
|
+
[1m[36m (5.5ms)[0m [1mcommit transaction[0m
|
1121
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1122
|
+
|
1123
|
+
|
1124
|
+
Started GET "/posts" for 127.0.0.1 at 2013-02-10 15:28:56 +0100
|
1125
|
+
Processing by PostsController#index as HTML
|
1126
|
+
[1m[36mPost Load (0.3ms)[0m [1mSELECT "posts".* FROM "posts" [0m
|
1127
|
+
Completed 200 OK in 12ms (Views: 1.1ms | ActiveRecord: 0.3ms)
|
1128
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1129
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
1130
|
+
|
1131
|
+
|
1132
|
+
Started GET "/posts?include=comments" for 127.0.0.1 at 2013-02-10 15:28:56 +0100
|
1133
|
+
Processing by PostsController#index as HTML
|
1134
|
+
Parameters: {"include"=>"comments"}
|
1135
|
+
[1m[35mPost Load (0.1ms)[0m SELECT "posts".* FROM "posts"
|
1136
|
+
[1m[36mComment Load (0.9ms)[0m [1mSELECT "comments".* FROM "comments" WHERE "comments"."post_id" IN (655213220, 1040487196)[0m
|
1137
|
+
Completed 200 OK in 51ms (Views: 1.1ms | ActiveRecord: 1.0ms)
|
1138
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
1139
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1140
|
+
|
1141
|
+
|
1142
|
+
Started GET "/posts/1/" for 127.0.0.1 at 2013-02-10 15:28:56 +0100
|
1143
|
+
Processing by PostsController#show as HTML
|
1144
|
+
Parameters: {"id"=>"1"}
|
1145
|
+
[1m[35mPost Load (0.2ms)[0m SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", "1"]]
|
1146
|
+
Completed 404 Not Found in 2ms (Views: 0.1ms | ActiveRecord: 0.2ms)
|
1147
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
1148
|
+
Connecting to database specified by database.yml
|
1149
|
+
[1m[36m (2.3ms)[0m [1mbegin transaction[0m
|
1150
|
+
[1m[35mFixture Delete (0.3ms)[0m DELETE FROM "posts"
|
1151
|
+
[1m[36mFixture Insert (0.4ms)[0m [1mINSERT INTO "posts" ("title", "content", "created_at", "updated_at", "id") VALUES ('First post', 'Content of the first post', '2013-02-10 14:29:09', '2013-02-10 14:29:09', 655213220)[0m
|
1152
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "posts" ("title", "content", "created_at", "updated_at", "id") VALUES ('Second post', 'Content of the second post', '2013-02-10 14:29:09', '2013-02-10 14:29:09', 1040487196)
|
1153
|
+
[1m[36mFixture Delete (0.2ms)[0m [1mDELETE FROM "comments"[0m
|
1154
|
+
[1m[35mFixture Insert (0.0ms)[0m INSERT INTO "comments" ("content", "created_at", "updated_at", "id", "post_id") VALUES ('You are right.', '2013-02-10 14:29:09', '2013-02-10 14:29:09', 554292058, 655213220)
|
1155
|
+
[1m[36mFixture Insert (0.3ms)[0m [1mINSERT INTO "comments" ("content", "created_at", "updated_at", "id", "post_id") VALUES ('You are wrong.', '2013-02-10 14:29:09', '2013-02-10 14:29:09', 939557606, 655213220)[0m
|
1156
|
+
[1m[35mFixture Insert (0.0ms)[0m INSERT INTO "comments" ("content", "created_at", "updated_at", "id", "post_id") VALUES ('You are both right and wrong.', '2013-02-10 14:29:09', '2013-02-10 14:29:09', 252162679, 1040487196)
|
1157
|
+
[1m[36m (4.8ms)[0m [1mcommit transaction[0m
|
1158
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1159
|
+
|
1160
|
+
|
1161
|
+
Started GET "/posts" for 127.0.0.1 at 2013-02-10 15:29:09 +0100
|
1162
|
+
Processing by PostsController#index as HTML
|
1163
|
+
[1m[36mPost Load (0.2ms)[0m [1mSELECT "posts".* FROM "posts" [0m
|
1164
|
+
Completed 200 OK in 9ms (Views: 1.5ms | ActiveRecord: 0.2ms)
|
1165
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1166
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1167
|
+
|
1168
|
+
|
1169
|
+
Started GET "/posts?include=comments" for 127.0.0.1 at 2013-02-10 15:29:09 +0100
|
1170
|
+
Processing by PostsController#index as HTML
|
1171
|
+
Parameters: {"include"=>"comments"}
|
1172
|
+
[1m[35mPost Load (0.2ms)[0m SELECT "posts".* FROM "posts"
|
1173
|
+
[1m[36mComment Load (0.5ms)[0m [1mSELECT "comments".* FROM "comments" WHERE "comments"."post_id" IN (655213220, 1040487196)[0m
|
1174
|
+
Completed 200 OK in 48ms (Views: 1.3ms | ActiveRecord: 0.7ms)
|
1175
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1176
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1177
|
+
|
1178
|
+
|
1179
|
+
Started GET "/posts" for 127.0.0.1 at 2013-02-10 15:29:09 +0100
|
1180
|
+
Processing by PostsController#index as HTML
|
1181
|
+
[1m[35mPost Load (0.1ms)[0m SELECT "posts".* FROM "posts"
|
1182
|
+
Completed 200 OK in 2ms (Views: 0.9ms | ActiveRecord: 0.1ms)
|
1183
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
1184
|
+
Connecting to database specified by database.yml
|
1185
|
+
[1m[36m (2.3ms)[0m [1mbegin transaction[0m
|
1186
|
+
[1m[35mFixture Delete (0.3ms)[0m DELETE FROM "posts"
|
1187
|
+
[1m[36mFixture Insert (0.3ms)[0m [1mINSERT INTO "posts" ("title", "content", "created_at", "updated_at", "id") VALUES ('First post', 'Content of the first post', '2013-02-10 14:30:46', '2013-02-10 14:30:46', 655213220)[0m
|
1188
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "posts" ("title", "content", "created_at", "updated_at", "id") VALUES ('Second post', 'Content of the second post', '2013-02-10 14:30:46', '2013-02-10 14:30:46', 1040487196)
|
1189
|
+
[1m[36mFixture Delete (0.1ms)[0m [1mDELETE FROM "comments"[0m
|
1190
|
+
[1m[35mFixture Insert (0.0ms)[0m INSERT INTO "comments" ("content", "created_at", "updated_at", "id", "post_id") VALUES ('You are right.', '2013-02-10 14:30:46', '2013-02-10 14:30:46', 554292058, 655213220)
|
1191
|
+
[1m[36mFixture Insert (0.0ms)[0m [1mINSERT INTO "comments" ("content", "created_at", "updated_at", "id", "post_id") VALUES ('You are wrong.', '2013-02-10 14:30:46', '2013-02-10 14:30:46', 939557606, 655213220)[0m
|
1192
|
+
[1m[35mFixture Insert (0.0ms)[0m INSERT INTO "comments" ("content", "created_at", "updated_at", "id", "post_id") VALUES ('You are both right and wrong.', '2013-02-10 14:30:46', '2013-02-10 14:30:46', 252162679, 1040487196)
|
1193
|
+
[1m[36m (6.8ms)[0m [1mcommit transaction[0m
|
1194
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1195
|
+
|
1196
|
+
|
1197
|
+
Started GET "/posts" for 127.0.0.1 at 2013-02-10 15:30:46 +0100
|
1198
|
+
Processing by PostsController#index as HTML
|
1199
|
+
[1m[36mPost Load (0.1ms)[0m [1mSELECT "posts".* FROM "posts" [0m
|
1200
|
+
Completed 200 OK in 6ms (Views: 0.9ms | ActiveRecord: 0.1ms)
|
1201
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1202
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1203
|
+
|
1204
|
+
|
1205
|
+
Started GET "/posts?include=comments" for 127.0.0.1 at 2013-02-10 15:30:46 +0100
|
1206
|
+
Processing by PostsController#index as HTML
|
1207
|
+
Parameters: {"include"=>"comments"}
|
1208
|
+
[1m[35mPost Load (1.3ms)[0m SELECT "posts".* FROM "posts"
|
1209
|
+
[1m[36mComment Load (0.2ms)[0m [1mSELECT "comments".* FROM "comments" WHERE "comments"."post_id" IN (655213220, 1040487196)[0m
|
1210
|
+
Completed 200 OK in 49ms (Views: 2.4ms | ActiveRecord: 1.5ms)
|
1211
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1212
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1213
|
+
|
1214
|
+
|
1215
|
+
Started GET "/posts/1" for 127.0.0.1 at 2013-02-10 15:30:46 +0100
|
1216
|
+
Processing by PostsController#show as HTML
|
1217
|
+
Parameters: {"id"=>"1"}
|
1218
|
+
[1m[35mPost Load (0.2ms)[0m SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", "1"]]
|
1219
|
+
Completed 404 Not Found in 3ms (Views: 0.1ms | ActiveRecord: 0.2ms)
|
1220
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
1221
|
+
Connecting to database specified by database.yml
|
1222
|
+
[1m[36m (2.5ms)[0m [1mbegin transaction[0m
|
1223
|
+
[1m[35mFixture Delete (0.2ms)[0m DELETE FROM "posts"
|
1224
|
+
[1m[36mFixture Insert (0.3ms)[0m [1mINSERT INTO "posts" ("title", "content", "created_at", "updated_at", "id") VALUES ('First post', 'Content of the first post', '2013-02-10 14:40:21', '2013-02-10 14:40:21', 655213220)[0m
|
1225
|
+
[1m[35mFixture Insert (0.0ms)[0m INSERT INTO "posts" ("title", "content", "created_at", "updated_at", "id") VALUES ('Second post', 'Content of the second post', '2013-02-10 14:40:21', '2013-02-10 14:40:21', 1040487196)
|
1226
|
+
[1m[36mFixture Delete (0.1ms)[0m [1mDELETE FROM "comments"[0m
|
1227
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "comments" ("content", "created_at", "updated_at", "id", "post_id") VALUES ('You are right.', '2013-02-10 14:40:21', '2013-02-10 14:40:21', 554292058, 655213220)
|
1228
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT INTO "comments" ("content", "created_at", "updated_at", "id", "post_id") VALUES ('You are wrong.', '2013-02-10 14:40:21', '2013-02-10 14:40:21', 939557606, 655213220)[0m
|
1229
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "comments" ("content", "created_at", "updated_at", "id", "post_id") VALUES ('You are both right and wrong.', '2013-02-10 14:40:21', '2013-02-10 14:40:21', 252162679, 1040487196)
|
1230
|
+
[1m[36m (18.4ms)[0m [1mcommit transaction[0m
|
1231
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1232
|
+
|
1233
|
+
|
1234
|
+
Started GET "/posts" for 127.0.0.1 at 2013-02-10 15:40:22 +0100
|
1235
|
+
Processing by PostsController#index as HTML
|
1236
|
+
[1m[36mPost Load (0.1ms)[0m [1mSELECT "posts".* FROM "posts" [0m
|
1237
|
+
Completed 200 OK in 9ms (Views: 2.4ms | ActiveRecord: 0.1ms)
|
1238
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
1239
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1240
|
+
|
1241
|
+
|
1242
|
+
Started GET "/posts?include=comments" for 127.0.0.1 at 2013-02-10 15:40:22 +0100
|
1243
|
+
Processing by PostsController#index as HTML
|
1244
|
+
Parameters: {"include"=>"comments"}
|
1245
|
+
[1m[35mPost Load (0.2ms)[0m SELECT "posts".* FROM "posts"
|
1246
|
+
[1m[36mComment Load (0.4ms)[0m [1mSELECT "comments".* FROM "comments" WHERE "comments"."post_id" IN (655213220, 1040487196)[0m
|
1247
|
+
Completed 200 OK in 47ms (Views: 1.0ms | ActiveRecord: 0.6ms)
|
1248
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1249
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1250
|
+
|
1251
|
+
|
1252
|
+
Started GET "/posts/post_1" for 127.0.0.1 at 2013-02-10 15:40:22 +0100
|
1253
|
+
Processing by PostsController#show as HTML
|
1254
|
+
Parameters: {"id"=>"post_1"}
|
1255
|
+
[1m[35mPost Load (0.5ms)[0m SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", "post_1"]]
|
1256
|
+
Completed 404 Not Found in 2ms (Views: 0.2ms | ActiveRecord: 0.5ms)
|
1257
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
1258
|
+
Connecting to database specified by database.yml
|
1259
|
+
[1m[36m (2.7ms)[0m [1mbegin transaction[0m
|
1260
|
+
[1m[35mFixture Delete (0.4ms)[0m DELETE FROM "posts"
|
1261
|
+
[1m[36mFixture Insert (0.2ms)[0m [1mINSERT INTO "posts" ("title", "content", "created_at", "updated_at", "id") VALUES ('First post', 'Content of the first post', '2013-02-10 14:41:04', '2013-02-10 14:41:04', 655213220)[0m
|
1262
|
+
[1m[35mFixture Insert (0.0ms)[0m INSERT INTO "posts" ("title", "content", "created_at", "updated_at", "id") VALUES ('Second post', 'Content of the second post', '2013-02-10 14:41:04', '2013-02-10 14:41:04', 1040487196)
|
1263
|
+
[1m[36mFixture Delete (0.1ms)[0m [1mDELETE FROM "comments"[0m
|
1264
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "comments" ("content", "created_at", "updated_at", "id", "post_id") VALUES ('You are right.', '2013-02-10 14:41:04', '2013-02-10 14:41:04', 554292058, 655213220)
|
1265
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT INTO "comments" ("content", "created_at", "updated_at", "id", "post_id") VALUES ('You are wrong.', '2013-02-10 14:41:04', '2013-02-10 14:41:04', 939557606, 655213220)[0m
|
1266
|
+
[1m[35mFixture Insert (0.0ms)[0m INSERT INTO "comments" ("content", "created_at", "updated_at", "id", "post_id") VALUES ('You are both right and wrong.', '2013-02-10 14:41:04', '2013-02-10 14:41:04', 252162679, 1040487196)
|
1267
|
+
[1m[36m (135.1ms)[0m [1mcommit transaction[0m
|
1268
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1269
|
+
|
1270
|
+
|
1271
|
+
Started GET "/posts" for 127.0.0.1 at 2013-02-10 15:41:05 +0100
|
1272
|
+
Processing by PostsController#index as HTML
|
1273
|
+
[1m[36mPost Load (0.1ms)[0m [1mSELECT "posts".* FROM "posts" [0m
|
1274
|
+
Completed 200 OK in 9ms (Views: 1.5ms | ActiveRecord: 0.1ms)
|
1275
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1276
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1277
|
+
|
1278
|
+
|
1279
|
+
Started GET "/posts?include=comments" for 127.0.0.1 at 2013-02-10 15:41:05 +0100
|
1280
|
+
Processing by PostsController#index as HTML
|
1281
|
+
Parameters: {"include"=>"comments"}
|
1282
|
+
[1m[35mPost Load (1.0ms)[0m SELECT "posts".* FROM "posts"
|
1283
|
+
[1m[36mComment Load (0.2ms)[0m [1mSELECT "comments".* FROM "comments" WHERE "comments"."post_id" IN (655213220, 1040487196)[0m
|
1284
|
+
Completed 200 OK in 53ms (Views: 1.2ms | ActiveRecord: 1.2ms)
|
1285
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
1286
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1287
|
+
|
1288
|
+
|
1289
|
+
Started GET "/posts/post_1" for 127.0.0.1 at 2013-02-10 15:41:05 +0100
|
1290
|
+
Processing by PostsController#show as HTML
|
1291
|
+
Parameters: {"id"=>"post_1"}
|
1292
|
+
[1m[35mPost Load (0.2ms)[0m SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", "post_1"]]
|
1293
|
+
Completed 404 Not Found in 6ms (Views: 4.2ms | ActiveRecord: 0.2ms)
|
1294
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
1295
|
+
Connecting to database specified by database.yml
|
1296
|
+
[1m[36m (2.4ms)[0m [1mbegin transaction[0m
|
1297
|
+
[1m[35mFixture Delete (0.5ms)[0m DELETE FROM "posts"
|
1298
|
+
[1m[36mFixture Insert (0.4ms)[0m [1mINSERT INTO "posts" ("id", "title", "content", "created_at", "updated_at") VALUES (1, 'First post', 'Content of the first post', '2013-02-10 14:41:52', '2013-02-10 14:41:52')[0m
|
1299
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "posts" ("id", "title", "content", "created_at", "updated_at") VALUES (2, 'Second post', 'Content of the second post', '2013-02-10 14:41:52', '2013-02-10 14:41:52')
|
1300
|
+
[1m[36mFixture Delete (0.1ms)[0m [1mDELETE FROM "comments"[0m
|
1301
|
+
[1m[35mFixture Insert (0.0ms)[0m INSERT INTO "comments" ("content", "created_at", "updated_at", "id", "post_id") VALUES ('You are right.', '2013-02-10 14:41:52', '2013-02-10 14:41:52', 554292058, 655213220)
|
1302
|
+
[1m[36mFixture Insert (0.0ms)[0m [1mINSERT INTO "comments" ("content", "created_at", "updated_at", "id", "post_id") VALUES ('You are wrong.', '2013-02-10 14:41:52', '2013-02-10 14:41:52', 939557606, 655213220)[0m
|
1303
|
+
[1m[35mFixture Insert (0.0ms)[0m INSERT INTO "comments" ("content", "created_at", "updated_at", "id", "post_id") VALUES ('You are both right and wrong.', '2013-02-10 14:41:52', '2013-02-10 14:41:52', 252162679, 1040487196)
|
1304
|
+
[1m[36m (4.7ms)[0m [1mcommit transaction[0m
|
1305
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1306
|
+
|
1307
|
+
|
1308
|
+
Started GET "/posts" for 127.0.0.1 at 2013-02-10 15:41:52 +0100
|
1309
|
+
Processing by PostsController#index as HTML
|
1310
|
+
[1m[36mPost Load (0.1ms)[0m [1mSELECT "posts".* FROM "posts" [0m
|
1311
|
+
Completed 200 OK in 9ms (Views: 1.3ms | ActiveRecord: 0.1ms)
|
1312
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1313
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1314
|
+
|
1315
|
+
|
1316
|
+
Started GET "/posts?include=comments" for 127.0.0.1 at 2013-02-10 15:41:52 +0100
|
1317
|
+
Processing by PostsController#index as HTML
|
1318
|
+
Parameters: {"include"=>"comments"}
|
1319
|
+
[1m[35mPost Load (0.1ms)[0m SELECT "posts".* FROM "posts"
|
1320
|
+
[1m[36mComment Load (0.3ms)[0m [1mSELECT "comments".* FROM "comments" WHERE "comments"."post_id" IN (1, 2)[0m
|
1321
|
+
Completed 200 OK in 45ms (Views: 0.6ms | ActiveRecord: 0.4ms)
|
1322
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1323
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1324
|
+
|
1325
|
+
|
1326
|
+
Started GET "/posts/1" for 127.0.0.1 at 2013-02-10 15:41:52 +0100
|
1327
|
+
Processing by PostsController#show as HTML
|
1328
|
+
Parameters: {"id"=>"1"}
|
1329
|
+
[1m[35mPost Load (0.2ms)[0m SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", "1"]]
|
1330
|
+
Completed 200 OK in 3ms (Views: 0.7ms | ActiveRecord: 0.2ms)
|
1331
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
1332
|
+
Connecting to database specified by database.yml
|
1333
|
+
[1m[36m (2.4ms)[0m [1mbegin transaction[0m
|
1334
|
+
[1m[35mFixture Delete (0.5ms)[0m DELETE FROM "posts"
|
1335
|
+
[1m[36mFixture Insert (0.2ms)[0m [1mINSERT INTO "posts" ("id", "title", "content", "created_at", "updated_at") VALUES (1, 'First post', 'Content of the first post', '2013-02-10 14:42:48', '2013-02-10 14:42:48')[0m
|
1336
|
+
[1m[35mFixture Insert (0.0ms)[0m INSERT INTO "posts" ("id", "title", "content", "created_at", "updated_at") VALUES (2, 'Second post', 'Content of the second post', '2013-02-10 14:42:48', '2013-02-10 14:42:48')
|
1337
|
+
[1m[36mFixture Delete (0.1ms)[0m [1mDELETE FROM "comments"[0m
|
1338
|
+
[1m[35mFixture Insert (0.0ms)[0m INSERT INTO "comments" ("content", "created_at", "updated_at", "id", "post_id") VALUES ('You are right.', '2013-02-10 14:42:48', '2013-02-10 14:42:48', 554292058, 655213220)
|
1339
|
+
[1m[36mFixture Insert (0.0ms)[0m [1mINSERT INTO "comments" ("content", "created_at", "updated_at", "id", "post_id") VALUES ('You are wrong.', '2013-02-10 14:42:48', '2013-02-10 14:42:48', 939557606, 655213220)[0m
|
1340
|
+
[1m[35mFixture Insert (0.0ms)[0m INSERT INTO "comments" ("content", "created_at", "updated_at", "id", "post_id") VALUES ('You are both right and wrong.', '2013-02-10 14:42:48', '2013-02-10 14:42:48', 252162679, 1040487196)
|
1341
|
+
[1m[36m (5.9ms)[0m [1mcommit transaction[0m
|
1342
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1343
|
+
|
1344
|
+
|
1345
|
+
Started GET "/posts" for 127.0.0.1 at 2013-02-10 15:42:48 +0100
|
1346
|
+
Processing by PostsController#index as HTML
|
1347
|
+
[1m[36mPost Load (0.2ms)[0m [1mSELECT "posts".* FROM "posts" [0m
|
1348
|
+
Completed 200 OK in 8ms (Views: 2.2ms | ActiveRecord: 0.2ms)
|
1349
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
1350
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
1351
|
+
|
1352
|
+
|
1353
|
+
Started GET "/posts?include=comments" for 127.0.0.1 at 2013-02-10 15:42:48 +0100
|
1354
|
+
Processing by PostsController#index as HTML
|
1355
|
+
Parameters: {"include"=>"comments"}
|
1356
|
+
[1m[35mPost Load (0.1ms)[0m SELECT "posts".* FROM "posts"
|
1357
|
+
[1m[36mComment Load (0.2ms)[0m [1mSELECT "comments".* FROM "comments" WHERE "comments"."post_id" IN (1, 2)[0m
|
1358
|
+
Completed 200 OK in 43ms (Views: 0.4ms | ActiveRecord: 0.4ms)
|
1359
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1360
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1361
|
+
|
1362
|
+
|
1363
|
+
Started GET "/posts/1" for 127.0.0.1 at 2013-02-10 15:42:48 +0100
|
1364
|
+
Processing by PostsController#show as HTML
|
1365
|
+
Parameters: {"id"=>"1"}
|
1366
|
+
[1m[35mPost Load (0.4ms)[0m SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", "1"]]
|
1367
|
+
Completed 200 OK in 5ms (Views: 0.4ms | ActiveRecord: 0.4ms)
|
1368
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
1369
|
+
Connecting to database specified by database.yml
|
1370
|
+
[1m[36m (2.9ms)[0m [1mbegin transaction[0m
|
1371
|
+
[1m[35mFixture Delete (0.7ms)[0m DELETE FROM "posts"
|
1372
|
+
[1m[36mFixture Insert (0.3ms)[0m [1mINSERT INTO "posts" ("id", "title", "content", "created_at", "updated_at") VALUES (1, 'First post', 'Content of the first post', '2013-02-10 14:44:44', '2013-02-10 14:44:44')[0m
|
1373
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "posts" ("id", "title", "content", "created_at", "updated_at") VALUES (2, 'Second post', 'Content of the second post', '2013-02-10 14:44:44', '2013-02-10 14:44:44')
|
1374
|
+
[1m[36mFixture Delete (0.1ms)[0m [1mDELETE FROM "comments"[0m
|
1375
|
+
[1m[35mFixture Insert (0.0ms)[0m INSERT INTO "comments" ("content", "created_at", "updated_at", "id", "post_id") VALUES ('You are right.', '2013-02-10 14:44:44', '2013-02-10 14:44:44', 554292058, 655213220)
|
1376
|
+
[1m[36mFixture Insert (0.0ms)[0m [1mINSERT INTO "comments" ("content", "created_at", "updated_at", "id", "post_id") VALUES ('You are wrong.', '2013-02-10 14:44:44', '2013-02-10 14:44:44', 939557606, 655213220)[0m
|
1377
|
+
[1m[35mFixture Insert (0.7ms)[0m INSERT INTO "comments" ("content", "created_at", "updated_at", "id", "post_id") VALUES ('You are both right and wrong.', '2013-02-10 14:44:44', '2013-02-10 14:44:44', 252162679, 1040487196)
|
1378
|
+
[1m[36m (5.8ms)[0m [1mcommit transaction[0m
|
1379
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1380
|
+
|
1381
|
+
|
1382
|
+
Started GET "/posts" for 127.0.0.1 at 2013-02-10 15:44:44 +0100
|
1383
|
+
Processing by PostsController#index as HTML
|
1384
|
+
[1m[36mPost Load (0.2ms)[0m [1mSELECT "posts".* FROM "posts" [0m
|
1385
|
+
Completed 200 OK in 7ms (Views: 0.9ms | ActiveRecord: 0.2ms)
|
1386
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1387
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1388
|
+
|
1389
|
+
|
1390
|
+
Started GET "/posts?include=comments" for 127.0.0.1 at 2013-02-10 15:44:44 +0100
|
1391
|
+
Processing by PostsController#index as HTML
|
1392
|
+
Parameters: {"include"=>"comments"}
|
1393
|
+
[1m[35mPost Load (0.1ms)[0m SELECT "posts".* FROM "posts"
|
1394
|
+
[1m[36mComment Load (0.3ms)[0m [1mSELECT "comments".* FROM "comments" WHERE "comments"."post_id" IN (1, 2)[0m
|
1395
|
+
Completed 200 OK in 42ms (Views: 0.5ms | ActiveRecord: 0.4ms)
|
1396
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1397
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1398
|
+
|
1399
|
+
|
1400
|
+
Started GET "/posts/1" for 127.0.0.1 at 2013-02-10 15:44:44 +0100
|
1401
|
+
Processing by PostsController#show as HTML
|
1402
|
+
Parameters: {"id"=>"1"}
|
1403
|
+
[1m[35mPost Load (0.2ms)[0m SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", "1"]]
|
1404
|
+
Completed 200 OK in 4ms (Views: 2.0ms | ActiveRecord: 0.2ms)
|
1405
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
1406
|
+
Connecting to database specified by database.yml
|
1407
|
+
[1m[36m (2.6ms)[0m [1mbegin transaction[0m
|
1408
|
+
[1m[35mFixture Delete (0.5ms)[0m DELETE FROM "posts"
|
1409
|
+
[1m[36mFixture Insert (0.4ms)[0m [1mINSERT INTO "posts" ("id", "title", "content", "created_at", "updated_at") VALUES (1, 'First post', 'Content of the first post', '2013-02-10 14:50:44', '2013-02-10 14:50:44')[0m
|
1410
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "posts" ("id", "title", "content", "created_at", "updated_at") VALUES (2, 'Second post', 'Content of the second post', '2013-02-10 14:50:44', '2013-02-10 14:50:44')
|
1411
|
+
[1m[36mFixture Delete (0.1ms)[0m [1mDELETE FROM "comments"[0m
|
1412
|
+
[1m[35mFixture Insert (0.0ms)[0m INSERT INTO "comments" ("content", "created_at", "updated_at", "id", "post_id") VALUES ('You are right.', '2013-02-10 14:50:44', '2013-02-10 14:50:44', 554292058, 655213220)
|
1413
|
+
[1m[36mFixture Insert (0.3ms)[0m [1mINSERT INTO "comments" ("content", "created_at", "updated_at", "id", "post_id") VALUES ('You are wrong.', '2013-02-10 14:50:44', '2013-02-10 14:50:44', 939557606, 655213220)[0m
|
1414
|
+
[1m[35mFixture Insert (0.0ms)[0m INSERT INTO "comments" ("content", "created_at", "updated_at", "id", "post_id") VALUES ('You are both right and wrong.', '2013-02-10 14:50:44', '2013-02-10 14:50:44', 252162679, 1040487196)
|
1415
|
+
[1m[36m (3.3ms)[0m [1mcommit transaction[0m
|
1416
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1417
|
+
|
1418
|
+
|
1419
|
+
Started GET "/posts" for 127.0.0.1 at 2013-02-10 15:50:44 +0100
|
1420
|
+
Processing by PostsController#index as HTML
|
1421
|
+
[1m[36mPost Load (0.2ms)[0m [1mSELECT "posts".* FROM "posts" [0m
|
1422
|
+
Completed 200 OK in 9ms (Views: 1.6ms | ActiveRecord: 0.2ms)
|
1423
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1424
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1425
|
+
|
1426
|
+
|
1427
|
+
Started GET "/posts?include=comments" for 127.0.0.1 at 2013-02-10 15:50:44 +0100
|
1428
|
+
Processing by PostsController#index as HTML
|
1429
|
+
Parameters: {"include"=>"comments"}
|
1430
|
+
[1m[35mPost Load (0.3ms)[0m SELECT "posts".* FROM "posts"
|
1431
|
+
[1m[36mComment Load (1.8ms)[0m [1mSELECT "comments".* FROM "comments" WHERE "comments"."post_id" IN (1, 2)[0m
|
1432
|
+
Completed 200 OK in 42ms (Views: 0.7ms | ActiveRecord: 2.0ms)
|
1433
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1434
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1435
|
+
|
1436
|
+
|
1437
|
+
Started GET "/posts/1" for 127.0.0.1 at 2013-02-10 15:50:44 +0100
|
1438
|
+
Processing by PostsController#show as HTML
|
1439
|
+
Parameters: {"id"=>"1"}
|
1440
|
+
[1m[35mPost Load (0.2ms)[0m SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", "1"]]
|
1441
|
+
Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.2ms)
|
1442
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
1443
|
+
Connecting to database specified by database.yml
|
1444
|
+
[1m[36m (7.8ms)[0m [1mbegin transaction[0m
|
1445
|
+
[1m[35mFixture Delete (0.5ms)[0m DELETE FROM "posts"
|
1446
|
+
[1m[36mFixture Insert (0.4ms)[0m [1mINSERT INTO "posts" ("id", "title", "content", "created_at", "updated_at") VALUES (1, 'First post', 'Content of the first post', '2013-02-11 11:47:20', '2013-02-11 11:47:20')[0m
|
1447
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "posts" ("id", "title", "content", "created_at", "updated_at") VALUES (2, 'Second post', 'Content of the second post', '2013-02-11 11:47:20', '2013-02-11 11:47:20')
|
1448
|
+
[1m[36mFixture Delete (0.0ms)[0m [1mDELETE FROM "comments"[0m
|
1449
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "comments" ("content", "created_at", "updated_at", "id", "post_id") VALUES ('You are right.', '2013-02-11 11:47:20', '2013-02-11 11:47:20', 554292058, 655213220)
|
1450
|
+
[1m[36mFixture Insert (0.0ms)[0m [1mINSERT INTO "comments" ("content", "created_at", "updated_at", "id", "post_id") VALUES ('You are wrong.', '2013-02-11 11:47:20', '2013-02-11 11:47:20', 939557606, 655213220)[0m
|
1451
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "comments" ("content", "created_at", "updated_at", "id", "post_id") VALUES ('You are both right and wrong.', '2013-02-11 11:47:20', '2013-02-11 11:47:20', 252162679, 1040487196)
|
1452
|
+
[1m[36m (18.9ms)[0m [1mcommit transaction[0m
|
1453
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1454
|
+
|
1455
|
+
|
1456
|
+
Started GET "/posts" for 127.0.0.1 at 2013-02-11 12:47:20 +0100
|
1457
|
+
Processing by PostsController#index as HTML
|
1458
|
+
[1m[36mPost Load (0.3ms)[0m [1mSELECT "posts".* FROM "posts" [0m
|
1459
|
+
Completed 200 OK in 14ms (Views: 6.5ms | ActiveRecord: 0.3ms)
|
1460
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1461
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1462
|
+
|
1463
|
+
|
1464
|
+
Started GET "/posts?include=comments" for 127.0.0.1 at 2013-02-11 12:47:20 +0100
|
1465
|
+
Processing by PostsController#index as HTML
|
1466
|
+
Parameters: {"include"=>"comments"}
|
1467
|
+
[1m[35mPost Load (0.6ms)[0m SELECT "posts".* FROM "posts"
|
1468
|
+
[1m[36mComment Load (0.3ms)[0m [1mSELECT "comments".* FROM "comments" WHERE "comments"."post_id" IN (1, 2)[0m
|
1469
|
+
Completed 200 OK in 55ms (Views: 0.5ms | ActiveRecord: 0.9ms)
|
1470
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1471
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1472
|
+
|
1473
|
+
|
1474
|
+
Started GET "/posts/1" for 127.0.0.1 at 2013-02-11 12:47:20 +0100
|
1475
|
+
Processing by PostsController#show as HTML
|
1476
|
+
Parameters: {"id"=>"1"}
|
1477
|
+
[1m[35mPost Load (0.2ms)[0m SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", "1"]]
|
1478
|
+
Completed 200 OK in 3ms (Views: 0.4ms | ActiveRecord: 0.2ms)
|
1479
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
1480
|
+
Connecting to database specified by database.yml
|
1481
|
+
[1m[36m (3.0ms)[0m [1mbegin transaction[0m
|
1482
|
+
[1m[35mFixture Delete (0.5ms)[0m DELETE FROM "posts"
|
1483
|
+
[1m[36mFixture Insert (0.7ms)[0m [1mINSERT INTO "posts" ("id", "title", "content", "created_at", "updated_at") VALUES (1, 'First post', 'Content of the first post', '2013-02-11 11:54:46', '2013-02-11 11:54:46')[0m
|
1484
|
+
[1m[35mFixture Insert (0.2ms)[0m INSERT INTO "posts" ("id", "title", "content", "created_at", "updated_at") VALUES (2, 'Second post', 'Content of the second post', '2013-02-11 11:54:46', '2013-02-11 11:54:46')
|
1485
|
+
[1m[36mFixture Delete (0.2ms)[0m [1mDELETE FROM "comments"[0m
|
1486
|
+
[1m[35mFixture Insert (0.2ms)[0m INSERT INTO "comments" ("content", "created_at", "updated_at", "id", "post_id") VALUES ('You are right.', '2013-02-11 11:54:46', '2013-02-11 11:54:46', 554292058, 655213220)
|
1487
|
+
[1m[36mFixture Insert (0.2ms)[0m [1mINSERT INTO "comments" ("content", "created_at", "updated_at", "id", "post_id") VALUES ('You are wrong.', '2013-02-11 11:54:46', '2013-02-11 11:54:46', 939557606, 655213220)[0m
|
1488
|
+
[1m[35mFixture Insert (0.0ms)[0m INSERT INTO "comments" ("content", "created_at", "updated_at", "id", "post_id") VALUES ('You are both right and wrong.', '2013-02-11 11:54:46', '2013-02-11 11:54:46', 252162679, 1040487196)
|
1489
|
+
[1m[36m (4.1ms)[0m [1mcommit transaction[0m
|
1490
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1491
|
+
|
1492
|
+
|
1493
|
+
Started POST "/posts" for 127.0.0.1 at 2013-02-11 12:54:46 +0100
|
1494
|
+
Processing by PostsController#create as HTML
|
1495
|
+
Parameters: {"{\"id\":\"3\",\"title\":\"Third post\",\"content\":\"Content of the third post\"}"=>nil}
|
1496
|
+
[1m[36m (0.2ms)[0m [1mSAVEPOINT active_record_1[0m
|
1497
|
+
[1m[35mSQL (1.5ms)[0m INSERT INTO "posts" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", nil], ["created_at", Mon, 11 Feb 2013 11:54:46 UTC +00:00], ["title", nil], ["updated_at", Mon, 11 Feb 2013 11:54:46 UTC +00:00]]
|
1498
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1499
|
+
Completed 200 OK in 11ms (Views: 0.3ms | ActiveRecord: 1.7ms)
|
1500
|
+
[1m[35m (0.3ms)[0m rollback transaction
|
1501
|
+
Connecting to database specified by database.yml
|
1502
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1503
|
+
[1m[35mFixture Delete (0.6ms)[0m DELETE FROM "posts"
|
1504
|
+
[1m[36mFixture Insert (0.3ms)[0m [1mINSERT INTO "posts" ("id", "title", "content", "created_at", "updated_at") VALUES (1, 'First post', 'Content of the first post', '2013-02-11 11:56:30', '2013-02-11 11:56:30')[0m
|
1505
|
+
[1m[35mFixture Insert (0.2ms)[0m INSERT INTO "posts" ("id", "title", "content", "created_at", "updated_at") VALUES (2, 'Second post', 'Content of the second post', '2013-02-11 11:56:30', '2013-02-11 11:56:30')
|
1506
|
+
[1m[36mFixture Delete (0.0ms)[0m [1mDELETE FROM "comments"[0m
|
1507
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "comments" ("content", "created_at", "updated_at", "id", "post_id") VALUES ('You are right.', '2013-02-11 11:56:30', '2013-02-11 11:56:30', 554292058, 655213220)
|
1508
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT INTO "comments" ("content", "created_at", "updated_at", "id", "post_id") VALUES ('You are wrong.', '2013-02-11 11:56:30', '2013-02-11 11:56:30', 939557606, 655213220)[0m
|
1509
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "comments" ("content", "created_at", "updated_at", "id", "post_id") VALUES ('You are both right and wrong.', '2013-02-11 11:56:30', '2013-02-11 11:56:30', 252162679, 1040487196)
|
1510
|
+
[1m[36m (3.8ms)[0m [1mcommit transaction[0m
|
1511
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1512
|
+
|
1513
|
+
|
1514
|
+
Started POST "/posts" for 127.0.0.1 at 2013-02-11 12:56:30 +0100
|
1515
|
+
Processing by PostsController#create as HTML
|
1516
|
+
Parameters: {"{\"id\":\"3\",\"title\":\"Third post\",\"content\":\"Content of the third post\"}"=>nil}
|
1517
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1518
|
+
[1m[35mSQL (2.2ms)[0m INSERT INTO "posts" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", nil], ["created_at", Mon, 11 Feb 2013 11:56:30 UTC +00:00], ["title", nil], ["updated_at", Mon, 11 Feb 2013 11:56:30 UTC +00:00]]
|
1519
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1520
|
+
Completed 200 OK in 12ms (Views: 0.4ms | ActiveRecord: 2.4ms)
|
1521
|
+
[1m[35m (0.3ms)[0m rollback transaction
|
1522
|
+
Connecting to database specified by database.yml
|
1523
|
+
[1m[36m (2.2ms)[0m [1mbegin transaction[0m
|
1524
|
+
[1m[35mFixture Delete (0.5ms)[0m DELETE FROM "posts"
|
1525
|
+
[1m[36mFixture Insert (0.6ms)[0m [1mINSERT INTO "posts" ("id", "title", "content", "created_at", "updated_at") VALUES (1, 'First post', 'Content of the first post', '2013-02-11 12:00:41', '2013-02-11 12:00:41')[0m
|
1526
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "posts" ("id", "title", "content", "created_at", "updated_at") VALUES (2, 'Second post', 'Content of the second post', '2013-02-11 12:00:41', '2013-02-11 12:00:41')
|
1527
|
+
[1m[36mFixture Delete (0.0ms)[0m [1mDELETE FROM "comments"[0m
|
1528
|
+
[1m[35mFixture Insert (0.0ms)[0m INSERT INTO "comments" ("content", "created_at", "updated_at", "id", "post_id") VALUES ('You are right.', '2013-02-11 12:00:41', '2013-02-11 12:00:41', 554292058, 655213220)
|
1529
|
+
[1m[36mFixture Insert (0.0ms)[0m [1mINSERT INTO "comments" ("content", "created_at", "updated_at", "id", "post_id") VALUES ('You are wrong.', '2013-02-11 12:00:41', '2013-02-11 12:00:41', 939557606, 655213220)[0m
|
1530
|
+
[1m[35mFixture Insert (0.0ms)[0m INSERT INTO "comments" ("content", "created_at", "updated_at", "id", "post_id") VALUES ('You are both right and wrong.', '2013-02-11 12:00:41', '2013-02-11 12:00:41', 252162679, 1040487196)
|
1531
|
+
[1m[36m (15.0ms)[0m [1mcommit transaction[0m
|
1532
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1533
|
+
|
1534
|
+
|
1535
|
+
Started POST "/posts" for 127.0.0.1 at 2013-02-11 13:00:41 +0100
|
1536
|
+
Processing by PostsController#create as HTML
|
1537
|
+
Parameters: {"{\"id\":\"3\",\"title\":\"Third post\",\"content\":\"Content of the third post\"}"=>nil}
|
1538
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1539
|
+
[1m[35mSQL (1.4ms)[0m INSERT INTO "posts" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", nil], ["created_at", Mon, 11 Feb 2013 12:00:41 UTC +00:00], ["title", nil], ["updated_at", Mon, 11 Feb 2013 12:00:41 UTC +00:00]]
|
1540
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1541
|
+
Completed 200 OK in 12ms (Views: 0.4ms | ActiveRecord: 1.6ms)
|
1542
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
1543
|
+
Connecting to database specified by database.yml
|
1544
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
1545
|
+
[1m[35mFixture Delete (1.3ms)[0m DELETE FROM "posts"
|
1546
|
+
[1m[36mFixture Insert (0.4ms)[0m [1mINSERT INTO "posts" ("id", "title", "content", "created_at", "updated_at") VALUES (1, 'First post', 'Content of the first post', '2013-02-11 12:00:51', '2013-02-11 12:00:51')[0m
|
1547
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "posts" ("id", "title", "content", "created_at", "updated_at") VALUES (2, 'Second post', 'Content of the second post', '2013-02-11 12:00:51', '2013-02-11 12:00:51')
|
1548
|
+
[1m[36mFixture Delete (0.2ms)[0m [1mDELETE FROM "comments"[0m
|
1549
|
+
[1m[35mFixture Insert (0.2ms)[0m INSERT INTO "comments" ("content", "created_at", "updated_at", "id", "post_id") VALUES ('You are right.', '2013-02-11 12:00:51', '2013-02-11 12:00:51', 554292058, 655213220)
|
1550
|
+
[1m[36mFixture Insert (0.2ms)[0m [1mINSERT INTO "comments" ("content", "created_at", "updated_at", "id", "post_id") VALUES ('You are wrong.', '2013-02-11 12:00:51', '2013-02-11 12:00:51', 939557606, 655213220)[0m
|
1551
|
+
[1m[35mFixture Insert (0.0ms)[0m INSERT INTO "comments" ("content", "created_at", "updated_at", "id", "post_id") VALUES ('You are both right and wrong.', '2013-02-11 12:00:51', '2013-02-11 12:00:51', 252162679, 1040487196)
|
1552
|
+
[1m[36m (16.3ms)[0m [1mcommit transaction[0m
|
1553
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1554
|
+
|
1555
|
+
|
1556
|
+
Started GET "/posts" for 127.0.0.1 at 2013-02-11 13:00:51 +0100
|
1557
|
+
Processing by PostsController#index as HTML
|
1558
|
+
[1m[36mPost Load (0.3ms)[0m [1mSELECT "posts".* FROM "posts" [0m
|
1559
|
+
Completed 200 OK in 11ms (Views: 2.0ms | ActiveRecord: 0.3ms)
|
1560
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
1561
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1562
|
+
|
1563
|
+
|
1564
|
+
Started GET "/posts?include=comments" for 127.0.0.1 at 2013-02-11 13:00:51 +0100
|
1565
|
+
Processing by PostsController#index as HTML
|
1566
|
+
Parameters: {"include"=>"comments"}
|
1567
|
+
[1m[35mPost Load (0.2ms)[0m SELECT "posts".* FROM "posts"
|
1568
|
+
[1m[36mComment Load (0.3ms)[0m [1mSELECT "comments".* FROM "comments" WHERE "comments"."post_id" IN (1, 2)[0m
|
1569
|
+
Completed 200 OK in 41ms (Views: 0.6ms | ActiveRecord: 0.6ms)
|
1570
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1571
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1572
|
+
|
1573
|
+
|
1574
|
+
Started GET "/posts/1" for 127.0.0.1 at 2013-02-11 13:00:51 +0100
|
1575
|
+
Processing by PostsController#show as HTML
|
1576
|
+
Parameters: {"id"=>"1"}
|
1577
|
+
[1m[35mPost Load (0.0ms)[0m SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", "1"]]
|
1578
|
+
Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
|
1579
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
1580
|
+
Connecting to database specified by database.yml
|
1581
|
+
[1m[36m (3.3ms)[0m [1mbegin transaction[0m
|
1582
|
+
[1m[35mFixture Delete (0.6ms)[0m DELETE FROM "posts"
|
1583
|
+
[1m[36mFixture Insert (0.4ms)[0m [1mINSERT INTO "posts" ("id", "title", "content", "created_at", "updated_at") VALUES (1, 'First post', 'Content of the first post', '2013-02-11 12:01:18', '2013-02-11 12:01:18')[0m
|
1584
|
+
[1m[35mFixture Insert (0.3ms)[0m INSERT INTO "posts" ("id", "title", "content", "created_at", "updated_at") VALUES (2, 'Second post', 'Content of the second post', '2013-02-11 12:01:18', '2013-02-11 12:01:18')
|
1585
|
+
[1m[36mFixture Delete (0.1ms)[0m [1mDELETE FROM "comments"[0m
|
1586
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "comments" ("content", "created_at", "updated_at", "id", "post_id") VALUES ('You are right.', '2013-02-11 12:01:18', '2013-02-11 12:01:18', 554292058, 655213220)
|
1587
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT INTO "comments" ("content", "created_at", "updated_at", "id", "post_id") VALUES ('You are wrong.', '2013-02-11 12:01:18', '2013-02-11 12:01:18', 939557606, 655213220)[0m
|
1588
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "comments" ("content", "created_at", "updated_at", "id", "post_id") VALUES ('You are both right and wrong.', '2013-02-11 12:01:18', '2013-02-11 12:01:18', 252162679, 1040487196)
|
1589
|
+
[1m[36m (4.0ms)[0m [1mcommit transaction[0m
|
1590
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1591
|
+
|
1592
|
+
|
1593
|
+
Started GET "/posts" for 127.0.0.1 at 2013-02-11 13:01:18 +0100
|
1594
|
+
Processing by PostsController#index as HTML
|
1595
|
+
[1m[36mPost Load (0.3ms)[0m [1mSELECT "posts".* FROM "posts" [0m
|
1596
|
+
Completed 200 OK in 9ms (Views: 1.5ms | ActiveRecord: 0.3ms)
|
1597
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1598
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1599
|
+
|
1600
|
+
|
1601
|
+
Started GET "/posts?include=comments" for 127.0.0.1 at 2013-02-11 13:01:18 +0100
|
1602
|
+
Processing by PostsController#index as HTML
|
1603
|
+
Parameters: {"include"=>"comments"}
|
1604
|
+
[1m[35mPost Load (0.1ms)[0m SELECT "posts".* FROM "posts"
|
1605
|
+
[1m[36mComment Load (0.4ms)[0m [1mSELECT "comments".* FROM "comments" WHERE "comments"."post_id" IN (1, 2)[0m
|
1606
|
+
Completed 200 OK in 44ms (Views: 0.7ms | ActiveRecord: 0.5ms)
|
1607
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1608
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1609
|
+
|
1610
|
+
|
1611
|
+
Started GET "/posts/1" for 127.0.0.1 at 2013-02-11 13:01:19 +0100
|
1612
|
+
Processing by PostsController#show as HTML
|
1613
|
+
Parameters: {"id"=>"1"}
|
1614
|
+
[1m[35mPost Load (1.3ms)[0m SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", "1"]]
|
1615
|
+
Completed 200 OK in 3ms (Views: 0.4ms | ActiveRecord: 1.3ms)
|
1616
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
1617
|
+
Connecting to database specified by database.yml
|
1618
|
+
[1m[36m (2.6ms)[0m [1mbegin transaction[0m
|
1619
|
+
[1m[35mFixture Delete (0.5ms)[0m DELETE FROM "posts"
|
1620
|
+
[1m[36mFixture Insert (0.7ms)[0m [1mINSERT INTO "posts" ("id", "title", "content", "created_at", "updated_at") VALUES (1, 'First post', 'Content of the first post', '2013-02-11 12:02:49', '2013-02-11 12:02:49')[0m
|
1621
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "posts" ("id", "title", "content", "created_at", "updated_at") VALUES (2, 'Second post', 'Content of the second post', '2013-02-11 12:02:49', '2013-02-11 12:02:49')
|
1622
|
+
[1m[36mFixture Delete (0.2ms)[0m [1mDELETE FROM "comments"[0m
|
1623
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "comments" ("content", "created_at", "updated_at", "id", "post_id") VALUES ('You are right.', '2013-02-11 12:02:49', '2013-02-11 12:02:49', 554292058, 655213220)
|
1624
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT INTO "comments" ("content", "created_at", "updated_at", "id", "post_id") VALUES ('You are wrong.', '2013-02-11 12:02:49', '2013-02-11 12:02:49', 939557606, 655213220)[0m
|
1625
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "comments" ("content", "created_at", "updated_at", "id", "post_id") VALUES ('You are both right and wrong.', '2013-02-11 12:02:49', '2013-02-11 12:02:49', 252162679, 1040487196)
|
1626
|
+
[1m[36m (8.5ms)[0m [1mcommit transaction[0m
|
1627
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1628
|
+
|
1629
|
+
|
1630
|
+
Started POST "/posts" for 127.0.0.1 at 2013-02-11 13:02:49 +0100
|
1631
|
+
Processing by PostsController#create as HTML
|
1632
|
+
Parameters: {"{\"id\":\"3\",\"title\":\"Third post\",\"content\":\"Content of the third post\"}"=>nil}
|
1633
|
+
[1m[36m (0.2ms)[0m [1mSAVEPOINT active_record_1[0m
|
1634
|
+
[1m[35mSQL (1.4ms)[0m INSERT INTO "posts" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", nil], ["created_at", Mon, 11 Feb 2013 12:02:49 UTC +00:00], ["title", nil], ["updated_at", Mon, 11 Feb 2013 12:02:49 UTC +00:00]]
|
1635
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1636
|
+
Completed 200 OK in 11ms (Views: 0.3ms | ActiveRecord: 1.6ms)
|
1637
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
1638
|
+
Connecting to database specified by database.yml
|
1639
|
+
[1m[36m (2.5ms)[0m [1mbegin transaction[0m
|
1640
|
+
[1m[35mFixture Delete (0.6ms)[0m DELETE FROM "posts"
|
1641
|
+
[1m[36mFixture Insert (0.5ms)[0m [1mINSERT INTO "posts" ("id", "title", "content", "created_at", "updated_at") VALUES (1, 'First post', 'Content of the first post', '2013-02-11 12:06:22', '2013-02-11 12:06:22')[0m
|
1642
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "posts" ("id", "title", "content", "created_at", "updated_at") VALUES (2, 'Second post', 'Content of the second post', '2013-02-11 12:06:22', '2013-02-11 12:06:22')
|
1643
|
+
[1m[36mFixture Delete (0.3ms)[0m [1mDELETE FROM "comments"[0m
|
1644
|
+
[1m[35mFixture Insert (0.0ms)[0m INSERT INTO "comments" ("content", "created_at", "updated_at", "id", "post_id") VALUES ('You are right.', '2013-02-11 12:06:22', '2013-02-11 12:06:22', 554292058, 655213220)
|
1645
|
+
[1m[36mFixture Insert (0.0ms)[0m [1mINSERT INTO "comments" ("content", "created_at", "updated_at", "id", "post_id") VALUES ('You are wrong.', '2013-02-11 12:06:22', '2013-02-11 12:06:22', 939557606, 655213220)[0m
|
1646
|
+
[1m[35mFixture Insert (0.0ms)[0m INSERT INTO "comments" ("content", "created_at", "updated_at", "id", "post_id") VALUES ('You are both right and wrong.', '2013-02-11 12:06:22', '2013-02-11 12:06:22', 252162679, 1040487196)
|
1647
|
+
[1m[36m (14.1ms)[0m [1mcommit transaction[0m
|
1648
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1649
|
+
|
1650
|
+
|
1651
|
+
Started POST "/posts" for 127.0.0.1 at 2013-02-11 13:06:22 +0100
|
1652
|
+
Processing by PostsController#create as HTML
|
1653
|
+
Parameters: {"{\"id\":\"3\",\"title\":\"Third post\",\"content\":\"Content of the third post\"}"=>nil}
|
1654
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1655
|
+
[1m[35mSQL (1.4ms)[0m INSERT INTO "posts" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", nil], ["created_at", Mon, 11 Feb 2013 12:06:22 UTC +00:00], ["title", nil], ["updated_at", Mon, 11 Feb 2013 12:06:22 UTC +00:00]]
|
1656
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1657
|
+
Completed 200 OK in 10ms (Views: 0.3ms | ActiveRecord: 1.5ms)
|
1658
|
+
[1m[35m (0.4ms)[0m rollback transaction
|
1659
|
+
Connecting to database specified by database.yml
|
1660
|
+
[1m[36m (2.4ms)[0m [1mbegin transaction[0m
|
1661
|
+
[1m[35mFixture Delete (1.3ms)[0m DELETE FROM "posts"
|
1662
|
+
[1m[36mFixture Insert (0.0ms)[0m [1mINSERT INTO "posts" ("id", "title", "content", "created_at", "updated_at") VALUES (1, 'First post', 'Content of the first post', '2013-02-11 12:07:40', '2013-02-11 12:07:40')[0m
|
1663
|
+
[1m[35mFixture Insert (0.0ms)[0m INSERT INTO "posts" ("id", "title", "content", "created_at", "updated_at") VALUES (2, 'Second post', 'Content of the second post', '2013-02-11 12:07:40', '2013-02-11 12:07:40')
|
1664
|
+
[1m[36mFixture Delete (0.0ms)[0m [1mDELETE FROM "comments"[0m
|
1665
|
+
[1m[35mFixture Insert (0.0ms)[0m INSERT INTO "comments" ("content", "created_at", "updated_at", "id", "post_id") VALUES ('You are right.', '2013-02-11 12:07:40', '2013-02-11 12:07:40', 554292058, 655213220)
|
1666
|
+
[1m[36mFixture Insert (0.0ms)[0m [1mINSERT INTO "comments" ("content", "created_at", "updated_at", "id", "post_id") VALUES ('You are wrong.', '2013-02-11 12:07:40', '2013-02-11 12:07:40', 939557606, 655213220)[0m
|
1667
|
+
[1m[35mFixture Insert (0.0ms)[0m INSERT INTO "comments" ("content", "created_at", "updated_at", "id", "post_id") VALUES ('You are both right and wrong.', '2013-02-11 12:07:40', '2013-02-11 12:07:40', 252162679, 1040487196)
|
1668
|
+
[1m[36m (16.1ms)[0m [1mcommit transaction[0m
|
1669
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1670
|
+
|
1671
|
+
|
1672
|
+
Started POST "/posts" for 127.0.0.1 at 2013-02-11 13:07:40 +0100
|
1673
|
+
Processing by PostsController#create as HTML
|
1674
|
+
Parameters: {"{\"id\":\"3\",\"title\":\"Third post\",\"content\":\"Content of the third post\"}"=>nil}
|
1675
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1676
|
+
[1m[35mSQL (1.5ms)[0m INSERT INTO "posts" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", nil], ["created_at", Mon, 11 Feb 2013 12:07:40 UTC +00:00], ["title", nil], ["updated_at", Mon, 11 Feb 2013 12:07:40 UTC +00:00]]
|
1677
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1678
|
+
Completed 200 OK in 11ms (Views: 0.4ms | ActiveRecord: 1.7ms)
|
1679
|
+
[1m[35m (0.8ms)[0m rollback transaction
|
1680
|
+
Connecting to database specified by database.yml
|
1681
|
+
[1m[36m (2.7ms)[0m [1mbegin transaction[0m
|
1682
|
+
[1m[35mFixture Delete (0.6ms)[0m DELETE FROM "posts"
|
1683
|
+
[1m[36mFixture Insert (0.5ms)[0m [1mINSERT INTO "posts" ("id", "title", "content", "created_at", "updated_at") VALUES (1, 'First post', 'Content of the first post', '2013-02-11 12:10:24', '2013-02-11 12:10:24')[0m
|
1684
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "posts" ("id", "title", "content", "created_at", "updated_at") VALUES (2, 'Second post', 'Content of the second post', '2013-02-11 12:10:24', '2013-02-11 12:10:24')
|
1685
|
+
[1m[36mFixture Delete (0.1ms)[0m [1mDELETE FROM "comments"[0m
|
1686
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "comments" ("content", "created_at", "updated_at", "id", "post_id") VALUES ('You are right.', '2013-02-11 12:10:24', '2013-02-11 12:10:24', 554292058, 655213220)
|
1687
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT INTO "comments" ("content", "created_at", "updated_at", "id", "post_id") VALUES ('You are wrong.', '2013-02-11 12:10:24', '2013-02-11 12:10:24', 939557606, 655213220)[0m
|
1688
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "comments" ("content", "created_at", "updated_at", "id", "post_id") VALUES ('You are both right and wrong.', '2013-02-11 12:10:24', '2013-02-11 12:10:24', 252162679, 1040487196)
|
1689
|
+
[1m[36m (3.9ms)[0m [1mcommit transaction[0m
|
1690
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1691
|
+
|
1692
|
+
|
1693
|
+
Started POST "/posts" for 127.0.0.1 at 2013-02-11 13:10:24 +0100
|
1694
|
+
Processing by PostsController#create as HTML
|
1695
|
+
Parameters: {"{\"id\":\"3\",\"title\":\"Third post\",\"content\":\"Content of the third post\"}"=>nil}
|
1696
|
+
[1m[36m (0.3ms)[0m [1mSAVEPOINT active_record_1[0m
|
1697
|
+
[1m[35mSQL (1.5ms)[0m INSERT INTO "posts" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", nil], ["created_at", Mon, 11 Feb 2013 12:10:24 UTC +00:00], ["title", nil], ["updated_at", Mon, 11 Feb 2013 12:10:24 UTC +00:00]]
|
1698
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1699
|
+
Completed 200 OK in 11ms (Views: 0.4ms | ActiveRecord: 1.9ms)
|
1700
|
+
[1m[35m (0.4ms)[0m rollback transaction
|
1701
|
+
Connecting to database specified by database.yml
|
1702
|
+
[1m[36m (2.4ms)[0m [1mbegin transaction[0m
|
1703
|
+
[1m[35mFixture Delete (0.8ms)[0m DELETE FROM "posts"
|
1704
|
+
[1m[36mFixture Insert (1.2ms)[0m [1mINSERT INTO "posts" ("id", "title", "content", "created_at", "updated_at") VALUES (1, 'First post', 'Content of the first post', '2013-02-11 12:10:36', '2013-02-11 12:10:36')[0m
|
1705
|
+
[1m[35mFixture Insert (0.2ms)[0m INSERT INTO "posts" ("id", "title", "content", "created_at", "updated_at") VALUES (2, 'Second post', 'Content of the second post', '2013-02-11 12:10:36', '2013-02-11 12:10:36')
|
1706
|
+
[1m[36mFixture Delete (0.0ms)[0m [1mDELETE FROM "comments"[0m
|
1707
|
+
[1m[35mFixture Insert (0.0ms)[0m INSERT INTO "comments" ("content", "created_at", "updated_at", "id", "post_id") VALUES ('You are right.', '2013-02-11 12:10:37', '2013-02-11 12:10:37', 554292058, 655213220)
|
1708
|
+
[1m[36mFixture Insert (0.0ms)[0m [1mINSERT INTO "comments" ("content", "created_at", "updated_at", "id", "post_id") VALUES ('You are wrong.', '2013-02-11 12:10:37', '2013-02-11 12:10:37', 939557606, 655213220)[0m
|
1709
|
+
[1m[35mFixture Insert (0.0ms)[0m INSERT INTO "comments" ("content", "created_at", "updated_at", "id", "post_id") VALUES ('You are both right and wrong.', '2013-02-11 12:10:37', '2013-02-11 12:10:37', 252162679, 1040487196)
|
1710
|
+
[1m[36m (1.8ms)[0m [1mcommit transaction[0m
|
1711
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1712
|
+
|
1713
|
+
|
1714
|
+
Started POST "/posts" for 127.0.0.1 at 2013-02-11 13:10:37 +0100
|
1715
|
+
Processing by PostsController#create as HTML
|
1716
|
+
Parameters: {"{\"id\":\"3\",\"title\":\"Third post\",\"content\":\"Content of the third post\"}"=>nil}
|
1717
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1718
|
+
[1m[35mSQL (1.4ms)[0m INSERT INTO "posts" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", nil], ["created_at", Mon, 11 Feb 2013 12:10:37 UTC +00:00], ["title", nil], ["updated_at", Mon, 11 Feb 2013 12:10:37 UTC +00:00]]
|
1719
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1720
|
+
Completed 200 OK in 10ms (Views: 0.3ms | ActiveRecord: 1.6ms)
|
1721
|
+
[1m[35m (1.1ms)[0m rollback transaction
|
1722
|
+
Connecting to database specified by database.yml
|
1723
|
+
[1m[36m (3.0ms)[0m [1mbegin transaction[0m
|
1724
|
+
[1m[35mFixture Delete (0.7ms)[0m DELETE FROM "posts"
|
1725
|
+
[1m[36mFixture Insert (0.4ms)[0m [1mINSERT INTO "posts" ("id", "title", "content", "created_at", "updated_at") VALUES (1, 'First post', 'Content of the first post', '2013-02-11 12:14:16', '2013-02-11 12:14:16')[0m
|
1726
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "posts" ("id", "title", "content", "created_at", "updated_at") VALUES (2, 'Second post', 'Content of the second post', '2013-02-11 12:14:16', '2013-02-11 12:14:16')
|
1727
|
+
[1m[36mFixture Delete (0.3ms)[0m [1mDELETE FROM "comments"[0m
|
1728
|
+
[1m[35mFixture Insert (0.0ms)[0m INSERT INTO "comments" ("content", "created_at", "updated_at", "id", "post_id") VALUES ('You are right.', '2013-02-11 12:14:16', '2013-02-11 12:14:16', 554292058, 655213220)
|
1729
|
+
[1m[36mFixture Insert (0.0ms)[0m [1mINSERT INTO "comments" ("content", "created_at", "updated_at", "id", "post_id") VALUES ('You are wrong.', '2013-02-11 12:14:16', '2013-02-11 12:14:16', 939557606, 655213220)[0m
|
1730
|
+
[1m[35mFixture Insert (0.0ms)[0m INSERT INTO "comments" ("content", "created_at", "updated_at", "id", "post_id") VALUES ('You are both right and wrong.', '2013-02-11 12:14:16', '2013-02-11 12:14:16', 252162679, 1040487196)
|
1731
|
+
[1m[36m (16.4ms)[0m [1mcommit transaction[0m
|
1732
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1733
|
+
|
1734
|
+
|
1735
|
+
Started POST "/posts" for 127.0.0.1 at 2013-02-11 13:14:17 +0100
|
1736
|
+
Processing by PostsController#create as HTML
|
1737
|
+
Parameters: {"id"=>"3", "title"=>"Third post", "content"=>"Content of the third post", "post"=>{"content"=>"Content of the third post", "title"=>"Third post"}}
|
1738
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1739
|
+
[1m[35mSQL (1.8ms)[0m INSERT INTO "posts" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "Content of the third post"], ["created_at", Mon, 11 Feb 2013 12:14:17 UTC +00:00], ["title", "Third post"], ["updated_at", Mon, 11 Feb 2013 12:14:17 UTC +00:00]]
|
1740
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1741
|
+
Completed 200 OK in 12ms (Views: 0.3ms | ActiveRecord: 2.0ms)
|
1742
|
+
[1m[35m (0.8ms)[0m rollback transaction
|
1743
|
+
Connecting to database specified by database.yml
|
1744
|
+
[1m[36m (3.2ms)[0m [1mbegin transaction[0m
|
1745
|
+
[1m[35mFixture Delete (0.5ms)[0m DELETE FROM "posts"
|
1746
|
+
[1m[36mFixture Insert (0.4ms)[0m [1mINSERT INTO "posts" ("id", "title", "content", "created_at", "updated_at") VALUES (1, 'First post', 'Content of the first post', '2013-02-11 12:16:07', '2013-02-11 12:16:07')[0m
|
1747
|
+
[1m[35mFixture Insert (0.0ms)[0m INSERT INTO "posts" ("id", "title", "content", "created_at", "updated_at") VALUES (2, 'Second post', 'Content of the second post', '2013-02-11 12:16:07', '2013-02-11 12:16:07')
|
1748
|
+
[1m[36mFixture Delete (0.1ms)[0m [1mDELETE FROM "comments"[0m
|
1749
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "comments" ("content", "created_at", "updated_at", "id", "post_id") VALUES ('You are right.', '2013-02-11 12:16:07', '2013-02-11 12:16:07', 554292058, 655213220)
|
1750
|
+
[1m[36mFixture Insert (0.0ms)[0m [1mINSERT INTO "comments" ("content", "created_at", "updated_at", "id", "post_id") VALUES ('You are wrong.', '2013-02-11 12:16:07', '2013-02-11 12:16:07', 939557606, 655213220)[0m
|
1751
|
+
[1m[35mFixture Insert (0.2ms)[0m INSERT INTO "comments" ("content", "created_at", "updated_at", "id", "post_id") VALUES ('You are both right and wrong.', '2013-02-11 12:16:07', '2013-02-11 12:16:07', 252162679, 1040487196)
|
1752
|
+
[1m[36m (18.0ms)[0m [1mcommit transaction[0m
|
1753
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1754
|
+
|
1755
|
+
|
1756
|
+
Started POST "/posts" for 127.0.0.1 at 2013-02-11 13:16:07 +0100
|
1757
|
+
Processing by PostsController#create as HTML
|
1758
|
+
Parameters: {"id"=>3, "title"=>"Third post", "content"=>"Content of the third post", "post"=>{"content"=>"Content of the third post", "title"=>"Third post"}}
|
1759
|
+
[1m[36m (0.7ms)[0m [1mSAVEPOINT active_record_1[0m
|
1760
|
+
[1m[35mSQL (1.4ms)[0m INSERT INTO "posts" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "Content of the third post"], ["created_at", Mon, 11 Feb 2013 12:16:07 UTC +00:00], ["title", "Third post"], ["updated_at", Mon, 11 Feb 2013 12:16:07 UTC +00:00]]
|
1761
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1762
|
+
Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 2.1ms)
|
1763
|
+
[1m[35m (0.8ms)[0m rollback transaction
|
1764
|
+
Connecting to database specified by database.yml
|
1765
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1766
|
+
[1m[35mFixture Delete (1.3ms)[0m DELETE FROM "posts"
|
1767
|
+
[1m[36mFixture Insert (0.9ms)[0m [1mINSERT INTO "posts" ("id", "title", "content", "created_at", "updated_at") VALUES (1, 'First post', 'Content of the first post', '2013-02-11 12:17:20', '2013-02-11 12:17:20')[0m
|
1768
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "posts" ("id", "title", "content", "created_at", "updated_at") VALUES (2, 'Second post', 'Content of the second post', '2013-02-11 12:17:20', '2013-02-11 12:17:20')
|
1769
|
+
[1m[36mFixture Delete (0.1ms)[0m [1mDELETE FROM "comments"[0m
|
1770
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "comments" ("content", "created_at", "updated_at", "id", "post_id") VALUES ('You are right.', '2013-02-11 12:17:20', '2013-02-11 12:17:20', 554292058, 655213220)
|
1771
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT INTO "comments" ("content", "created_at", "updated_at", "id", "post_id") VALUES ('You are wrong.', '2013-02-11 12:17:20', '2013-02-11 12:17:20', 939557606, 655213220)[0m
|
1772
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "comments" ("content", "created_at", "updated_at", "id", "post_id") VALUES ('You are both right and wrong.', '2013-02-11 12:17:20', '2013-02-11 12:17:20', 252162679, 1040487196)
|
1773
|
+
[1m[36m (4.8ms)[0m [1mcommit transaction[0m
|
1774
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1775
|
+
|
1776
|
+
|
1777
|
+
Started POST "/posts" for 127.0.0.1 at 2013-02-11 13:17:20 +0100
|
1778
|
+
Processing by PostsController#create as HTML
|
1779
|
+
Parameters: {"title"=>"Third post", "content"=>"Content of the third post", "post"=>{"content"=>"Content of the third post", "title"=>"Third post"}}
|
1780
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1781
|
+
[1m[35mSQL (0.8ms)[0m INSERT INTO "posts" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "Content of the third post"], ["created_at", Mon, 11 Feb 2013 12:17:20 UTC +00:00], ["title", "Third post"], ["updated_at", Mon, 11 Feb 2013 12:17:20 UTC +00:00]]
|
1782
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1783
|
+
Completed 200 OK in 11ms (Views: 0.4ms | ActiveRecord: 1.0ms)
|
1784
|
+
[1m[35m (0.8ms)[0m rollback transaction
|
1785
|
+
Connecting to database specified by database.yml
|
1786
|
+
[1m[36m (3.2ms)[0m [1mbegin transaction[0m
|
1787
|
+
[1m[35mFixture Delete (0.5ms)[0m DELETE FROM "posts"
|
1788
|
+
[1m[36mFixture Insert (0.3ms)[0m [1mINSERT INTO "posts" ("id", "title", "content", "created_at", "updated_at") VALUES (1, 'First post', 'Content of the first post', '2013-02-11 12:18:50', '2013-02-11 12:18:50')[0m
|
1789
|
+
[1m[35mFixture Insert (0.0ms)[0m INSERT INTO "posts" ("id", "title", "content", "created_at", "updated_at") VALUES (2, 'Second post', 'Content of the second post', '2013-02-11 12:18:50', '2013-02-11 12:18:50')
|
1790
|
+
[1m[36mFixture Delete (0.0ms)[0m [1mDELETE FROM "comments"[0m
|
1791
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "comments" ("content", "created_at", "updated_at", "id", "post_id") VALUES ('You are right.', '2013-02-11 12:18:50', '2013-02-11 12:18:50', 554292058, 655213220)
|
1792
|
+
[1m[36mFixture Insert (0.0ms)[0m [1mINSERT INTO "comments" ("content", "created_at", "updated_at", "id", "post_id") VALUES ('You are wrong.', '2013-02-11 12:18:50', '2013-02-11 12:18:50', 939557606, 655213220)[0m
|
1793
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "comments" ("content", "created_at", "updated_at", "id", "post_id") VALUES ('You are both right and wrong.', '2013-02-11 12:18:50', '2013-02-11 12:18:50', 252162679, 1040487196)
|
1794
|
+
[1m[36m (5.0ms)[0m [1mcommit transaction[0m
|
1795
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1796
|
+
|
1797
|
+
|
1798
|
+
Started POST "/posts" for 127.0.0.1 at 2013-02-11 13:18:50 +0100
|
1799
|
+
Processing by PostsController#create as HTML
|
1800
|
+
Parameters: {"title"=>"Third post", "content"=>"Content of the third post", "post"=>{"content"=>"Content of the third post", "title"=>"Third post"}}
|
1801
|
+
[1m[36m (0.2ms)[0m [1mSAVEPOINT active_record_1[0m
|
1802
|
+
[1m[35mSQL (2.3ms)[0m INSERT INTO "posts" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "Content of the third post"], ["created_at", Mon, 11 Feb 2013 12:18:50 UTC +00:00], ["title", "Third post"], ["updated_at", Mon, 11 Feb 2013 12:18:50 UTC +00:00]]
|
1803
|
+
[1m[36m (0.2ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1804
|
+
Completed 200 OK in 12ms (Views: 0.0ms | ActiveRecord: 2.6ms)
|
1805
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1806
|
+
Connecting to database specified by database.yml
|
1807
|
+
[1m[36m (2.7ms)[0m [1mbegin transaction[0m
|
1808
|
+
[1m[35mFixture Delete (0.5ms)[0m DELETE FROM "posts"
|
1809
|
+
[1m[36mFixture Insert (1.2ms)[0m [1mINSERT INTO "posts" ("id", "title", "content", "created_at", "updated_at") VALUES (1, 'First post', 'Content of the first post', '2013-02-11 12:19:04', '2013-02-11 12:19:04')[0m
|
1810
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "posts" ("id", "title", "content", "created_at", "updated_at") VALUES (2, 'Second post', 'Content of the second post', '2013-02-11 12:19:04', '2013-02-11 12:19:04')
|
1811
|
+
[1m[36mFixture Delete (0.1ms)[0m [1mDELETE FROM "comments"[0m
|
1812
|
+
[1m[35mFixture Insert (0.2ms)[0m INSERT INTO "comments" ("content", "created_at", "updated_at", "id", "post_id") VALUES ('You are right.', '2013-02-11 12:19:05', '2013-02-11 12:19:05', 554292058, 655213220)
|
1813
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT INTO "comments" ("content", "created_at", "updated_at", "id", "post_id") VALUES ('You are wrong.', '2013-02-11 12:19:05', '2013-02-11 12:19:05', 939557606, 655213220)[0m
|
1814
|
+
[1m[35mFixture Insert (0.2ms)[0m INSERT INTO "comments" ("content", "created_at", "updated_at", "id", "post_id") VALUES ('You are both right and wrong.', '2013-02-11 12:19:05', '2013-02-11 12:19:05', 252162679, 1040487196)
|
1815
|
+
[1m[36m (4.9ms)[0m [1mcommit transaction[0m
|
1816
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1817
|
+
|
1818
|
+
|
1819
|
+
Started POST "/posts" for 127.0.0.1 at 2013-02-11 13:19:05 +0100
|
1820
|
+
Processing by PostsController#create as HTML
|
1821
|
+
Parameters: {"title"=>"Third post", "content"=>"Content of the third post", "post"=>{"content"=>"Content of the third post", "title"=>"Third post"}}
|
1822
|
+
[1m[36m (1.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1823
|
+
[1m[35mSQL (1.4ms)[0m INSERT INTO "posts" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "Content of the third post"], ["created_at", Mon, 11 Feb 2013 12:19:05 UTC +00:00], ["title", "Third post"], ["updated_at", Mon, 11 Feb 2013 12:19:05 UTC +00:00]]
|
1824
|
+
[1m[36m (0.2ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1825
|
+
Completed 200 OK in 12ms (Views: 0.3ms | ActiveRecord: 2.6ms)
|
1826
|
+
[1m[35m (0.8ms)[0m rollback transaction
|
1827
|
+
Connecting to database specified by database.yml
|
1828
|
+
[1m[36m (3.2ms)[0m [1mbegin transaction[0m
|
1829
|
+
[1m[35mFixture Delete (2.3ms)[0m DELETE FROM "posts"
|
1830
|
+
[1m[36mFixture Insert (1.1ms)[0m [1mINSERT INTO "posts" ("id", "title", "content", "created_at", "updated_at") VALUES (1, 'First post', 'Content of the first post', '2013-02-11 12:22:53', '2013-02-11 12:22:53')[0m
|
1831
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "posts" ("id", "title", "content", "created_at", "updated_at") VALUES (2, 'Second post', 'Content of the second post', '2013-02-11 12:22:53', '2013-02-11 12:22:53')
|
1832
|
+
[1m[36mFixture Delete (0.1ms)[0m [1mDELETE FROM "comments"[0m
|
1833
|
+
[1m[35mFixture Insert (0.0ms)[0m INSERT INTO "comments" ("content", "created_at", "updated_at", "id", "post_id") VALUES ('You are right.', '2013-02-11 12:22:53', '2013-02-11 12:22:53', 554292058, 655213220)
|
1834
|
+
[1m[36mFixture Insert (0.0ms)[0m [1mINSERT INTO "comments" ("content", "created_at", "updated_at", "id", "post_id") VALUES ('You are wrong.', '2013-02-11 12:22:53', '2013-02-11 12:22:53', 939557606, 655213220)[0m
|
1835
|
+
[1m[35mFixture Insert (0.0ms)[0m INSERT INTO "comments" ("content", "created_at", "updated_at", "id", "post_id") VALUES ('You are both right and wrong.', '2013-02-11 12:22:53', '2013-02-11 12:22:53', 252162679, 1040487196)
|
1836
|
+
[1m[36m (5.7ms)[0m [1mcommit transaction[0m
|
1837
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1838
|
+
|
1839
|
+
|
1840
|
+
Started POST "/posts" for 127.0.0.1 at 2013-02-11 13:22:53 +0100
|
1841
|
+
Processing by PostsController#create as HTML
|
1842
|
+
Parameters: {"title"=>"Third post", "content"=>"Content of the third post", "post"=>{"content"=>"Content of the third post", "title"=>"Third post"}}
|
1843
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1844
|
+
[1m[35mSQL (1.6ms)[0m INSERT INTO "posts" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "Content of the third post"], ["created_at", Mon, 11 Feb 2013 12:22:53 UTC +00:00], ["title", "Third post"], ["updated_at", Mon, 11 Feb 2013 12:22:53 UTC +00:00]]
|
1845
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1846
|
+
Completed 200 OK in 11ms (Views: 0.4ms | ActiveRecord: 1.7ms)
|
1847
|
+
[1m[35m (0.3ms)[0m rollback transaction
|
1848
|
+
Connecting to database specified by database.yml
|
1849
|
+
[1m[36m (3.0ms)[0m [1mbegin transaction[0m
|
1850
|
+
[1m[35mFixture Delete (0.5ms)[0m DELETE FROM "posts"
|
1851
|
+
[1m[36mFixture Insert (1.1ms)[0m [1mINSERT INTO "posts" ("id", "title", "content", "created_at", "updated_at") VALUES (1, 'First post', 'Content of the first post', '2013-02-11 12:23:08', '2013-02-11 12:23:08')[0m
|
1852
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "posts" ("id", "title", "content", "created_at", "updated_at") VALUES (2, 'Second post', 'Content of the second post', '2013-02-11 12:23:08', '2013-02-11 12:23:08')
|
1853
|
+
[1m[36mFixture Delete (0.3ms)[0m [1mDELETE FROM "comments"[0m
|
1854
|
+
[1m[35mFixture Insert (0.0ms)[0m INSERT INTO "comments" ("content", "created_at", "updated_at", "id", "post_id") VALUES ('You are right.', '2013-02-11 12:23:08', '2013-02-11 12:23:08', 554292058, 655213220)
|
1855
|
+
[1m[36mFixture Insert (0.0ms)[0m [1mINSERT INTO "comments" ("content", "created_at", "updated_at", "id", "post_id") VALUES ('You are wrong.', '2013-02-11 12:23:08', '2013-02-11 12:23:08', 939557606, 655213220)[0m
|
1856
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "comments" ("content", "created_at", "updated_at", "id", "post_id") VALUES ('You are both right and wrong.', '2013-02-11 12:23:08', '2013-02-11 12:23:08', 252162679, 1040487196)
|
1857
|
+
[1m[36m (97.2ms)[0m [1mcommit transaction[0m
|
1858
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1859
|
+
|
1860
|
+
|
1861
|
+
Started POST "/posts" for 127.0.0.1 at 2013-02-11 13:23:08 +0100
|
1862
|
+
Processing by PostsController#create as HTML
|
1863
|
+
Parameters: {"title"=>"Third post", "content"=>"Content of the third post", "post"=>{"content"=>"Content of the third post", "title"=>"Third post"}}
|
1864
|
+
[1m[36m (1.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1865
|
+
[1m[35mSQL (1.4ms)[0m INSERT INTO "posts" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "Content of the third post"], ["created_at", Mon, 11 Feb 2013 12:23:08 UTC +00:00], ["title", "Third post"], ["updated_at", Mon, 11 Feb 2013 12:23:08 UTC +00:00]]
|
1866
|
+
[1m[36m (0.3ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1867
|
+
Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 2.7ms)
|
1868
|
+
[1m[35m (0.4ms)[0m rollback transaction
|
1869
|
+
Connecting to database specified by database.yml
|
1870
|
+
[1m[36m (1.7ms)[0m [1mbegin transaction[0m
|
1871
|
+
[1m[35mFixture Delete (0.5ms)[0m DELETE FROM "posts"
|
1872
|
+
[1m[36mFixture Insert (0.7ms)[0m [1mINSERT INTO "posts" ("id", "title", "content", "created_at", "updated_at") VALUES (1, 'First post', 'Content of the first post', '2013-02-11 12:23:33', '2013-02-11 12:23:33')[0m
|
1873
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "posts" ("id", "title", "content", "created_at", "updated_at") VALUES (2, 'Second post', 'Content of the second post', '2013-02-11 12:23:33', '2013-02-11 12:23:33')
|
1874
|
+
[1m[36mFixture Delete (0.1ms)[0m [1mDELETE FROM "comments"[0m
|
1875
|
+
[1m[35mFixture Insert (0.0ms)[0m INSERT INTO "comments" ("content", "created_at", "updated_at", "id", "post_id") VALUES ('You are right.', '2013-02-11 12:23:33', '2013-02-11 12:23:33', 554292058, 655213220)
|
1876
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT INTO "comments" ("content", "created_at", "updated_at", "id", "post_id") VALUES ('You are wrong.', '2013-02-11 12:23:33', '2013-02-11 12:23:33', 939557606, 655213220)[0m
|
1877
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "comments" ("content", "created_at", "updated_at", "id", "post_id") VALUES ('You are both right and wrong.', '2013-02-11 12:23:33', '2013-02-11 12:23:33', 252162679, 1040487196)
|
1878
|
+
[1m[36m (4.9ms)[0m [1mcommit transaction[0m
|
1879
|
+
[1m[35m (0.2ms)[0m begin transaction
|
1880
|
+
|
1881
|
+
|
1882
|
+
Started POST "/posts" for 127.0.0.1 at 2013-02-11 13:23:33 +0100
|
1883
|
+
Processing by PostsController#create as HTML
|
1884
|
+
Parameters: {"title"=>"Third post", "content"=>"Content of the third post", "post"=>{"content"=>"Content of the third post", "title"=>"Third post"}}
|
1885
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1886
|
+
[1m[35mSQL (1.5ms)[0m INSERT INTO "posts" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "Content of the third post"], ["created_at", Mon, 11 Feb 2013 12:23:33 UTC +00:00], ["title", "Third post"], ["updated_at", Mon, 11 Feb 2013 12:23:33 UTC +00:00]]
|
1887
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1888
|
+
Completed 200 OK in 13ms (Views: 0.4ms | ActiveRecord: 1.7ms)
|
1889
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1890
|
+
Connecting to database specified by database.yml
|
1891
|
+
[1m[36m (2.6ms)[0m [1mbegin transaction[0m
|
1892
|
+
[1m[35mFixture Delete (0.5ms)[0m DELETE FROM "posts"
|
1893
|
+
[1m[36mFixture Insert (0.5ms)[0m [1mINSERT INTO "posts" ("id", "title", "content", "created_at", "updated_at") VALUES (1, 'First post', 'Content of the first post', '2013-02-11 12:25:01', '2013-02-11 12:25:01')[0m
|
1894
|
+
[1m[35mFixture Insert (0.3ms)[0m INSERT INTO "posts" ("id", "title", "content", "created_at", "updated_at") VALUES (2, 'Second post', 'Content of the second post', '2013-02-11 12:25:01', '2013-02-11 12:25:01')
|
1895
|
+
[1m[36mFixture Delete (0.2ms)[0m [1mDELETE FROM "comments"[0m
|
1896
|
+
[1m[35mFixture Insert (0.3ms)[0m INSERT INTO "comments" ("content", "created_at", "updated_at", "id", "post_id") VALUES ('You are right.', '2013-02-11 12:25:01', '2013-02-11 12:25:01', 554292058, 655213220)
|
1897
|
+
[1m[36mFixture Insert (0.0ms)[0m [1mINSERT INTO "comments" ("content", "created_at", "updated_at", "id", "post_id") VALUES ('You are wrong.', '2013-02-11 12:25:01', '2013-02-11 12:25:01', 939557606, 655213220)[0m
|
1898
|
+
[1m[35mFixture Insert (0.5ms)[0m INSERT INTO "comments" ("content", "created_at", "updated_at", "id", "post_id") VALUES ('You are both right and wrong.', '2013-02-11 12:25:01', '2013-02-11 12:25:01', 252162679, 1040487196)
|
1899
|
+
[1m[36m (4.2ms)[0m [1mcommit transaction[0m
|
1900
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1901
|
+
|
1902
|
+
|
1903
|
+
Started POST "/posts" for 127.0.0.1 at 2013-02-11 13:25:01 +0100
|
1904
|
+
Processing by PostsController#create as HTML
|
1905
|
+
Parameters: {"title"=>"Third post", "content"=>"Content of the third post", "post"=>{"content"=>"Content of the third post", "title"=>"Third post"}}
|
1906
|
+
[1m[36m (1.8ms)[0m [1mSAVEPOINT active_record_1[0m
|
1907
|
+
[1m[35mSQL (2.2ms)[0m INSERT INTO "posts" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "Content of the third post"], ["created_at", Mon, 11 Feb 2013 12:25:01 UTC +00:00], ["title", "Third post"], ["updated_at", Mon, 11 Feb 2013 12:25:01 UTC +00:00]]
|
1908
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1909
|
+
Completed 200 OK in 12ms (Views: 0.3ms | ActiveRecord: 4.0ms)
|
1910
|
+
[1m[35m (0.8ms)[0m rollback transaction
|
1911
|
+
Connecting to database specified by database.yml
|
1912
|
+
[1m[36m (3.2ms)[0m [1mbegin transaction[0m
|
1913
|
+
[1m[35mFixture Delete (0.6ms)[0m DELETE FROM "posts"
|
1914
|
+
[1m[36mFixture Insert (0.4ms)[0m [1mINSERT INTO "posts" ("id", "title", "content", "created_at", "updated_at") VALUES (1, 'First post', 'Content of the first post', '2013-02-11 12:25:09', '2013-02-11 12:25:09')[0m
|
1915
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "posts" ("id", "title", "content", "created_at", "updated_at") VALUES (2, 'Second post', 'Content of the second post', '2013-02-11 12:25:09', '2013-02-11 12:25:09')
|
1916
|
+
[1m[36mFixture Delete (0.1ms)[0m [1mDELETE FROM "comments"[0m
|
1917
|
+
[1m[35mFixture Insert (0.2ms)[0m INSERT INTO "comments" ("content", "created_at", "updated_at", "id", "post_id") VALUES ('You are right.', '2013-02-11 12:25:09', '2013-02-11 12:25:09', 554292058, 655213220)
|
1918
|
+
[1m[36mFixture Insert (0.0ms)[0m [1mINSERT INTO "comments" ("content", "created_at", "updated_at", "id", "post_id") VALUES ('You are wrong.', '2013-02-11 12:25:09', '2013-02-11 12:25:09', 939557606, 655213220)[0m
|
1919
|
+
[1m[35mFixture Insert (0.2ms)[0m INSERT INTO "comments" ("content", "created_at", "updated_at", "id", "post_id") VALUES ('You are both right and wrong.', '2013-02-11 12:25:09', '2013-02-11 12:25:09', 252162679, 1040487196)
|
1920
|
+
[1m[36m (3.9ms)[0m [1mcommit transaction[0m
|
1921
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1922
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
1923
|
+
Connecting to database specified by database.yml
|
1924
|
+
[1m[36m (2.4ms)[0m [1mbegin transaction[0m
|
1925
|
+
[1m[35mFixture Delete (0.4ms)[0m DELETE FROM "posts"
|
1926
|
+
[1m[36mFixture Insert (0.4ms)[0m [1mINSERT INTO "posts" ("id", "title", "content", "created_at", "updated_at") VALUES (1, 'First post', 'Content of the first post', '2013-02-11 12:26:03', '2013-02-11 12:26:03')[0m
|
1927
|
+
[1m[35mFixture Insert (0.2ms)[0m INSERT INTO "posts" ("id", "title", "content", "created_at", "updated_at") VALUES (2, 'Second post', 'Content of the second post', '2013-02-11 12:26:03', '2013-02-11 12:26:03')
|
1928
|
+
[1m[36mFixture Delete (0.1ms)[0m [1mDELETE FROM "comments"[0m
|
1929
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "comments" ("content", "created_at", "updated_at", "id", "post_id") VALUES ('You are right.', '2013-02-11 12:26:03', '2013-02-11 12:26:03', 554292058, 655213220)
|
1930
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT INTO "comments" ("content", "created_at", "updated_at", "id", "post_id") VALUES ('You are wrong.', '2013-02-11 12:26:03', '2013-02-11 12:26:03', 939557606, 655213220)[0m
|
1931
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "comments" ("content", "created_at", "updated_at", "id", "post_id") VALUES ('You are both right and wrong.', '2013-02-11 12:26:03', '2013-02-11 12:26:03', 252162679, 1040487196)
|
1932
|
+
[1m[36m (4.4ms)[0m [1mcommit transaction[0m
|
1933
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1934
|
+
|
1935
|
+
|
1936
|
+
Started PUT "/posts/2" for 127.0.0.1 at 2013-02-11 13:26:03 +0100
|
1937
|
+
Processing by PostsController#update as HTML
|
1938
|
+
Parameters: {"title"=>"Changed post", "content"=>"Content of the changed post", "id"=>"2", "post"=>{"content"=>"Content of the changed post", "title"=>"Changed post"}}
|
1939
|
+
[1m[36mPost Load (0.4ms)[0m [1mSELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1[0m [["id", "2"]]
|
1940
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1941
|
+
[1m[36m (1.1ms)[0m [1mUPDATE "posts" SET "content" = 'Content of the changed post', "title" = 'Changed post', "updated_at" = '2013-02-11 12:26:03.760887' WHERE "posts"."id" = 2[0m
|
1942
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1943
|
+
Completed 200 OK in 16ms (Views: 0.4ms | ActiveRecord: 1.7ms)
|
1944
|
+
[1m[36m (0.5ms)[0m [1mrollback transaction[0m
|
1945
|
+
Connecting to database specified by database.yml
|
1946
|
+
[1m[36m (1.6ms)[0m [1mbegin transaction[0m
|
1947
|
+
[1m[35mFixture Delete (0.4ms)[0m DELETE FROM "posts"
|
1948
|
+
[1m[36mFixture Insert (1.2ms)[0m [1mINSERT INTO "posts" ("id", "title", "content", "created_at", "updated_at") VALUES (1, 'First post', 'Content of the first post', '2013-02-11 12:26:12', '2013-02-11 12:26:12')[0m
|
1949
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "posts" ("id", "title", "content", "created_at", "updated_at") VALUES (2, 'Second post', 'Content of the second post', '2013-02-11 12:26:12', '2013-02-11 12:26:12')
|
1950
|
+
[1m[36mFixture Delete (0.1ms)[0m [1mDELETE FROM "comments"[0m
|
1951
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "comments" ("content", "created_at", "updated_at", "id", "post_id") VALUES ('You are right.', '2013-02-11 12:26:12', '2013-02-11 12:26:12', 554292058, 655213220)
|
1952
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT INTO "comments" ("content", "created_at", "updated_at", "id", "post_id") VALUES ('You are wrong.', '2013-02-11 12:26:12', '2013-02-11 12:26:12', 939557606, 655213220)[0m
|
1953
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "comments" ("content", "created_at", "updated_at", "id", "post_id") VALUES ('You are both right and wrong.', '2013-02-11 12:26:12', '2013-02-11 12:26:12', 252162679, 1040487196)
|
1954
|
+
[1m[36m (18.0ms)[0m [1mcommit transaction[0m
|
1955
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1956
|
+
|
1957
|
+
|
1958
|
+
Started POST "/posts" for 127.0.0.1 at 2013-02-11 13:26:12 +0100
|
1959
|
+
Processing by PostsController#create as HTML
|
1960
|
+
Parameters: {"title"=>"Third post", "content"=>"Content of the third post", "post"=>{"content"=>"Content of the third post", "title"=>"Third post"}}
|
1961
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1962
|
+
[1m[35mSQL (1.2ms)[0m INSERT INTO "posts" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "Content of the third post"], ["created_at", Mon, 11 Feb 2013 12:26:12 UTC +00:00], ["title", "Third post"], ["updated_at", Mon, 11 Feb 2013 12:26:12 UTC +00:00]]
|
1963
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1964
|
+
Completed 200 OK in 11ms (Views: 0.2ms | ActiveRecord: 1.4ms)
|
1965
|
+
[1m[35m (0.3ms)[0m rollback transaction
|
1966
|
+
Connecting to database specified by database.yml
|
1967
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1968
|
+
[1m[35mFixture Delete (0.7ms)[0m DELETE FROM "posts"
|
1969
|
+
[1m[36mFixture Insert (1.2ms)[0m [1mINSERT INTO "posts" ("id", "title", "content", "created_at", "updated_at") VALUES (1, 'First post', 'Content of the first post', '2013-02-11 12:27:34', '2013-02-11 12:27:34')[0m
|
1970
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "posts" ("id", "title", "content", "created_at", "updated_at") VALUES (2, 'Second post', 'Content of the second post', '2013-02-11 12:27:34', '2013-02-11 12:27:34')
|
1971
|
+
[1m[36mFixture Delete (0.1ms)[0m [1mDELETE FROM "comments"[0m
|
1972
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "comments" ("content", "created_at", "updated_at", "id", "post_id") VALUES ('You are right.', '2013-02-11 12:27:34', '2013-02-11 12:27:34', 554292058, 655213220)
|
1973
|
+
[1m[36mFixture Insert (0.0ms)[0m [1mINSERT INTO "comments" ("content", "created_at", "updated_at", "id", "post_id") VALUES ('You are wrong.', '2013-02-11 12:27:34', '2013-02-11 12:27:34', 939557606, 655213220)[0m
|
1974
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "comments" ("content", "created_at", "updated_at", "id", "post_id") VALUES ('You are both right and wrong.', '2013-02-11 12:27:34', '2013-02-11 12:27:34', 252162679, 1040487196)
|
1975
|
+
[1m[36m (4.4ms)[0m [1mcommit transaction[0m
|
1976
|
+
[1m[35m (0.2ms)[0m begin transaction
|
1977
|
+
|
1978
|
+
|
1979
|
+
Started DELETE "/posts/2" for 127.0.0.1 at 2013-02-11 13:27:34 +0100
|
1980
|
+
Processing by PostsController#destroy as HTML
|
1981
|
+
Parameters: {"id"=>"2"}
|
1982
|
+
[1m[36mPost Load (0.5ms)[0m [1mSELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1[0m [["id", "2"]]
|
1983
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1984
|
+
[1m[36mSQL (0.4ms)[0m [1mDELETE FROM "posts" WHERE "posts"."id" = ?[0m [["id", 2]]
|
1985
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1986
|
+
Completed 200 OK in 12ms (Views: 1.1ms | ActiveRecord: 1.0ms)
|
1987
|
+
[1m[36m (0.6ms)[0m [1mrollback transaction[0m
|
1988
|
+
Connecting to database specified by database.yml
|
1989
|
+
[1m[36m (2.9ms)[0m [1mbegin transaction[0m
|
1990
|
+
[1m[35mFixture Delete (0.7ms)[0m DELETE FROM "posts"
|
1991
|
+
[1m[36mFixture Insert (0.7ms)[0m [1mINSERT INTO "posts" ("id", "title", "content", "created_at", "updated_at") VALUES (1, 'First post', 'Content of the first post', '2013-02-11 12:27:40', '2013-02-11 12:27:40')[0m
|
1992
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "posts" ("id", "title", "content", "created_at", "updated_at") VALUES (2, 'Second post', 'Content of the second post', '2013-02-11 12:27:40', '2013-02-11 12:27:40')
|
1993
|
+
[1m[36mFixture Delete (0.1ms)[0m [1mDELETE FROM "comments"[0m
|
1994
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "comments" ("content", "created_at", "updated_at", "id", "post_id") VALUES ('You are right.', '2013-02-11 12:27:40', '2013-02-11 12:27:40', 554292058, 655213220)
|
1995
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT INTO "comments" ("content", "created_at", "updated_at", "id", "post_id") VALUES ('You are wrong.', '2013-02-11 12:27:40', '2013-02-11 12:27:40', 939557606, 655213220)[0m
|
1996
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "comments" ("content", "created_at", "updated_at", "id", "post_id") VALUES ('You are both right and wrong.', '2013-02-11 12:27:40', '2013-02-11 12:27:40', 252162679, 1040487196)
|
1997
|
+
[1m[36m (3.9ms)[0m [1mcommit transaction[0m
|
1998
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1999
|
+
|
2000
|
+
|
2001
|
+
Started DELETE "/posts/2" for 127.0.0.1 at 2013-02-11 13:27:40 +0100
|
2002
|
+
Processing by PostsController#destroy as HTML
|
2003
|
+
Parameters: {"id"=>"2"}
|
2004
|
+
[1m[36mPost Load (0.3ms)[0m [1mSELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1[0m [["id", "2"]]
|
2005
|
+
[1m[35m (0.7ms)[0m SAVEPOINT active_record_1
|
2006
|
+
[1m[36mSQL (0.6ms)[0m [1mDELETE FROM "posts" WHERE "posts"."id" = ?[0m [["id", 2]]
|
2007
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
2008
|
+
Completed 200 OK in 13ms (Views: 1.8ms | ActiveRecord: 1.6ms)
|
2009
|
+
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|
2010
|
+
Connecting to database specified by database.yml
|
2011
|
+
[1m[36m (2.9ms)[0m [1mbegin transaction[0m
|
2012
|
+
[1m[35mFixture Delete (0.5ms)[0m DELETE FROM "posts"
|
2013
|
+
[1m[36mFixture Insert (0.8ms)[0m [1mINSERT INTO "posts" ("id", "title", "content", "created_at", "updated_at") VALUES (1, 'First post', 'Content of the first post', '2013-02-11 12:28:44', '2013-02-11 12:28:44')[0m
|
2014
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "posts" ("id", "title", "content", "created_at", "updated_at") VALUES (2, 'Second post', 'Content of the second post', '2013-02-11 12:28:44', '2013-02-11 12:28:44')
|
2015
|
+
[1m[36mFixture Delete (0.1ms)[0m [1mDELETE FROM "comments"[0m
|
2016
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "comments" ("content", "created_at", "updated_at", "id", "post_id") VALUES ('You are right.', '2013-02-11 12:28:44', '2013-02-11 12:28:44', 554292058, 655213220)
|
2017
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT INTO "comments" ("content", "created_at", "updated_at", "id", "post_id") VALUES ('You are wrong.', '2013-02-11 12:28:44', '2013-02-11 12:28:44', 939557606, 655213220)[0m
|
2018
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "comments" ("content", "created_at", "updated_at", "id", "post_id") VALUES ('You are both right and wrong.', '2013-02-11 12:28:44', '2013-02-11 12:28:44', 252162679, 1040487196)
|
2019
|
+
[1m[36m (4.2ms)[0m [1mcommit transaction[0m
|
2020
|
+
[1m[35m (0.1ms)[0m begin transaction
|
2021
|
+
|
2022
|
+
|
2023
|
+
Started DELETE "/posts/2" for 127.0.0.1 at 2013-02-11 13:28:44 +0100
|
2024
|
+
Processing by PostsController#destroy as HTML
|
2025
|
+
Parameters: {"id"=>"2"}
|
2026
|
+
[1m[36mPost Load (0.3ms)[0m [1mSELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1[0m [["id", "2"]]
|
2027
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2028
|
+
[1m[36mSQL (0.4ms)[0m [1mDELETE FROM "posts" WHERE "posts"."id" = ?[0m [["id", 2]]
|
2029
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
2030
|
+
Completed 200 OK in 13ms (Views: 0.8ms | ActiveRecord: 0.8ms)
|
2031
|
+
|
2032
|
+
|
2033
|
+
Started GET "/posts/2" for 127.0.0.1 at 2013-02-11 13:28:44 +0100
|
2034
|
+
Processing by PostsController#show as HTML
|
2035
|
+
Parameters: {"id"=>"2"}
|
2036
|
+
[1m[36mPost Load (0.0ms)[0m [1mSELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1[0m [["id", "2"]]
|
2037
|
+
Completed 404 Not Found in 2ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
2038
|
+
[1m[35m (0.3ms)[0m rollback transaction
|
2039
|
+
Connecting to database specified by database.yml
|
2040
|
+
[1m[36m (5.2ms)[0m [1mbegin transaction[0m
|
2041
|
+
[1m[35mFixture Delete (0.9ms)[0m DELETE FROM "posts"
|
2042
|
+
[1m[36mFixture Insert (1.1ms)[0m [1mINSERT INTO "posts" ("id", "title", "content", "created_at", "updated_at") VALUES (1, 'First post', 'Content of the first post', '2013-02-11 12:30:34', '2013-02-11 12:30:34')[0m
|
2043
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "posts" ("id", "title", "content", "created_at", "updated_at") VALUES (2, 'Second post', 'Content of the second post', '2013-02-11 12:30:34', '2013-02-11 12:30:34')
|
2044
|
+
[1m[36mFixture Delete (0.6ms)[0m [1mDELETE FROM "comments"[0m
|
2045
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "comments" ("content", "created_at", "updated_at", "id", "post_id") VALUES ('You are right.', '2013-02-11 12:30:34', '2013-02-11 12:30:34', 554292058, 655213220)
|
2046
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT INTO "comments" ("content", "created_at", "updated_at", "id", "post_id") VALUES ('You are wrong.', '2013-02-11 12:30:34', '2013-02-11 12:30:34', 939557606, 655213220)[0m
|
2047
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "comments" ("content", "created_at", "updated_at", "id", "post_id") VALUES ('You are both right and wrong.', '2013-02-11 12:30:34', '2013-02-11 12:30:34', 252162679, 1040487196)
|
2048
|
+
[1m[36m (5.8ms)[0m [1mcommit transaction[0m
|
2049
|
+
[1m[35m (0.0ms)[0m begin transaction
|
2050
|
+
|
2051
|
+
|
2052
|
+
Started DELETE "/posts/2" for 127.0.0.1 at 2013-02-11 13:30:34 +0100
|
2053
|
+
Processing by PostsController#destroy as HTML
|
2054
|
+
Parameters: {"id"=>"2"}
|
2055
|
+
[1m[36mPost Load (0.9ms)[0m [1mSELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1[0m [["id", "2"]]
|
2056
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2057
|
+
[1m[36mSQL (1.1ms)[0m [1mDELETE FROM "posts" WHERE "posts"."id" = ?[0m [["id", 2]]
|
2058
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
2059
|
+
Completed 200 OK in 13ms (Views: 0.9ms | ActiveRecord: 2.1ms)
|
2060
|
+
|
2061
|
+
|
2062
|
+
Started GET "/posts/2" for 127.0.0.1 at 2013-02-11 13:30:34 +0100
|
2063
|
+
Processing by PostsController#show as HTML
|
2064
|
+
Parameters: {"id"=>"2"}
|
2065
|
+
[1m[36mPost Load (0.2ms)[0m [1mSELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1[0m [["id", "2"]]
|
2066
|
+
Completed 404 Not Found in 3ms (Views: 0.0ms | ActiveRecord: 0.2ms)
|
2067
|
+
[1m[35m (0.3ms)[0m rollback transaction
|