crumbs 1.0.7

Sign up to get free protection for your applications and to get access to all the features.
Files changed (57) hide show
  1. checksums.yaml +7 -0
  2. data/MIT-LICENSE +20 -0
  3. data/README.rdoc +31 -0
  4. data/Rakefile +32 -0
  5. data/lib/crumbs/action_controller/base.rb +120 -0
  6. data/lib/crumbs/history.rb +31 -0
  7. data/lib/crumbs/railtie.rb +12 -0
  8. data/lib/crumbs/version.rb +5 -0
  9. data/lib/crumbs.rb +8 -0
  10. data/test/dummy/README.rdoc +28 -0
  11. data/test/dummy/Rakefile +6 -0
  12. data/test/dummy/app/assets/javascripts/application.js +13 -0
  13. data/test/dummy/app/assets/stylesheets/application.css +13 -0
  14. data/test/dummy/app/controllers/application_controller.rb +5 -0
  15. data/test/dummy/app/controllers/pages_controller.rb +33 -0
  16. data/test/dummy/app/helpers/application_helper.rb +2 -0
  17. data/test/dummy/app/views/layouts/application.html.erb +14 -0
  18. data/test/dummy/app/views/pages/crumbs.html.erb +3 -0
  19. data/test/dummy/bin/bundle +3 -0
  20. data/test/dummy/bin/rails +4 -0
  21. data/test/dummy/bin/rake +4 -0
  22. data/test/dummy/config/application.rb +23 -0
  23. data/test/dummy/config/boot.rb +5 -0
  24. data/test/dummy/config/database.yml +25 -0
  25. data/test/dummy/config/environment.rb +5 -0
  26. data/test/dummy/config/environments/development.rb +29 -0
  27. data/test/dummy/config/environments/production.rb +80 -0
  28. data/test/dummy/config/environments/test.rb +36 -0
  29. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  30. data/test/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  31. data/test/dummy/config/initializers/inflections.rb +16 -0
  32. data/test/dummy/config/initializers/mime_types.rb +5 -0
  33. data/test/dummy/config/initializers/secret_token.rb +12 -0
  34. data/test/dummy/config/initializers/session_store.rb +3 -0
  35. data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
  36. data/test/dummy/config/locales/en.yml +23 -0
  37. data/test/dummy/config/routes.rb +72 -0
  38. data/test/dummy/config.ru +4 -0
  39. data/test/dummy/db/development.sqlite3 +0 -0
  40. data/test/dummy/db/schema.rb +16 -0
  41. data/test/dummy/db/test.sqlite3 +0 -0
  42. data/test/dummy/log/development.log +7 -0
  43. data/test/dummy/log/test.log +788 -0
  44. data/test/dummy/public/404.html +58 -0
  45. data/test/dummy/public/422.html +58 -0
  46. data/test/dummy/public/500.html +57 -0
  47. data/test/dummy/public/favicon.ico +0 -0
  48. data/test/dummy/tmp/cache/assets/test/sprockets/13fe41fee1fe35b49d145bcc06610705 +0 -0
  49. data/test/dummy/tmp/cache/assets/test/sprockets/2f5173deea6c795b8fdde723bb4b63af +0 -0
  50. data/test/dummy/tmp/cache/assets/test/sprockets/357970feca3ac29060c1e3861e2c0953 +0 -0
  51. data/test/dummy/tmp/cache/assets/test/sprockets/cffd775d018f68ce5dba1ee0d951a994 +0 -0
  52. data/test/dummy/tmp/cache/assets/test/sprockets/d771ace226fc8215a3572e0aa35bb0d6 +0 -0
  53. data/test/dummy/tmp/cache/assets/test/sprockets/f7cbd26ba1d28d48de824f0e94586655 +0 -0
  54. data/test/test_helper.rb +21 -0
  55. data/test/with_last_test.rb +264 -0
  56. data/test/without_last_test.rb +249 -0
  57. metadata +174 -0
@@ -0,0 +1,788 @@
1
+  (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
2
+  (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3
+  (0.1ms) SELECT version FROM "schema_migrations"
4
+  (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
5
+  (0.1ms) begin transaction
6
+ --------------------------------------------------------------------------------------
7
+ WithLastTest: test_empty_crumbs_shouldn't_cause_any_error_and_should't_generate_crumbs
8
+ --------------------------------------------------------------------------------------
9
+ Started GET "/?p1=p1" for 127.0.0.1 at 2013-08-18 23:29:53 -0300
10
+ Processing by PagesController#index as HTML
11
+ Parameters: {"p1"=>"p1"}
12
+ Completed 500 Internal Server Error in 207ms
13
+  (0.1ms) rollback transaction
14
+  (0.1ms) begin transaction
15
+ -----------------------------------------------------------------------------------
16
+ WithLastTest: test_gaps_shouldn't_cause_any_error_and_should_generate_crumbs_either
17
+ -----------------------------------------------------------------------------------
18
+ Started GET "/?p1=p1" for 127.0.0.1 at 2013-08-18 23:29:53 -0300
19
+ Processing by PagesController#index as HTML
20
+ Parameters: {"p1"=>"p1"}
21
+ Completed 500 Internal Server Error in 1ms
22
+  (0.1ms) rollback transaction
23
+  (0.0ms) begin transaction
24
+ ---------------------------------------------------------------------------------
25
+ WithLastTest: test_going_back_shouldn't_cause_any_error_and_should_retain_history
26
+ ---------------------------------------------------------------------------------
27
+ Started GET "/?p1=p1" for 127.0.0.1 at 2013-08-18 23:29:53 -0300
28
+ Processing by PagesController#index as HTML
29
+ Parameters: {"p1"=>"p1"}
30
+ Completed 500 Internal Server Error in 1ms
31
+  (0.1ms) rollback transaction
32
+  (0.1ms) begin transaction
33
+ -----------------------------------------------------------------------------------
34
+ WithLastTest: test_params_shouldn't_cause_any_error_and_can_be_use_alter_crumb_name
35
+ -----------------------------------------------------------------------------------
36
+ Started GET "/?p1=p1" for 127.0.0.1 at 2013-08-18 23:29:53 -0300
37
+ Processing by PagesController#index as HTML
38
+ Parameters: {"p1"=>"p1"}
39
+ Completed 500 Internal Server Error in 1ms
40
+  (0.1ms) rollback transaction
41
+  (0.0ms) begin transaction
42
+ --------------------------------------------------------------------------------
43
+ WithLastTest: test_should_remember_last_request_with_parameters_in_the_same_path
44
+ --------------------------------------------------------------------------------
45
+ Started GET "/?p1=p1" for 127.0.0.1 at 2013-08-18 23:29:53 -0300
46
+ Processing by PagesController#index as HTML
47
+ Parameters: {"p1"=>"p1"}
48
+ Completed 500 Internal Server Error in 1ms
49
+  (0.0ms) rollback transaction
50
+  (0.0ms) begin transaction
51
+ -----------------------------------------------------------------
52
+ WithLastTest: test_should_remember_last_requests_in_the_same_path
53
+ -----------------------------------------------------------------
54
+ Started GET "/" for 127.0.0.1 at 2013-08-18 23:29:53 -0300
55
+ Processing by PagesController#index as HTML
56
+ Completed 500 Internal Server Error in 1ms
57
+  (0.1ms) rollback transaction
58
+  (0.0ms) begin transaction
59
+ -----------------------------------------------------------
60
+ WithLastTest: test_using_t_method_shouldn't_cause_any_error
61
+ -----------------------------------------------------------
62
+ Started GET "/?p1=p1" for 127.0.0.1 at 2013-08-18 23:29:53 -0300
63
+ Processing by PagesController#index as HTML
64
+ Parameters: {"p1"=>"p1"}
65
+ Completed 500 Internal Server Error in 1ms
66
+  (0.1ms) rollback transaction
67
+  (0.0ms) begin transaction
68
+ -----------------------------------------------------------------------------------------
69
+ WithoutLastTest: test_empty_crumbs_shouldn't_cause_any_error_and_should't_generate_crumbs
70
+ -----------------------------------------------------------------------------------------
71
+ Started GET "/?p1=p1" for 127.0.0.1 at 2013-08-18 23:29:53 -0300
72
+ Processing by PagesController#index as HTML
73
+ Parameters: {"p1"=>"p1"}
74
+ Completed 500 Internal Server Error in 1ms
75
+  (0.1ms) rollback transaction
76
+  (0.1ms) begin transaction
77
+ --------------------------------------------------------------------------------------
78
+ WithoutLastTest: test_gaps_shouldn't_cause_any_error_and_should_generate_crumbs_either
79
+ --------------------------------------------------------------------------------------
80
+ Started GET "/?p1=p1" for 127.0.0.1 at 2013-08-18 23:29:53 -0300
81
+ Processing by PagesController#index as HTML
82
+ Parameters: {"p1"=>"p1"}
83
+ Completed 500 Internal Server Error in 1ms
84
+  (0.1ms) rollback transaction
85
+  (0.0ms) begin transaction
86
+ ------------------------------------------------------------------------------------
87
+ WithoutLastTest: test_going_back_shouldn't_cause_any_error_and_should_retain_history
88
+ ------------------------------------------------------------------------------------
89
+ Started GET "/?p1=p1" for 127.0.0.1 at 2013-08-18 23:29:53 -0300
90
+ Processing by PagesController#index as HTML
91
+ Parameters: {"p1"=>"p1"}
92
+ Completed 500 Internal Server Error in 1ms
93
+  (0.1ms) rollback transaction
94
+  (0.0ms) begin transaction
95
+ --------------------------------------------------------------------------------------
96
+ WithoutLastTest: test_params_shouldn't_cause_any_error_and_can_be_use_alter_crumb_name
97
+ --------------------------------------------------------------------------------------
98
+ Started GET "/?p1=p1" for 127.0.0.1 at 2013-08-18 23:29:53 -0300
99
+ Processing by PagesController#index as HTML
100
+ Parameters: {"p1"=>"p1"}
101
+ Completed 500 Internal Server Error in 1ms
102
+  (0.0ms) rollback transaction
103
+  (0.0ms) begin transaction
104
+ -----------------------------------------------------------------------------------
105
+ WithoutLastTest: test_should_remember_last_request_with_parameters_in_the_same_path
106
+ -----------------------------------------------------------------------------------
107
+ Started GET "/?p1=p1" for 127.0.0.1 at 2013-08-18 23:29:53 -0300
108
+ Processing by PagesController#index as HTML
109
+ Parameters: {"p1"=>"p1"}
110
+ Completed 500 Internal Server Error in 1ms
111
+  (0.0ms) rollback transaction
112
+  (0.0ms) begin transaction
113
+ --------------------------------------------------------------------
114
+ WithoutLastTest: test_should_remember_last_requests_in_the_same_path
115
+ --------------------------------------------------------------------
116
+ Started GET "/" for 127.0.0.1 at 2013-08-18 23:29:53 -0300
117
+ Processing by PagesController#index as HTML
118
+ Completed 500 Internal Server Error in 1ms
119
+  (0.0ms) rollback transaction
120
+  (0.0ms) begin transaction
121
+ --------------------------------------------------------------
122
+ WithoutLastTest: test_using_t_method_shouldn't_cause_any_error
123
+ --------------------------------------------------------------
124
+ Started GET "/?p1=p1" for 127.0.0.1 at 2013-08-18 23:29:53 -0300
125
+ Processing by PagesController#index as HTML
126
+ Parameters: {"p1"=>"p1"}
127
+ Completed 500 Internal Server Error in 1ms
128
+  (0.1ms) rollback transaction
129
+  (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
130
+  (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
131
+  (0.1ms) SELECT version FROM "schema_migrations"
132
+  (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
133
+  (0.1ms) begin transaction
134
+ --------------------------------------------------------------------------------------
135
+ WithLastTest: test_empty_crumbs_shouldn't_cause_any_error_and_should't_generate_crumbs
136
+ --------------------------------------------------------------------------------------
137
+ Started GET "/?p1=p1" for 127.0.0.1 at 2013-08-18 23:30:20 -0300
138
+ Processing by PagesController#index as HTML
139
+ Parameters: {"p1"=>"p1"}
140
+ Rendered pages/crumbs.html.erb within layouts/application (1.2ms)
141
+ Completed 200 OK in 37ms (Views: 19.9ms | ActiveRecord: 0.0ms)
142
+ Started GET "/empty?p2=p2" for 127.0.0.1 at 2013-08-18 23:30:20 -0300
143
+ Processing by PagesController#empty as HTML
144
+ Parameters: {"p2"=>"p2"}
145
+ Rendered pages/crumbs.html.erb within layouts/application (0.1ms)
146
+ Completed 200 OK in 2ms (Views: 0.8ms | ActiveRecord: 0.0ms)
147
+  (0.2ms) rollback transaction
148
+  (0.1ms) begin transaction
149
+ -----------------------------------------------------------------------------------
150
+ WithLastTest: test_gaps_shouldn't_cause_any_error_and_should_generate_crumbs_either
151
+ -----------------------------------------------------------------------------------
152
+ Started GET "/?p1=p1" for 127.0.0.1 at 2013-08-18 23:30:20 -0300
153
+ Processing by PagesController#index as HTML
154
+ Parameters: {"p1"=>"p1"}
155
+ Completed 200 OK in 2ms (Views: 1.6ms | ActiveRecord: 0.0ms)
156
+ Started GET "/static/nested?p3=p3" for 127.0.0.1 at 2013-08-18 23:30:20 -0300
157
+ Processing by PagesController#nested as HTML
158
+ Parameters: {"p3"=>"p3"}
159
+ Completed 200 OK in 2ms (Views: 0.7ms | ActiveRecord: 0.0ms)
160
+  (0.1ms) rollback transaction
161
+  (0.1ms) begin transaction
162
+ ---------------------------------------------------------------------------------
163
+ WithLastTest: test_going_back_shouldn't_cause_any_error_and_should_retain_history
164
+ ---------------------------------------------------------------------------------
165
+ Started GET "/?p1=p1" for 127.0.0.1 at 2013-08-18 23:30:20 -0300
166
+ Processing by PagesController#index as HTML
167
+ Parameters: {"p1"=>"p1"}
168
+ Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
169
+ Started GET "/param?p2=p2" for 127.0.0.1 at 2013-08-18 23:30:20 -0300
170
+ Processing by PagesController#param as HTML
171
+ Parameters: {"p2"=>"p2"}
172
+ Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms)
173
+  (0.1ms) rollback transaction
174
+  (0.1ms) begin transaction
175
+ -----------------------------------------------------------------------------------
176
+ WithLastTest: test_params_shouldn't_cause_any_error_and_can_be_use_alter_crumb_name
177
+ -----------------------------------------------------------------------------------
178
+ Started GET "/?p1=p1" for 127.0.0.1 at 2013-08-18 23:30:20 -0300
179
+ Processing by PagesController#index as HTML
180
+ Parameters: {"p1"=>"p1"}
181
+ Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
182
+ Started GET "/param?p2=p2" for 127.0.0.1 at 2013-08-18 23:30:20 -0300
183
+ Processing by PagesController#param as HTML
184
+ Parameters: {"p2"=>"p2"}
185
+ Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms)
186
+  (0.1ms) rollback transaction
187
+  (0.0ms) begin transaction
188
+ --------------------------------------------------------------------------------
189
+ WithLastTest: test_should_remember_last_request_with_parameters_in_the_same_path
190
+ --------------------------------------------------------------------------------
191
+ Started GET "/?p1=p1" for 127.0.0.1 at 2013-08-18 23:30:20 -0300
192
+ Processing by PagesController#index as HTML
193
+ Parameters: {"p1"=>"p1"}
194
+ Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
195
+ Started GET "/static?p2=p2" for 127.0.0.1 at 2013-08-18 23:30:20 -0300
196
+ Processing by PagesController#static as HTML
197
+ Parameters: {"p2"=>"p2"}
198
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
199
+  (0.1ms) rollback transaction
200
+  (0.1ms) begin transaction
201
+ -----------------------------------------------------------------
202
+ WithLastTest: test_should_remember_last_requests_in_the_same_path
203
+ -----------------------------------------------------------------
204
+ Started GET "/" for 127.0.0.1 at 2013-08-18 23:30:20 -0300
205
+ Processing by PagesController#index as HTML
206
+ Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
207
+ Started GET "/static" for 127.0.0.1 at 2013-08-18 23:30:20 -0300
208
+ Processing by PagesController#static as HTML
209
+ Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms)
210
+  (0.1ms) rollback transaction
211
+  (0.1ms) begin transaction
212
+ -----------------------------------------------------------
213
+ WithLastTest: test_using_t_method_shouldn't_cause_any_error
214
+ -----------------------------------------------------------
215
+ Started GET "/?p1=p1" for 127.0.0.1 at 2013-08-18 23:30:20 -0300
216
+ Processing by PagesController#index as HTML
217
+ Parameters: {"p1"=>"p1"}
218
+ Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
219
+ Started GET "/i18n?p2=p2" for 127.0.0.1 at 2013-08-18 23:30:20 -0300
220
+ Processing by PagesController#i18n as HTML
221
+ Parameters: {"p2"=>"p2"}
222
+ Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms)
223
+  (0.1ms) rollback transaction
224
+  (0.0ms) begin transaction
225
+ -----------------------------------------------------------------------------------------
226
+ WithoutLastTest: test_empty_crumbs_shouldn't_cause_any_error_and_should't_generate_crumbs
227
+ -----------------------------------------------------------------------------------------
228
+ Started GET "/?p1=p1" for 127.0.0.1 at 2013-08-18 23:30:20 -0300
229
+ Processing by PagesController#index as HTML
230
+ Parameters: {"p1"=>"p1"}
231
+ Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
232
+ Started GET "/empty?p2=p2" for 127.0.0.1 at 2013-08-18 23:30:20 -0300
233
+ Processing by PagesController#empty as HTML
234
+ Parameters: {"p2"=>"p2"}
235
+ Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms)
236
+  (0.1ms) rollback transaction
237
+  (0.0ms) begin transaction
238
+ --------------------------------------------------------------------------------------
239
+ WithoutLastTest: test_gaps_shouldn't_cause_any_error_and_should_generate_crumbs_either
240
+ --------------------------------------------------------------------------------------
241
+ Started GET "/?p1=p1" for 127.0.0.1 at 2013-08-18 23:30:20 -0300
242
+ Processing by PagesController#index as HTML
243
+ Parameters: {"p1"=>"p1"}
244
+ Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
245
+ Started GET "/static/nested?p3=p3" for 127.0.0.1 at 2013-08-18 23:30:20 -0300
246
+ Processing by PagesController#nested as HTML
247
+ Parameters: {"p3"=>"p3"}
248
+ Completed 200 OK in 18ms (Views: 16.7ms | ActiveRecord: 0.0ms)
249
+  (0.1ms) rollback transaction
250
+  (0.0ms) begin transaction
251
+ ------------------------------------------------------------------------------------
252
+ WithoutLastTest: test_going_back_shouldn't_cause_any_error_and_should_retain_history
253
+ ------------------------------------------------------------------------------------
254
+ Started GET "/?p1=p1" for 127.0.0.1 at 2013-08-18 23:30:20 -0300
255
+ Processing by PagesController#index as HTML
256
+ Parameters: {"p1"=>"p1"}
257
+ Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
258
+ Started GET "/param?p2=p2" for 127.0.0.1 at 2013-08-18 23:30:20 -0300
259
+ Processing by PagesController#param as HTML
260
+ Parameters: {"p2"=>"p2"}
261
+ Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms)
262
+  (0.1ms) rollback transaction
263
+  (0.0ms) begin transaction
264
+ --------------------------------------------------------------------------------------
265
+ WithoutLastTest: test_params_shouldn't_cause_any_error_and_can_be_use_alter_crumb_name
266
+ --------------------------------------------------------------------------------------
267
+ Started GET "/?p1=p1" for 127.0.0.1 at 2013-08-18 23:30:20 -0300
268
+ Processing by PagesController#index as HTML
269
+ Parameters: {"p1"=>"p1"}
270
+ Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
271
+ Started GET "/param?p2=p2" for 127.0.0.1 at 2013-08-18 23:30:20 -0300
272
+ Processing by PagesController#param as HTML
273
+ Parameters: {"p2"=>"p2"}
274
+ Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms)
275
+  (0.1ms) rollback transaction
276
+  (0.0ms) begin transaction
277
+ -----------------------------------------------------------------------------------
278
+ WithoutLastTest: test_should_remember_last_request_with_parameters_in_the_same_path
279
+ -----------------------------------------------------------------------------------
280
+ Started GET "/?p1=p1" for 127.0.0.1 at 2013-08-18 23:30:20 -0300
281
+ Processing by PagesController#index as HTML
282
+ Parameters: {"p1"=>"p1"}
283
+ Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
284
+ Started GET "/static?p2=p2" for 127.0.0.1 at 2013-08-18 23:30:20 -0300
285
+ Processing by PagesController#static as HTML
286
+ Parameters: {"p2"=>"p2"}
287
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
288
+  (0.1ms) rollback transaction
289
+  (0.0ms) begin transaction
290
+ --------------------------------------------------------------------
291
+ WithoutLastTest: test_should_remember_last_requests_in_the_same_path
292
+ --------------------------------------------------------------------
293
+ Started GET "/" for 127.0.0.1 at 2013-08-18 23:30:20 -0300
294
+ Processing by PagesController#index as HTML
295
+ Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
296
+ Started GET "/static" for 127.0.0.1 at 2013-08-18 23:30:20 -0300
297
+ Processing by PagesController#static as HTML
298
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
299
+  (0.1ms) rollback transaction
300
+  (0.0ms) begin transaction
301
+ --------------------------------------------------------------
302
+ WithoutLastTest: test_using_t_method_shouldn't_cause_any_error
303
+ --------------------------------------------------------------
304
+ Started GET "/?p1=p1" for 127.0.0.1 at 2013-08-18 23:30:20 -0300
305
+ Processing by PagesController#index as HTML
306
+ Parameters: {"p1"=>"p1"}
307
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
308
+ Started GET "/i18n?p2=p2" for 127.0.0.1 at 2013-08-18 23:30:20 -0300
309
+ Processing by PagesController#i18n as HTML
310
+ Parameters: {"p2"=>"p2"}
311
+ Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
312
+  (0.1ms) rollback transaction
313
+  (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
314
+  (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
315
+  (0.0ms) SELECT version FROM "schema_migrations"
316
+  (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
317
+  (0.1ms) begin transaction
318
+ --------------------------------------------------------------------------------------
319
+ WithLastTest: test_empty_crumbs_shouldn't_cause_any_error_and_should't_generate_crumbs
320
+ --------------------------------------------------------------------------------------
321
+ Started GET "/?p1=p1" for 127.0.0.1 at 2013-08-18 23:35:42 -0300
322
+ Processing by PagesController#index as HTML
323
+ Parameters: {"p1"=>"p1"}
324
+ Rendered pages/crumbs.html.erb within layouts/application (1.0ms)
325
+ Completed 200 OK in 29ms (Views: 11.8ms | ActiveRecord: 0.0ms)
326
+ Started GET "/empty?p2=p2" for 127.0.0.1 at 2013-08-18 23:35:42 -0300
327
+ Processing by PagesController#empty as HTML
328
+ Parameters: {"p2"=>"p2"}
329
+ Rendered pages/crumbs.html.erb within layouts/application (0.1ms)
330
+ Completed 200 OK in 2ms (Views: 0.9ms | ActiveRecord: 0.0ms)
331
+  (0.2ms) rollback transaction
332
+  (0.1ms) begin transaction
333
+ -----------------------------------------------------------------------------------
334
+ WithLastTest: test_gaps_shouldn't_cause_any_error_and_should_generate_crumbs_either
335
+ -----------------------------------------------------------------------------------
336
+ Started GET "/?p1=p1" for 127.0.0.1 at 2013-08-18 23:35:42 -0300
337
+ Processing by PagesController#index as HTML
338
+ Parameters: {"p1"=>"p1"}
339
+ Completed 200 OK in 2ms (Views: 1.2ms | ActiveRecord: 0.0ms)
340
+ Started GET "/static/nested?p3=p3" for 127.0.0.1 at 2013-08-18 23:35:42 -0300
341
+ Processing by PagesController#nested as HTML
342
+ Parameters: {"p3"=>"p3"}
343
+ Completed 200 OK in 2ms (Views: 0.6ms | ActiveRecord: 0.0ms)
344
+  (0.1ms) rollback transaction
345
+  (0.1ms) begin transaction
346
+ ---------------------------------------------------------------------------------
347
+ WithLastTest: test_going_back_shouldn't_cause_any_error_and_should_retain_history
348
+ ---------------------------------------------------------------------------------
349
+ Started GET "/?p1=p1" for 127.0.0.1 at 2013-08-18 23:35:42 -0300
350
+ Processing by PagesController#index as HTML
351
+ Parameters: {"p1"=>"p1"}
352
+ Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
353
+ Started GET "/param?p2=p2" for 127.0.0.1 at 2013-08-18 23:35:42 -0300
354
+ Processing by PagesController#param as HTML
355
+ Parameters: {"p2"=>"p2"}
356
+ Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms)
357
+  (0.1ms) rollback transaction
358
+  (0.0ms) begin transaction
359
+ -----------------------------------------------------------------------------------
360
+ WithLastTest: test_params_shouldn't_cause_any_error_and_can_be_use_alter_crumb_name
361
+ -----------------------------------------------------------------------------------
362
+ Started GET "/?p1=p1" for 127.0.0.1 at 2013-08-18 23:35:42 -0300
363
+ Processing by PagesController#index as HTML
364
+ Parameters: {"p1"=>"p1"}
365
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
366
+ Started GET "/param?p2=p2" for 127.0.0.1 at 2013-08-18 23:35:42 -0300
367
+ Processing by PagesController#param as HTML
368
+ Parameters: {"p2"=>"p2"}
369
+ Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms)
370
+  (0.1ms) rollback transaction
371
+  (0.0ms) begin transaction
372
+ --------------------------------------------------------------------------------
373
+ WithLastTest: test_should_remember_last_request_with_parameters_in_the_same_path
374
+ --------------------------------------------------------------------------------
375
+ Started GET "/?p1=p1" for 127.0.0.1 at 2013-08-18 23:35:42 -0300
376
+ Processing by PagesController#index as HTML
377
+ Parameters: {"p1"=>"p1"}
378
+ Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
379
+ Started GET "/static?p2=p2" for 127.0.0.1 at 2013-08-18 23:35:42 -0300
380
+ Processing by PagesController#static as HTML
381
+ Parameters: {"p2"=>"p2"}
382
+ Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms)
383
+  (0.1ms) rollback transaction
384
+  (0.0ms) begin transaction
385
+ -----------------------------------------------------------------
386
+ WithLastTest: test_should_remember_last_requests_in_the_same_path
387
+ -----------------------------------------------------------------
388
+ Started GET "/" for 127.0.0.1 at 2013-08-18 23:35:42 -0300
389
+ Processing by PagesController#index as HTML
390
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
391
+ Started GET "/static" for 127.0.0.1 at 2013-08-18 23:35:42 -0300
392
+ Processing by PagesController#static as HTML
393
+ Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms)
394
+  (0.1ms) rollback transaction
395
+  (0.1ms) begin transaction
396
+ -----------------------------------------------------------
397
+ WithLastTest: test_using_t_method_shouldn't_cause_any_error
398
+ -----------------------------------------------------------
399
+ Started GET "/?p1=p1" for 127.0.0.1 at 2013-08-18 23:35:42 -0300
400
+ Processing by PagesController#index as HTML
401
+ Parameters: {"p1"=>"p1"}
402
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
403
+ Started GET "/i18n?p2=p2" for 127.0.0.1 at 2013-08-18 23:35:42 -0300
404
+ Processing by PagesController#i18n as HTML
405
+ Parameters: {"p2"=>"p2"}
406
+ Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms)
407
+  (0.1ms) rollback transaction
408
+  (0.0ms) begin transaction
409
+ -----------------------------------------------------------------------------------------
410
+ WithoutLastTest: test_empty_crumbs_shouldn't_cause_any_error_and_should't_generate_crumbs
411
+ -----------------------------------------------------------------------------------------
412
+ Started GET "/?p1=p1" for 127.0.0.1 at 2013-08-18 23:35:42 -0300
413
+ Processing by PagesController#index as HTML
414
+ Parameters: {"p1"=>"p1"}
415
+ Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
416
+ Started GET "/empty?p2=p2" for 127.0.0.1 at 2013-08-18 23:35:42 -0300
417
+ Processing by PagesController#empty as HTML
418
+ Parameters: {"p2"=>"p2"}
419
+ Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms)
420
+  (0.1ms) rollback transaction
421
+  (0.0ms) begin transaction
422
+ --------------------------------------------------------------------------------------
423
+ WithoutLastTest: test_gaps_shouldn't_cause_any_error_and_should_generate_crumbs_either
424
+ --------------------------------------------------------------------------------------
425
+ Started GET "/?p1=p1" for 127.0.0.1 at 2013-08-18 23:35:42 -0300
426
+ Processing by PagesController#index as HTML
427
+ Parameters: {"p1"=>"p1"}
428
+ Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
429
+ Started GET "/static/nested?p3=p3" for 127.0.0.1 at 2013-08-18 23:35:42 -0300
430
+ Processing by PagesController#nested as HTML
431
+ Parameters: {"p3"=>"p3"}
432
+ Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms)
433
+  (0.1ms) rollback transaction
434
+  (0.1ms) begin transaction
435
+ ------------------------------------------------------------------------------------
436
+ WithoutLastTest: test_going_back_shouldn't_cause_any_error_and_should_retain_history
437
+ ------------------------------------------------------------------------------------
438
+ Started GET "/?p1=p1" for 127.0.0.1 at 2013-08-18 23:35:42 -0300
439
+ Processing by PagesController#index as HTML
440
+ Parameters: {"p1"=>"p1"}
441
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
442
+ Started GET "/param?p2=p2" for 127.0.0.1 at 2013-08-18 23:35:42 -0300
443
+ Processing by PagesController#param as HTML
444
+ Parameters: {"p2"=>"p2"}
445
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
446
+  (0.1ms) rollback transaction
447
+  (0.0ms) begin transaction
448
+ --------------------------------------------------------------------------------------
449
+ WithoutLastTest: test_params_shouldn't_cause_any_error_and_can_be_use_alter_crumb_name
450
+ --------------------------------------------------------------------------------------
451
+ Started GET "/?p1=p1" for 127.0.0.1 at 2013-08-18 23:35:42 -0300
452
+ Processing by PagesController#index as HTML
453
+ Parameters: {"p1"=>"p1"}
454
+ Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
455
+ Started GET "/param?p2=p2" for 127.0.0.1 at 2013-08-18 23:35:42 -0300
456
+ Processing by PagesController#param as HTML
457
+ Parameters: {"p2"=>"p2"}
458
+ Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms)
459
+  (0.1ms) rollback transaction
460
+  (0.0ms) begin transaction
461
+ -----------------------------------------------------------------------------------
462
+ WithoutLastTest: test_should_remember_last_request_with_parameters_in_the_same_path
463
+ -----------------------------------------------------------------------------------
464
+ Started GET "/?p1=p1" for 127.0.0.1 at 2013-08-18 23:35:42 -0300
465
+ Processing by PagesController#index as HTML
466
+ Parameters: {"p1"=>"p1"}
467
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
468
+ Started GET "/static?p2=p2" for 127.0.0.1 at 2013-08-18 23:35:42 -0300
469
+ Processing by PagesController#static as HTML
470
+ Parameters: {"p2"=>"p2"}
471
+ Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms)
472
+  (0.1ms) rollback transaction
473
+  (0.0ms) begin transaction
474
+ --------------------------------------------------------------------
475
+ WithoutLastTest: test_should_remember_last_requests_in_the_same_path
476
+ --------------------------------------------------------------------
477
+ Started GET "/" for 127.0.0.1 at 2013-08-18 23:35:42 -0300
478
+ Processing by PagesController#index as HTML
479
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
480
+ Started GET "/static" for 127.0.0.1 at 2013-08-18 23:35:42 -0300
481
+ Processing by PagesController#static as HTML
482
+ Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms)
483
+  (0.1ms) rollback transaction
484
+  (0.0ms) begin transaction
485
+ --------------------------------------------------------------
486
+ WithoutLastTest: test_using_t_method_shouldn't_cause_any_error
487
+ --------------------------------------------------------------
488
+ Started GET "/?p1=p1" for 127.0.0.1 at 2013-08-18 23:35:42 -0300
489
+ Processing by PagesController#index as HTML
490
+ Parameters: {"p1"=>"p1"}
491
+ Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
492
+ Started GET "/i18n?p2=p2" for 127.0.0.1 at 2013-08-18 23:35:42 -0300
493
+ Processing by PagesController#i18n as HTML
494
+ Parameters: {"p2"=>"p2"}
495
+ Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms)
496
+  (0.1ms) rollback transaction
497
+  (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
498
+  (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
499
+  (0.1ms) SELECT version FROM "schema_migrations"
500
+  (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
501
+  (0.1ms) begin transaction
502
+ --------------------------------------------------------------------------------------
503
+ WithLastTest: test_empty_crumbs_shouldn't_cause_any_error_and_should't_generate_crumbs
504
+ --------------------------------------------------------------------------------------
505
+ Started GET "/?p1=p1" for 127.0.0.1 at 2013-08-18 23:45:00 -0300
506
+ Processing by PagesController#home as HTML
507
+ Parameters: {"p1"=>"p1"}
508
+ Rendered pages/crumbs.html.erb within layouts/application (0.9ms)
509
+ Completed 200 OK in 30ms (Views: 11.3ms | ActiveRecord: 0.0ms)
510
+ Started GET "/empty?p2=p2" for 127.0.0.1 at 2013-08-18 23:45:00 -0300
511
+ Processing by PagesController#empty as HTML
512
+ Parameters: {"p2"=>"p2"}
513
+ Rendered pages/crumbs.html.erb within layouts/application (0.1ms)
514
+ Completed 200 OK in 2ms (Views: 0.9ms | ActiveRecord: 0.0ms)
515
+ Started GET "/empty/nested?p3=p3" for 127.0.0.1 at 2013-08-18 23:45:00 -0300
516
+ Processing by PagesController#nested as HTML
517
+ Parameters: {"p3"=>"p3"}
518
+ Rendered pages/crumbs.html.erb within layouts/application (0.1ms)
519
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
520
+ Started GET "/" for 127.0.0.1 at 2013-08-18 23:45:00 -0300
521
+ Processing by PagesController#home as HTML
522
+ Rendered pages/crumbs.html.erb within layouts/application (0.0ms)
523
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
524
+  (0.1ms) rollback transaction
525
+  (0.1ms) begin transaction
526
+ -----------------------------------------------------------------------------------
527
+ WithLastTest: test_gaps_shouldn't_cause_any_error_and_should_generate_crumbs_either
528
+ -----------------------------------------------------------------------------------
529
+ Started GET "/?p1=p1" for 127.0.0.1 at 2013-08-18 23:45:00 -0300
530
+ Processing by PagesController#home as HTML
531
+ Parameters: {"p1"=>"p1"}
532
+ Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
533
+ Started GET "/static/nested?p3=p3" for 127.0.0.1 at 2013-08-18 23:45:00 -0300
534
+ Processing by PagesController#nested as HTML
535
+ Parameters: {"p3"=>"p3"}
536
+ Completed 200 OK in 2ms (Views: 0.6ms | ActiveRecord: 0.0ms)
537
+ Started GET "/" for 127.0.0.1 at 2013-08-18 23:45:00 -0300
538
+ Processing by PagesController#home as HTML
539
+ Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms)
540
+  (0.1ms) rollback transaction
541
+  (0.0ms) begin transaction
542
+ ---------------------------------------------------------------------------------
543
+ WithLastTest: test_going_back_shouldn't_cause_any_error_and_should_retain_history
544
+ ---------------------------------------------------------------------------------
545
+ Started GET "/?p1=p1" for 127.0.0.1 at 2013-08-18 23:45:00 -0300
546
+ Processing by PagesController#home as HTML
547
+ Parameters: {"p1"=>"p1"}
548
+ Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
549
+ Started GET "/param?p2=p2" for 127.0.0.1 at 2013-08-18 23:45:00 -0300
550
+ Processing by PagesController#param as HTML
551
+ Parameters: {"p2"=>"p2"}
552
+ Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms)
553
+ Started GET "/param/1?p3=p3" for 127.0.0.1 at 2013-08-18 23:45:00 -0300
554
+ Processing by PagesController#param as HTML
555
+ Parameters: {"p3"=>"p3", "param"=>"1"}
556
+ Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms)
557
+ Started GET "/param/1/nested?p4=p4" for 127.0.0.1 at 2013-08-18 23:45:00 -0300
558
+ Processing by PagesController#nested as HTML
559
+ Parameters: {"p4"=>"p4", "param"=>"1"}
560
+ Completed 200 OK in 2ms (Views: 0.5ms | ActiveRecord: 0.0ms)
561
+ Started GET "/param" for 127.0.0.1 at 2013-08-18 23:45:00 -0300
562
+ Processing by PagesController#param as HTML
563
+ Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms)
564
+  (0.1ms) rollback transaction
565
+  (0.0ms) begin transaction
566
+ -----------------------------------------------------------------------------------
567
+ WithLastTest: test_params_shouldn't_cause_any_error_and_can_be_use_alter_crumb_name
568
+ -----------------------------------------------------------------------------------
569
+ Started GET "/?p1=p1" for 127.0.0.1 at 2013-08-18 23:45:00 -0300
570
+ Processing by PagesController#home as HTML
571
+ Parameters: {"p1"=>"p1"}
572
+ Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
573
+ Started GET "/param?p2=p2" for 127.0.0.1 at 2013-08-18 23:45:00 -0300
574
+ Processing by PagesController#param as HTML
575
+ Parameters: {"p2"=>"p2"}
576
+ Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
577
+ Started GET "/param/1?p3=p3" for 127.0.0.1 at 2013-08-18 23:45:00 -0300
578
+ Processing by PagesController#param as HTML
579
+ Parameters: {"p3"=>"p3", "param"=>"1"}
580
+ Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms)
581
+ Started GET "/param/1/nested?p4=p4" for 127.0.0.1 at 2013-08-18 23:45:00 -0300
582
+ Processing by PagesController#nested as HTML
583
+ Parameters: {"p4"=>"p4", "param"=>"1"}
584
+ Completed 200 OK in 2ms (Views: 0.5ms | ActiveRecord: 0.0ms)
585
+ Started GET "/" for 127.0.0.1 at 2013-08-18 23:45:00 -0300
586
+ Processing by PagesController#home as HTML
587
+ Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms)
588
+  (0.1ms) rollback transaction
589
+  (0.0ms) begin transaction
590
+ --------------------------------------------------------------------------------
591
+ WithLastTest: test_should_remember_last_request_with_parameters_in_the_same_path
592
+ --------------------------------------------------------------------------------
593
+ Started GET "/?p1=p1" for 127.0.0.1 at 2013-08-18 23:45:00 -0300
594
+ Processing by PagesController#home as HTML
595
+ Parameters: {"p1"=>"p1"}
596
+ Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
597
+ Started GET "/static?p2=p2" for 127.0.0.1 at 2013-08-18 23:45:00 -0300
598
+ Processing by PagesController#static as HTML
599
+ Parameters: {"p2"=>"p2"}
600
+ Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms)
601
+ Started GET "/static/nested?p3=p3" for 127.0.0.1 at 2013-08-18 23:45:00 -0300
602
+ Processing by PagesController#nested as HTML
603
+ Parameters: {"p3"=>"p3"}
604
+ Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms)
605
+ Started GET "/" for 127.0.0.1 at 2013-08-18 23:45:00 -0300
606
+ Processing by PagesController#home as HTML
607
+ Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
608
+  (0.1ms) rollback transaction
609
+  (0.0ms) begin transaction
610
+ -----------------------------------------------------------------
611
+ WithLastTest: test_should_remember_last_requests_in_the_same_path
612
+ -----------------------------------------------------------------
613
+ Started GET "/" for 127.0.0.1 at 2013-08-18 23:45:00 -0300
614
+ Processing by PagesController#home as HTML
615
+ Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
616
+ Started GET "/static" for 127.0.0.1 at 2013-08-18 23:45:00 -0300
617
+ Processing by PagesController#static as HTML
618
+ Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms)
619
+ Started GET "/static/nested" for 127.0.0.1 at 2013-08-18 23:45:00 -0300
620
+ Processing by PagesController#nested as HTML
621
+ Completed 200 OK in 2ms (Views: 0.5ms | ActiveRecord: 0.0ms)
622
+ Started GET "/" for 127.0.0.1 at 2013-08-18 23:45:00 -0300
623
+ Processing by PagesController#home as HTML
624
+ Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms)
625
+  (0.1ms) rollback transaction
626
+  (0.0ms) begin transaction
627
+ -----------------------------------------------------------
628
+ WithLastTest: test_using_t_method_shouldn't_cause_any_error
629
+ -----------------------------------------------------------
630
+ Started GET "/?p1=p1" for 127.0.0.1 at 2013-08-18 23:45:00 -0300
631
+ Processing by PagesController#home as HTML
632
+ Parameters: {"p1"=>"p1"}
633
+ Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
634
+ Started GET "/i18n?p2=p2" for 127.0.0.1 at 2013-08-18 23:45:00 -0300
635
+ Processing by PagesController#i18n as HTML
636
+ Parameters: {"p2"=>"p2"}
637
+ Completed 200 OK in 2ms (Views: 0.7ms | ActiveRecord: 0.0ms)
638
+ Started GET "/i18n/nested?p3=p3" for 127.0.0.1 at 2013-08-18 23:45:00 -0300
639
+ Processing by PagesController#nested as HTML
640
+ Parameters: {"p3"=>"p3"}
641
+ Completed 200 OK in 2ms (Views: 0.6ms | ActiveRecord: 0.0ms)
642
+ Started GET "/?p1=p1" for 127.0.0.1 at 2013-08-18 23:45:00 -0300
643
+ Processing by PagesController#home as HTML
644
+ Parameters: {"p1"=>"p1"}
645
+ Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
646
+  (0.1ms) rollback transaction
647
+  (0.0ms) begin transaction
648
+ -----------------------------------------------------------------------------------------
649
+ WithoutLastTest: test_empty_crumbs_shouldn't_cause_any_error_and_should't_generate_crumbs
650
+ -----------------------------------------------------------------------------------------
651
+ Started GET "/?p1=p1" for 127.0.0.1 at 2013-08-18 23:45:00 -0300
652
+ Processing by PagesController#home as HTML
653
+ Parameters: {"p1"=>"p1"}
654
+ Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
655
+ Started GET "/empty?p2=p2" for 127.0.0.1 at 2013-08-18 23:45:00 -0300
656
+ Processing by PagesController#empty as HTML
657
+ Parameters: {"p2"=>"p2"}
658
+ Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms)
659
+ Started GET "/empty/nested?p3=p3" for 127.0.0.1 at 2013-08-18 23:45:00 -0300
660
+ Processing by PagesController#nested as HTML
661
+ Parameters: {"p3"=>"p3"}
662
+ Completed 200 OK in 2ms (Views: 0.7ms | ActiveRecord: 0.0ms)
663
+ Started GET "/" for 127.0.0.1 at 2013-08-18 23:45:00 -0300
664
+ Processing by PagesController#home as HTML
665
+ Completed 200 OK in 17ms (Views: 0.8ms | ActiveRecord: 0.0ms)
666
+  (0.1ms) rollback transaction
667
+  (0.0ms) begin transaction
668
+ --------------------------------------------------------------------------------------
669
+ WithoutLastTest: test_gaps_shouldn't_cause_any_error_and_should_generate_crumbs_either
670
+ --------------------------------------------------------------------------------------
671
+ Started GET "/?p1=p1" for 127.0.0.1 at 2013-08-18 23:45:00 -0300
672
+ Processing by PagesController#home as HTML
673
+ Parameters: {"p1"=>"p1"}
674
+ Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
675
+ Started GET "/static/nested?p3=p3" for 127.0.0.1 at 2013-08-18 23:45:00 -0300
676
+ Processing by PagesController#nested as HTML
677
+ Parameters: {"p3"=>"p3"}
678
+ Completed 200 OK in 2ms (Views: 0.6ms | ActiveRecord: 0.0ms)
679
+ Started GET "/" for 127.0.0.1 at 2013-08-18 23:45:00 -0300
680
+ Processing by PagesController#home as HTML
681
+ Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms)
682
+  (0.1ms) rollback transaction
683
+  (0.0ms) begin transaction
684
+ ------------------------------------------------------------------------------------
685
+ WithoutLastTest: test_going_back_shouldn't_cause_any_error_and_should_retain_history
686
+ ------------------------------------------------------------------------------------
687
+ Started GET "/?p1=p1" for 127.0.0.1 at 2013-08-18 23:45:00 -0300
688
+ Processing by PagesController#home as HTML
689
+ Parameters: {"p1"=>"p1"}
690
+ Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
691
+ Started GET "/param?p2=p2" for 127.0.0.1 at 2013-08-18 23:45:00 -0300
692
+ Processing by PagesController#param as HTML
693
+ Parameters: {"p2"=>"p2"}
694
+ Completed 200 OK in 2ms (Views: 0.8ms | ActiveRecord: 0.0ms)
695
+ Started GET "/param/1?p3=p3" for 127.0.0.1 at 2013-08-18 23:45:00 -0300
696
+ Processing by PagesController#param as HTML
697
+ Parameters: {"p3"=>"p3", "param"=>"1"}
698
+ Completed 200 OK in 2ms (Views: 0.7ms | ActiveRecord: 0.0ms)
699
+ Started GET "/param/1/nested?p4=p4" for 127.0.0.1 at 2013-08-18 23:45:00 -0300
700
+ Processing by PagesController#nested as HTML
701
+ Parameters: {"p4"=>"p4", "param"=>"1"}
702
+ Completed 200 OK in 2ms (Views: 0.6ms | ActiveRecord: 0.0ms)
703
+ Started GET "/param" for 127.0.0.1 at 2013-08-18 23:45:00 -0300
704
+ Processing by PagesController#param as HTML
705
+ Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms)
706
+  (0.1ms) rollback transaction
707
+  (0.0ms) begin transaction
708
+ --------------------------------------------------------------------------------------
709
+ WithoutLastTest: test_params_shouldn't_cause_any_error_and_can_be_use_alter_crumb_name
710
+ --------------------------------------------------------------------------------------
711
+ Started GET "/?p1=p1" for 127.0.0.1 at 2013-08-18 23:45:00 -0300
712
+ Processing by PagesController#home as HTML
713
+ Parameters: {"p1"=>"p1"}
714
+ Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
715
+ Started GET "/param?p2=p2" for 127.0.0.1 at 2013-08-18 23:45:00 -0300
716
+ Processing by PagesController#param as HTML
717
+ Parameters: {"p2"=>"p2"}
718
+ Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms)
719
+ Started GET "/param/1?p3=p3" for 127.0.0.1 at 2013-08-18 23:45:00 -0300
720
+ Processing by PagesController#param as HTML
721
+ Parameters: {"p3"=>"p3", "param"=>"1"}
722
+ Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms)
723
+ Started GET "/param/1/nested?p4=p4" for 127.0.0.1 at 2013-08-18 23:45:00 -0300
724
+ Processing by PagesController#nested as HTML
725
+ Parameters: {"p4"=>"p4", "param"=>"1"}
726
+ Completed 200 OK in 2ms (Views: 0.7ms | ActiveRecord: 0.0ms)
727
+ Started GET "/" for 127.0.0.1 at 2013-08-18 23:45:00 -0300
728
+ Processing by PagesController#home as HTML
729
+ Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms)
730
+  (0.1ms) rollback transaction
731
+  (0.1ms) begin transaction
732
+ -----------------------------------------------------------------------------------
733
+ WithoutLastTest: test_should_remember_last_request_with_parameters_in_the_same_path
734
+ -----------------------------------------------------------------------------------
735
+ Started GET "/?p1=p1" for 127.0.0.1 at 2013-08-18 23:45:00 -0300
736
+ Processing by PagesController#home as HTML
737
+ Parameters: {"p1"=>"p1"}
738
+ Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
739
+ Started GET "/static?p2=p2" for 127.0.0.1 at 2013-08-18 23:45:00 -0300
740
+ Processing by PagesController#static as HTML
741
+ Parameters: {"p2"=>"p2"}
742
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
743
+ Started GET "/static/nested?p3=p3" for 127.0.0.1 at 2013-08-18 23:45:00 -0300
744
+ Processing by PagesController#nested as HTML
745
+ Parameters: {"p3"=>"p3"}
746
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
747
+ Started GET "/" for 127.0.0.1 at 2013-08-18 23:45:00 -0300
748
+ Processing by PagesController#home as HTML
749
+ Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
750
+  (0.1ms) rollback transaction
751
+  (0.0ms) begin transaction
752
+ --------------------------------------------------------------------
753
+ WithoutLastTest: test_should_remember_last_requests_in_the_same_path
754
+ --------------------------------------------------------------------
755
+ Started GET "/" for 127.0.0.1 at 2013-08-18 23:45:00 -0300
756
+ Processing by PagesController#home as HTML
757
+ Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
758
+ Started GET "/static" for 127.0.0.1 at 2013-08-18 23:45:00 -0300
759
+ Processing by PagesController#static as HTML
760
+ Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms)
761
+ Started GET "/static/nested" for 127.0.0.1 at 2013-08-18 23:45:00 -0300
762
+ Processing by PagesController#nested as HTML
763
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
764
+ Started GET "/" for 127.0.0.1 at 2013-08-18 23:45:00 -0300
765
+ Processing by PagesController#home as HTML
766
+ Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms)
767
+  (0.1ms) rollback transaction
768
+  (0.0ms) begin transaction
769
+ --------------------------------------------------------------
770
+ WithoutLastTest: test_using_t_method_shouldn't_cause_any_error
771
+ --------------------------------------------------------------
772
+ Started GET "/?p1=p1" for 127.0.0.1 at 2013-08-18 23:45:00 -0300
773
+ Processing by PagesController#home as HTML
774
+ Parameters: {"p1"=>"p1"}
775
+ Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
776
+ Started GET "/i18n?p2=p2" for 127.0.0.1 at 2013-08-18 23:45:00 -0300
777
+ Processing by PagesController#i18n as HTML
778
+ Parameters: {"p2"=>"p2"}
779
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
780
+ Started GET "/i18n/nested?p3=p3" for 127.0.0.1 at 2013-08-18 23:45:00 -0300
781
+ Processing by PagesController#nested as HTML
782
+ Parameters: {"p3"=>"p3"}
783
+ Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms)
784
+ Started GET "/?p1=p1" for 127.0.0.1 at 2013-08-18 23:45:00 -0300
785
+ Processing by PagesController#home as HTML
786
+ Parameters: {"p1"=>"p1"}
787
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
788
+  (0.1ms) rollback transaction