scratchpad 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.
- checksums.yaml +7 -0
- data/MIT-LICENSE +20 -0
- data/README.rdoc +3 -0
- data/Rakefile +34 -0
- data/app/assets/css/scratchpad.css +4 -0
- data/app/helpers/scratchpad_helper.rb +5 -0
- data/lib/scratchpad/middleware.rb +13 -0
- data/lib/scratchpad/page.rb +20 -0
- data/lib/scratchpad/version.rb +3 -0
- data/lib/scratchpad.rb +14 -0
- data/lib/tasks/scratchpad_tasks.rake +4 -0
- data/test/dummy/README.rdoc +28 -0
- data/test/dummy/Rakefile +6 -0
- data/test/dummy/app/assets/javascripts/application.js +13 -0
- data/test/dummy/app/assets/stylesheets/application.css +15 -0
- data/test/dummy/app/controllers/application_controller.rb +5 -0
- data/test/dummy/app/controllers/pages_controller.rb +9 -0
- data/test/dummy/app/views/layouts/application.html.erb +14 -0
- data/test/dummy/app/views/pages/_partial_scratch.html.erb +3 -0
- data/test/dummy/app/views/pages/empty.html.erb +1 -0
- data/test/dummy/app/views/pages/multiple_scratch.html.erb +7 -0
- data/test/dummy/app/views/pages/no_scratch.html.erb +1 -0
- data/test/dummy/app/views/pages/scratch.html.erb +3 -0
- data/test/dummy/app/views/pages/scratch_object.html.erb +3 -0
- data/test/dummy/app/views/pages/scratch_with_partial_scratch.html.erb +7 -0
- data/test/dummy/bin/bundle +3 -0
- data/test/dummy/bin/rails +4 -0
- data/test/dummy/bin/rake +4 -0
- data/test/dummy/bin/setup +29 -0
- data/test/dummy/config/application.rb +27 -0
- data/test/dummy/config/boot.rb +5 -0
- data/test/dummy/config/database.yml +25 -0
- data/test/dummy/config/environment.rb +5 -0
- data/test/dummy/config/environments/development.rb +41 -0
- data/test/dummy/config/environments/production.rb +79 -0
- data/test/dummy/config/environments/test.rb +42 -0
- data/test/dummy/config/initializers/assets.rb +11 -0
- data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
- data/test/dummy/config/initializers/cookies_serializer.rb +3 -0
- data/test/dummy/config/initializers/filter_parameter_logging.rb +4 -0
- data/test/dummy/config/initializers/inflections.rb +16 -0
- data/test/dummy/config/initializers/mime_types.rb +4 -0
- data/test/dummy/config/initializers/session_store.rb +3 -0
- data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
- data/test/dummy/config/locales/en.yml +23 -0
- data/test/dummy/config/routes.rb +10 -0
- data/test/dummy/config/secrets.yml +22 -0
- data/test/dummy/config.ru +4 -0
- data/test/dummy/db/test.sqlite3 +0 -0
- data/test/dummy/log/test.log +1562 -0
- data/test/dummy/public/404.html +67 -0
- data/test/dummy/public/422.html +67 -0
- data/test/dummy/public/500.html +66 -0
- data/test/dummy/public/favicon.ico +0 -0
- data/test/integration/middleware_test.rb +22 -0
- data/test/integration/rendering_test.rb +26 -0
- data/test/scratchpad_test.rb +7 -0
- data/test/test_helper.rb +18 -0
- metadata +162 -0
@@ -0,0 +1,1562 @@
|
|
1
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2
|
+
--------------------------
|
3
|
+
ScratchpadTest: test_truth
|
4
|
+
--------------------------
|
5
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
6
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
7
|
+
--------------------------
|
8
|
+
ScratchpadTest: test_truth
|
9
|
+
--------------------------
|
10
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
11
|
+
--------------------------
|
12
|
+
ScratchpadTest: test_truth
|
13
|
+
--------------------------
|
14
|
+
--------------------------
|
15
|
+
ScratchpadTest: test_truth
|
16
|
+
--------------------------
|
17
|
+
--------------------------
|
18
|
+
ScratchpadTest: test_truth
|
19
|
+
--------------------------
|
20
|
+
--------------------------
|
21
|
+
ScratchpadTest: test_truth
|
22
|
+
--------------------------
|
23
|
+
----------------------------------------------------------------------
|
24
|
+
MiddlewareTest: test_the_scratchpad_shouldn't_be_added_without_content
|
25
|
+
----------------------------------------------------------------------
|
26
|
+
Started GET "/" for 127.0.0.1 at 2015-01-09 13:29:37 -0500
|
27
|
+
----------------------------------------------------------------------
|
28
|
+
MiddlewareTest: test_the_scratchpad_shouldn't_be_added_without_content
|
29
|
+
----------------------------------------------------------------------
|
30
|
+
Started GET "/" for 127.0.0.1 at 2015-01-09 13:31:03 -0500
|
31
|
+
Processing by PagesController#index as HTML
|
32
|
+
Rendered pages/index.html.erb (1.6ms)
|
33
|
+
Completed 200 OK in 13ms (Views: 12.7ms)
|
34
|
+
--------------------------
|
35
|
+
ScratchpadTest: test_truth
|
36
|
+
--------------------------
|
37
|
+
--------------------------
|
38
|
+
ScratchpadTest: test_truth
|
39
|
+
--------------------------
|
40
|
+
----------------------------------------------------------------------
|
41
|
+
MiddlewareTest: test_the_scratchpad_shouldn't_be_added_without_content
|
42
|
+
----------------------------------------------------------------------
|
43
|
+
Started GET "/" for 127.0.0.1 at 2015-01-09 13:31:17 -0500
|
44
|
+
Processing by PagesController#index as HTML
|
45
|
+
Rendered pages/index.html.erb (0.7ms)
|
46
|
+
Completed 200 OK in 9ms (Views: 8.5ms)
|
47
|
+
----------------------------------------------------------------------
|
48
|
+
MiddlewareTest: test_the_scratchpad_shouldn't_be_added_without_content
|
49
|
+
----------------------------------------------------------------------
|
50
|
+
Started GET "/" for 127.0.0.1 at 2015-01-09 13:31:32 -0500
|
51
|
+
Processing by PagesController#index as HTML
|
52
|
+
Rendered pages/index.html.erb (0.8ms)
|
53
|
+
Completed 200 OK in 6ms (Views: 6.1ms)
|
54
|
+
--------------------------
|
55
|
+
ScratchpadTest: test_truth
|
56
|
+
--------------------------
|
57
|
+
--------------------------
|
58
|
+
ScratchpadTest: test_truth
|
59
|
+
--------------------------
|
60
|
+
----------------------------------------------------------------------
|
61
|
+
MiddlewareTest: test_the_scratchpad_shouldn't_be_added_without_content
|
62
|
+
----------------------------------------------------------------------
|
63
|
+
Started GET "/" for 127.0.0.1 at 2015-01-09 13:31:49 -0500
|
64
|
+
Processing by PagesController#index as HTML
|
65
|
+
Rendered pages/index.html.erb (0.7ms)
|
66
|
+
Completed 200 OK in 8ms (Views: 7.9ms)
|
67
|
+
--------------------------
|
68
|
+
ScratchpadTest: test_truth
|
69
|
+
--------------------------
|
70
|
+
---------------------------------------------------------------------------
|
71
|
+
MiddlewareTest: test_the_scratchpad_shouldn't_be_empty_after_adding_content
|
72
|
+
---------------------------------------------------------------------------
|
73
|
+
--------------------------------------------------------------------------
|
74
|
+
MiddlewareTest: test_the_scratchpad_should_be_empty_without_adding_content
|
75
|
+
--------------------------------------------------------------------------
|
76
|
+
Started GET "/" for 127.0.0.1 at 2015-01-09 13:37:10 -0500
|
77
|
+
Processing by PagesController#index as HTML
|
78
|
+
Rendered pages/index.html.erb (0.7ms)
|
79
|
+
Completed 200 OK in 6ms (Views: 6.0ms)
|
80
|
+
--------------------------
|
81
|
+
ScratchpadTest: test_truth
|
82
|
+
--------------------------
|
83
|
+
--------------------------------------------------------------------------
|
84
|
+
MiddlewareTest: test_the_scratchpad_should_be_empty_without_adding_content
|
85
|
+
--------------------------------------------------------------------------
|
86
|
+
Started GET "/" for 127.0.0.1 at 2015-01-09 13:37:26 -0500
|
87
|
+
Processing by PagesController#index as HTML
|
88
|
+
Rendered pages/index.html.erb (0.6ms)
|
89
|
+
Completed 200 OK in 6ms (Views: 6.1ms)
|
90
|
+
---------------------------------------------------------------------------
|
91
|
+
MiddlewareTest: test_the_scratchpad_shouldn't_be_empty_after_adding_content
|
92
|
+
---------------------------------------------------------------------------
|
93
|
+
Started GET "/add_content" for 127.0.0.1 at 2015-01-09 13:37:26 -0500
|
94
|
+
--------------------------
|
95
|
+
ScratchpadTest: test_truth
|
96
|
+
--------------------------
|
97
|
+
--------------------------------------------------------------------------
|
98
|
+
MiddlewareTest: test_the_scratchpad_should_be_empty_without_adding_content
|
99
|
+
--------------------------------------------------------------------------
|
100
|
+
Started GET "/" for 127.0.0.1 at 2015-01-09 13:44:09 -0500
|
101
|
+
Processing by PagesController#index as HTML
|
102
|
+
Rendered pages/index.html.erb (0.6ms)
|
103
|
+
Completed 200 OK in 6ms (Views: 5.6ms)
|
104
|
+
---------------------------------------------------------------------------
|
105
|
+
MiddlewareTest: test_the_scratchpad_shouldn't_be_empty_after_adding_content
|
106
|
+
---------------------------------------------------------------------------
|
107
|
+
Started GET "/add_content" for 127.0.0.1 at 2015-01-09 13:44:09 -0500
|
108
|
+
--------------------------
|
109
|
+
ScratchpadTest: test_truth
|
110
|
+
--------------------------
|
111
|
+
--------------------------------------------------------------------------
|
112
|
+
MiddlewareTest: test_the_scratchpad_should_be_empty_without_adding_content
|
113
|
+
--------------------------------------------------------------------------
|
114
|
+
Started GET "/" for 127.0.0.1 at 2015-01-09 13:52:20 -0500
|
115
|
+
---------------------------------------------------------------------------
|
116
|
+
MiddlewareTest: test_the_scratchpad_shouldn't_be_empty_after_adding_content
|
117
|
+
---------------------------------------------------------------------------
|
118
|
+
Started GET "/add_content" for 127.0.0.1 at 2015-01-09 13:52:20 -0500
|
119
|
+
----------------------------------------------------------------------------------
|
120
|
+
MiddlewareTest: test_the_scratchpad_shouldn't_be_empty_after_adding_object_content
|
121
|
+
----------------------------------------------------------------------------------
|
122
|
+
Started GET "/scratch_object" for 127.0.0.1 at 2015-01-09 13:54:09 -0500
|
123
|
+
Processing by PagesController#scratch_object as HTML
|
124
|
+
Rendered pages/scratch_object.html.erb (14.3ms)
|
125
|
+
Completed 500 Internal Server Error in 20ms
|
126
|
+
--------------------------------------------------------------------------
|
127
|
+
MiddlewareTest: test_the_scratchpad_should_be_empty_without_adding_content
|
128
|
+
--------------------------------------------------------------------------
|
129
|
+
Started GET "/" for 127.0.0.1 at 2015-01-09 13:54:09 -0500
|
130
|
+
----------------------------------------------------------------------------------
|
131
|
+
MiddlewareTest: test_the_scratchpad_shouldn't_be_empty_after_adding_string_content
|
132
|
+
----------------------------------------------------------------------------------
|
133
|
+
Started GET "/scratch" for 127.0.0.1 at 2015-01-09 13:54:09 -0500
|
134
|
+
Processing by PagesController#scratch as HTML
|
135
|
+
Rendered pages/scratch.html.erb (7.9ms)
|
136
|
+
Completed 500 Internal Server Error in 9ms
|
137
|
+
--------------------------
|
138
|
+
ScratchpadTest: test_truth
|
139
|
+
--------------------------
|
140
|
+
--------------------------------------------------------------------------
|
141
|
+
MiddlewareTest: test_the_scratchpad_should_be_empty_without_adding_content
|
142
|
+
--------------------------------------------------------------------------
|
143
|
+
Started GET "/" for 127.0.0.1 at 2015-01-09 13:58:07 -0500
|
144
|
+
----------------------------------------------------------------------------------
|
145
|
+
MiddlewareTest: test_the_scratchpad_shouldn't_be_empty_after_adding_string_content
|
146
|
+
----------------------------------------------------------------------------------
|
147
|
+
Started GET "/scratch" for 127.0.0.1 at 2015-01-09 13:58:07 -0500
|
148
|
+
Processing by PagesController#scratch as HTML
|
149
|
+
Rendered pages/scratch.html.erb (8.6ms)
|
150
|
+
Completed 500 Internal Server Error in 14ms
|
151
|
+
----------------------------------------------------------------------------------
|
152
|
+
MiddlewareTest: test_the_scratchpad_shouldn't_be_empty_after_adding_object_content
|
153
|
+
----------------------------------------------------------------------------------
|
154
|
+
Started GET "/scratch_object" for 127.0.0.1 at 2015-01-09 13:58:07 -0500
|
155
|
+
Processing by PagesController#scratch_object as HTML
|
156
|
+
Rendered pages/scratch_object.html.erb (7.8ms)
|
157
|
+
Completed 500 Internal Server Error in 9ms
|
158
|
+
--------------------------
|
159
|
+
ScratchpadTest: test_truth
|
160
|
+
--------------------------
|
161
|
+
--------------------------
|
162
|
+
ScratchpadTest: test_truth
|
163
|
+
--------------------------
|
164
|
+
--------------------------------------------------------------------------
|
165
|
+
MiddlewareTest: test_the_scratchpad_should_be_empty_without_adding_content
|
166
|
+
--------------------------------------------------------------------------
|
167
|
+
Started GET "/" for 127.0.0.1 at 2015-01-09 13:58:28 -0500
|
168
|
+
----------------------------------------------------------------------------------
|
169
|
+
MiddlewareTest: test_the_scratchpad_shouldn't_be_empty_after_adding_string_content
|
170
|
+
----------------------------------------------------------------------------------
|
171
|
+
Started GET "/scratch" for 127.0.0.1 at 2015-01-09 13:58:28 -0500
|
172
|
+
Processing by PagesController#scratch as HTML
|
173
|
+
Rendered pages/scratch.html.erb (8.8ms)
|
174
|
+
Completed 500 Internal Server Error in 14ms
|
175
|
+
----------------------------------------------------------------------------------
|
176
|
+
MiddlewareTest: test_the_scratchpad_shouldn't_be_empty_after_adding_object_content
|
177
|
+
----------------------------------------------------------------------------------
|
178
|
+
Started GET "/scratch_object" for 127.0.0.1 at 2015-01-09 13:58:28 -0500
|
179
|
+
Processing by PagesController#scratch_object as HTML
|
180
|
+
Rendered pages/scratch_object.html.erb (8.4ms)
|
181
|
+
Completed 500 Internal Server Error in 9ms
|
182
|
+
--------------------------
|
183
|
+
ScratchpadTest: test_truth
|
184
|
+
--------------------------
|
185
|
+
----------------------------------------------------------------------------------
|
186
|
+
MiddlewareTest: test_the_scratchpad_shouldn't_be_empty_after_adding_string_content
|
187
|
+
----------------------------------------------------------------------------------
|
188
|
+
Started GET "/scratch" for 127.0.0.1 at 2015-01-09 14:00:00 -0500
|
189
|
+
Processing by PagesController#scratch as HTML
|
190
|
+
Rendered pages/scratch.html.erb (2.7ms)
|
191
|
+
Completed 500 Internal Server Error in 11ms
|
192
|
+
----------------------------------------------------------------------------------
|
193
|
+
MiddlewareTest: test_the_scratchpad_shouldn't_be_empty_after_adding_object_content
|
194
|
+
----------------------------------------------------------------------------------
|
195
|
+
Started GET "/scratch_object" for 127.0.0.1 at 2015-01-09 14:00:00 -0500
|
196
|
+
Processing by PagesController#scratch_object as HTML
|
197
|
+
Rendered pages/scratch_object.html.erb (1.3ms)
|
198
|
+
Completed 500 Internal Server Error in 2ms
|
199
|
+
--------------------------------------------------------------------------
|
200
|
+
MiddlewareTest: test_the_scratchpad_should_be_empty_without_adding_content
|
201
|
+
--------------------------------------------------------------------------
|
202
|
+
Started GET "/" for 127.0.0.1 at 2015-01-09 14:00:00 -0500
|
203
|
+
--------------------------
|
204
|
+
ScratchpadTest: test_truth
|
205
|
+
--------------------------
|
206
|
+
--------------------------------------------------------------------------
|
207
|
+
MiddlewareTest: test_the_scratchpad_should_be_empty_without_adding_content
|
208
|
+
--------------------------------------------------------------------------
|
209
|
+
Started GET "/" for 127.0.0.1 at 2015-01-09 14:01:31 -0500
|
210
|
+
----------------------------------------------------------------------------------
|
211
|
+
MiddlewareTest: test_the_scratchpad_shouldn't_be_empty_after_adding_object_content
|
212
|
+
----------------------------------------------------------------------------------
|
213
|
+
Started GET "/scratch_object" for 127.0.0.1 at 2015-01-09 14:01:31 -0500
|
214
|
+
Processing by PagesController#scratch_object as HTML
|
215
|
+
Rendered pages/scratch_object.html.erb (2.6ms)
|
216
|
+
Completed 500 Internal Server Error in 10ms
|
217
|
+
----------------------------------------------------------------------------------
|
218
|
+
MiddlewareTest: test_the_scratchpad_shouldn't_be_empty_after_adding_string_content
|
219
|
+
----------------------------------------------------------------------------------
|
220
|
+
Started GET "/scratch" for 127.0.0.1 at 2015-01-09 14:01:31 -0500
|
221
|
+
Processing by PagesController#scratch as HTML
|
222
|
+
Rendered pages/scratch.html.erb (1.3ms)
|
223
|
+
Completed 500 Internal Server Error in 2ms
|
224
|
+
----------------------------------------------------------------------------------
|
225
|
+
MiddlewareTest: test_the_scratchpad_shouldn't_be_empty_after_adding_object_content
|
226
|
+
----------------------------------------------------------------------------------
|
227
|
+
Started GET "/scratch_object" for 127.0.0.1 at 2015-01-09 14:04:19 -0500
|
228
|
+
Processing by PagesController#scratch_object as HTML
|
229
|
+
Rendered pages/scratch_object.html.erb (0.7ms)
|
230
|
+
Completed 200 OK in 9ms (Views: 8.8ms)
|
231
|
+
--------------------------------------------------------------------------
|
232
|
+
MiddlewareTest: test_the_scratchpad_should_be_empty_without_adding_content
|
233
|
+
--------------------------------------------------------------------------
|
234
|
+
Started GET "/" for 127.0.0.1 at 2015-01-09 14:04:19 -0500
|
235
|
+
----------------------------------------------------------------------------------
|
236
|
+
MiddlewareTest: test_the_scratchpad_shouldn't_be_empty_after_adding_string_content
|
237
|
+
----------------------------------------------------------------------------------
|
238
|
+
Started GET "/scratch" for 127.0.0.1 at 2015-01-09 14:04:19 -0500
|
239
|
+
Processing by PagesController#scratch as HTML
|
240
|
+
Rendered pages/scratch.html.erb (0.3ms)
|
241
|
+
Completed 200 OK in 1ms (Views: 1.1ms)
|
242
|
+
--------------------------
|
243
|
+
ScratchpadTest: test_truth
|
244
|
+
--------------------------
|
245
|
+
--------------------------------------------------------------------------
|
246
|
+
MiddlewareTest: test_the_scratchpad_should_be_empty_without_adding_content
|
247
|
+
--------------------------------------------------------------------------
|
248
|
+
Started GET "/" for 127.0.0.1 at 2015-01-09 14:06:04 -0500
|
249
|
+
Processing by PagesController#empty as HTML
|
250
|
+
Rendered pages/empty.html.erb (0.7ms)
|
251
|
+
Completed 200 OK in 9ms (Views: 8.6ms)
|
252
|
+
----------------------------------------------------------------------------------
|
253
|
+
MiddlewareTest: test_the_scratchpad_shouldn't_be_empty_after_adding_object_content
|
254
|
+
----------------------------------------------------------------------------------
|
255
|
+
Started GET "/scratch_object" for 127.0.0.1 at 2015-01-09 14:06:04 -0500
|
256
|
+
Processing by PagesController#scratch_object as HTML
|
257
|
+
Rendered pages/scratch_object.html.erb (0.3ms)
|
258
|
+
Completed 200 OK in 1ms (Views: 1.0ms)
|
259
|
+
----------------------------------------------------------------------------------
|
260
|
+
MiddlewareTest: test_the_scratchpad_shouldn't_be_empty_after_adding_string_content
|
261
|
+
----------------------------------------------------------------------------------
|
262
|
+
Started GET "/scratch" for 127.0.0.1 at 2015-01-09 14:06:04 -0500
|
263
|
+
Processing by PagesController#scratch as HTML
|
264
|
+
Rendered pages/scratch.html.erb (0.3ms)
|
265
|
+
Completed 200 OK in 1ms (Views: 1.2ms)
|
266
|
+
--------------------------
|
267
|
+
ScratchpadTest: test_truth
|
268
|
+
--------------------------
|
269
|
+
----------------------------------------------------------------------------------
|
270
|
+
MiddlewareTest: test_the_scratchpad_shouldn't_be_empty_after_adding_object_content
|
271
|
+
----------------------------------------------------------------------------------
|
272
|
+
Started GET "/scratch_object" for 127.0.0.1 at 2015-01-09 14:07:30 -0500
|
273
|
+
Processing by PagesController#scratch_object as HTML
|
274
|
+
Rendered pages/scratch_object.html.erb (0.7ms)
|
275
|
+
Completed 200 OK in 8ms (Views: 8.0ms)
|
276
|
+
--------------------------------------------------------------------------
|
277
|
+
MiddlewareTest: test_the_scratchpad_should_be_empty_without_adding_content
|
278
|
+
--------------------------------------------------------------------------
|
279
|
+
Started GET "/" for 127.0.0.1 at 2015-01-09 14:07:30 -0500
|
280
|
+
Processing by PagesController#empty as HTML
|
281
|
+
Rendered pages/empty.html.erb (0.2ms)
|
282
|
+
Completed 200 OK in 1ms (Views: 0.9ms)
|
283
|
+
----------------------------------------------------------------------------------
|
284
|
+
MiddlewareTest: test_the_scratchpad_shouldn't_be_empty_after_adding_string_content
|
285
|
+
----------------------------------------------------------------------------------
|
286
|
+
Started GET "/scratch" for 127.0.0.1 at 2015-01-09 14:07:30 -0500
|
287
|
+
Processing by PagesController#scratch as HTML
|
288
|
+
Rendered pages/scratch.html.erb (0.2ms)
|
289
|
+
Completed 200 OK in 1ms (Views: 1.0ms)
|
290
|
+
--------------------------
|
291
|
+
ScratchpadTest: test_truth
|
292
|
+
--------------------------
|
293
|
+
--------------------------
|
294
|
+
ScratchpadTest: test_truth
|
295
|
+
--------------------------
|
296
|
+
--------------------------------------------------------------------------
|
297
|
+
MiddlewareTest: test_the_scratchpad_should_be_empty_without_adding_content
|
298
|
+
--------------------------------------------------------------------------
|
299
|
+
Started GET "/" for 127.0.0.1 at 2015-01-09 14:08:59 -0500
|
300
|
+
Processing by PagesController#empty as HTML
|
301
|
+
Rendered pages/empty.html.erb (0.7ms)
|
302
|
+
Completed 200 OK in 6ms (Views: 5.8ms)
|
303
|
+
----------------------------------------------------------------------------------
|
304
|
+
MiddlewareTest: test_the_scratchpad_shouldn't_be_empty_after_adding_object_content
|
305
|
+
----------------------------------------------------------------------------------
|
306
|
+
Started GET "/scratch_object" for 127.0.0.1 at 2015-01-09 14:08:59 -0500
|
307
|
+
Processing by PagesController#scratch_object as HTML
|
308
|
+
Rendered pages/scratch_object.html.erb (0.2ms)
|
309
|
+
Completed 200 OK in 1ms (Views: 1.1ms)
|
310
|
+
----------------------------------------------------------------------------------
|
311
|
+
MiddlewareTest: test_the_scratchpad_shouldn't_be_empty_after_adding_string_content
|
312
|
+
----------------------------------------------------------------------------------
|
313
|
+
Started GET "/scratch" for 127.0.0.1 at 2015-01-09 14:08:59 -0500
|
314
|
+
Processing by PagesController#scratch as HTML
|
315
|
+
Rendered pages/scratch.html.erb (0.2ms)
|
316
|
+
Completed 200 OK in 1ms (Views: 1.0ms)
|
317
|
+
----------------------------------------------------------------------------------
|
318
|
+
MiddlewareTest: test_the_scratchpad_shouldn't_be_empty_after_adding_object_content
|
319
|
+
----------------------------------------------------------------------------------
|
320
|
+
Started GET "/scratch_object" for 127.0.0.1 at 2015-01-09 14:09:11 -0500
|
321
|
+
Processing by PagesController#scratch_object as HTML
|
322
|
+
Rendered pages/scratch_object.html.erb (0.8ms)
|
323
|
+
Completed 200 OK in 9ms (Views: 8.7ms)
|
324
|
+
--------------------------------------------------------------------------
|
325
|
+
MiddlewareTest: test_the_scratchpad_should_be_empty_without_adding_content
|
326
|
+
--------------------------------------------------------------------------
|
327
|
+
Started GET "/" for 127.0.0.1 at 2015-01-09 14:09:11 -0500
|
328
|
+
Processing by PagesController#empty as HTML
|
329
|
+
Rendered pages/empty.html.erb (0.2ms)
|
330
|
+
Completed 200 OK in 1ms (Views: 1.1ms)
|
331
|
+
----------------------------------------------------------------------------------
|
332
|
+
MiddlewareTest: test_the_scratchpad_shouldn't_be_empty_after_adding_string_content
|
333
|
+
----------------------------------------------------------------------------------
|
334
|
+
Started GET "/scratch" for 127.0.0.1 at 2015-01-09 14:09:11 -0500
|
335
|
+
Processing by PagesController#scratch as HTML
|
336
|
+
Rendered pages/scratch.html.erb (0.3ms)
|
337
|
+
Completed 200 OK in 1ms (Views: 1.1ms)
|
338
|
+
--------------------------
|
339
|
+
ScratchpadTest: test_truth
|
340
|
+
--------------------------
|
341
|
+
--------------------------
|
342
|
+
ScratchpadTest: test_truth
|
343
|
+
--------------------------
|
344
|
+
--------------------------------------------------------------------------
|
345
|
+
MiddlewareTest: test_the_scratchpad_should_be_empty_without_adding_content
|
346
|
+
--------------------------------------------------------------------------
|
347
|
+
Started GET "/" for 127.0.0.1 at 2015-01-09 14:09:54 -0500
|
348
|
+
Processing by PagesController#empty as HTML
|
349
|
+
Rendered pages/empty.html.erb (0.7ms)
|
350
|
+
Completed 200 OK in 6ms (Views: 5.9ms)
|
351
|
+
----------------------------------------------------------------------------------
|
352
|
+
MiddlewareTest: test_the_scratchpad_shouldn't_be_empty_after_adding_object_content
|
353
|
+
----------------------------------------------------------------------------------
|
354
|
+
Started GET "/scratch_object" for 127.0.0.1 at 2015-01-09 14:09:54 -0500
|
355
|
+
Processing by PagesController#scratch_object as HTML
|
356
|
+
Rendered pages/scratch_object.html.erb (0.3ms)
|
357
|
+
Completed 200 OK in 1ms (Views: 1.0ms)
|
358
|
+
----------------------------------------------------------------------------------
|
359
|
+
MiddlewareTest: test_the_scratchpad_shouldn't_be_empty_after_adding_string_content
|
360
|
+
----------------------------------------------------------------------------------
|
361
|
+
Started GET "/scratch" for 127.0.0.1 at 2015-01-09 14:09:54 -0500
|
362
|
+
Processing by PagesController#scratch as HTML
|
363
|
+
Rendered pages/scratch.html.erb (0.2ms)
|
364
|
+
Completed 200 OK in 1ms (Views: 1.0ms)
|
365
|
+
--------------------------
|
366
|
+
ScratchpadTest: test_truth
|
367
|
+
--------------------------
|
368
|
+
----------------------------------------------------------------------------------
|
369
|
+
MiddlewareTest: test_the_scratchpad_shouldn't_be_empty_after_adding_string_content
|
370
|
+
----------------------------------------------------------------------------------
|
371
|
+
Started GET "/scratch" for 127.0.0.1 at 2015-01-09 14:20:56 -0500
|
372
|
+
Processing by PagesController#scratch as HTML
|
373
|
+
Rendered pages/scratch.html.erb (0.8ms)
|
374
|
+
Completed 200 OK in 9ms (Views: 8.7ms)
|
375
|
+
----------------------------------------------------------------------------------
|
376
|
+
MiddlewareTest: test_the_scratchpad_shouldn't_be_empty_after_adding_object_content
|
377
|
+
----------------------------------------------------------------------------------
|
378
|
+
Started GET "/scratch_object" for 127.0.0.1 at 2015-01-09 14:20:56 -0500
|
379
|
+
Processing by PagesController#scratch_object as HTML
|
380
|
+
Rendered pages/scratch_object.html.erb (0.3ms)
|
381
|
+
Completed 200 OK in 2ms (Views: 1.5ms)
|
382
|
+
--------------------------------------------------------------------------
|
383
|
+
MiddlewareTest: test_the_scratchpad_should_be_empty_without_adding_content
|
384
|
+
--------------------------------------------------------------------------
|
385
|
+
Started GET "/" for 127.0.0.1 at 2015-01-09 14:20:56 -0500
|
386
|
+
Processing by PagesController#empty as HTML
|
387
|
+
Rendered pages/empty.html.erb (0.3ms)
|
388
|
+
Completed 200 OK in 1ms (Views: 1.2ms)
|
389
|
+
-------------------------------------------------------------
|
390
|
+
RenderingTest: test_the_scratchpad_should_not_render_if_empty
|
391
|
+
-------------------------------------------------------------
|
392
|
+
Started GET "/" for 127.0.0.1 at 2015-01-09 14:20:56 -0500
|
393
|
+
Processing by PagesController#empty as HTML
|
394
|
+
Rendered pages/empty.html.erb (0.0ms)
|
395
|
+
Completed 200 OK in 0ms (Views: 0.2ms)
|
396
|
+
-------------------------------------------------------------
|
397
|
+
RenderingTest: test_the_scratchpad_should_render_if_not_empty
|
398
|
+
-------------------------------------------------------------
|
399
|
+
Started GET "/scratch" for 127.0.0.1 at 2015-01-09 14:20:56 -0500
|
400
|
+
Processing by PagesController#scratch as HTML
|
401
|
+
Rendered pages/scratch.html.erb (0.1ms)
|
402
|
+
Completed 200 OK in 0ms (Views: 0.3ms)
|
403
|
+
--------------------------
|
404
|
+
ScratchpadTest: test_truth
|
405
|
+
--------------------------
|
406
|
+
--------------------------------------------------------------------------
|
407
|
+
MiddlewareTest: test_the_scratchpad_should_be_empty_without_adding_content
|
408
|
+
--------------------------------------------------------------------------
|
409
|
+
Started GET "/" for 127.0.0.1 at 2015-01-09 14:21:20 -0500
|
410
|
+
Processing by PagesController#empty as HTML
|
411
|
+
Rendered pages/empty.html.erb (0.7ms)
|
412
|
+
Completed 200 OK in 8ms (Views: 8.3ms)
|
413
|
+
----------------------------------------------------------------------------------
|
414
|
+
MiddlewareTest: test_the_scratchpad_shouldn't_be_empty_after_adding_object_content
|
415
|
+
----------------------------------------------------------------------------------
|
416
|
+
Started GET "/scratch_object" for 127.0.0.1 at 2015-01-09 14:21:20 -0500
|
417
|
+
Processing by PagesController#scratch_object as HTML
|
418
|
+
Rendered pages/scratch_object.html.erb (0.2ms)
|
419
|
+
Completed 200 OK in 1ms (Views: 1.0ms)
|
420
|
+
----------------------------------------------------------------------------------
|
421
|
+
MiddlewareTest: test_the_scratchpad_shouldn't_be_empty_after_adding_string_content
|
422
|
+
----------------------------------------------------------------------------------
|
423
|
+
Started GET "/scratch" for 127.0.0.1 at 2015-01-09 14:21:20 -0500
|
424
|
+
Processing by PagesController#scratch as HTML
|
425
|
+
Rendered pages/scratch.html.erb (0.2ms)
|
426
|
+
Completed 200 OK in 1ms (Views: 1.0ms)
|
427
|
+
-------------------------------------------------------------
|
428
|
+
RenderingTest: test_the_scratchpad_should_not_render_if_empty
|
429
|
+
-------------------------------------------------------------
|
430
|
+
Started GET "/" for 127.0.0.1 at 2015-01-09 14:21:20 -0500
|
431
|
+
Processing by PagesController#empty as HTML
|
432
|
+
Rendered pages/empty.html.erb (0.0ms)
|
433
|
+
Completed 200 OK in 0ms (Views: 0.3ms)
|
434
|
+
-------------------------------------------------------------
|
435
|
+
RenderingTest: test_the_scratchpad_should_render_if_not_empty
|
436
|
+
-------------------------------------------------------------
|
437
|
+
Started GET "/scratch" for 127.0.0.1 at 2015-01-09 14:21:20 -0500
|
438
|
+
Processing by PagesController#scratch as HTML
|
439
|
+
Rendered pages/scratch.html.erb (0.0ms)
|
440
|
+
Completed 200 OK in 0ms (Views: 0.2ms)
|
441
|
+
--------------------------
|
442
|
+
ScratchpadTest: test_truth
|
443
|
+
--------------------------
|
444
|
+
-------------------------------------------------------------
|
445
|
+
RenderingTest: test_the_scratchpad_should_render_if_not_empty
|
446
|
+
-------------------------------------------------------------
|
447
|
+
Started GET "/scratch" for 127.0.0.1 at 2015-01-09 14:24:56 -0500
|
448
|
+
Processing by PagesController#scratch as HTML
|
449
|
+
Rendered pages/scratch.html.erb (0.9ms)
|
450
|
+
Completed 200 OK in 6ms (Views: 5.6ms)
|
451
|
+
-------------------------------------------------------------
|
452
|
+
RenderingTest: test_the_scratchpad_should_not_render_if_empty
|
453
|
+
-------------------------------------------------------------
|
454
|
+
Started GET "/" for 127.0.0.1 at 2015-01-09 14:24:56 -0500
|
455
|
+
Processing by PagesController#empty as HTML
|
456
|
+
Rendered pages/empty.html.erb (0.2ms)
|
457
|
+
Completed 200 OK in 1ms (Views: 1.0ms)
|
458
|
+
----------------------------------------------------------------------------------
|
459
|
+
MiddlewareTest: test_the_scratchpad_shouldn't_be_empty_after_adding_object_content
|
460
|
+
----------------------------------------------------------------------------------
|
461
|
+
Started GET "/scratch_object" for 127.0.0.1 at 2015-01-09 14:24:56 -0500
|
462
|
+
Processing by PagesController#scratch_object as HTML
|
463
|
+
Rendered pages/scratch_object.html.erb (0.2ms)
|
464
|
+
Completed 200 OK in 1ms (Views: 1.0ms)
|
465
|
+
--------------------------------------------------------------------------
|
466
|
+
MiddlewareTest: test_the_scratchpad_should_be_empty_without_adding_content
|
467
|
+
--------------------------------------------------------------------------
|
468
|
+
Started GET "/" for 127.0.0.1 at 2015-01-09 14:24:56 -0500
|
469
|
+
Processing by PagesController#empty as HTML
|
470
|
+
Rendered pages/empty.html.erb (0.0ms)
|
471
|
+
Completed 200 OK in 0ms (Views: 0.2ms)
|
472
|
+
----------------------------------------------------------------------------------
|
473
|
+
MiddlewareTest: test_the_scratchpad_shouldn't_be_empty_after_adding_string_content
|
474
|
+
----------------------------------------------------------------------------------
|
475
|
+
Started GET "/scratch" for 127.0.0.1 at 2015-01-09 14:24:56 -0500
|
476
|
+
Processing by PagesController#scratch as HTML
|
477
|
+
Rendered pages/scratch.html.erb (0.0ms)
|
478
|
+
Completed 200 OK in 0ms (Views: 0.2ms)
|
479
|
+
--------------------------
|
480
|
+
ScratchpadTest: test_truth
|
481
|
+
--------------------------
|
482
|
+
-------------------------------------------------------------
|
483
|
+
RenderingTest: test_the_scratchpad_should_not_render_if_empty
|
484
|
+
-------------------------------------------------------------
|
485
|
+
Started GET "/" for 127.0.0.1 at 2015-01-09 14:25:31 -0500
|
486
|
+
Processing by PagesController#empty as HTML
|
487
|
+
Rendered pages/empty.html.erb (0.7ms)
|
488
|
+
Completed 200 OK in 6ms (Views: 5.5ms)
|
489
|
+
-------------------------------------------------------------
|
490
|
+
RenderingTest: test_the_scratchpad_should_render_if_not_empty
|
491
|
+
-------------------------------------------------------------
|
492
|
+
Started GET "/scratch" for 127.0.0.1 at 2015-01-09 14:25:31 -0500
|
493
|
+
Processing by PagesController#scratch as HTML
|
494
|
+
Rendered pages/scratch.html.erb (0.3ms)
|
495
|
+
Completed 200 OK in 1ms (Views: 1.0ms)
|
496
|
+
--------------------------------------------------------------------------
|
497
|
+
MiddlewareTest: test_the_scratchpad_should_be_empty_without_adding_content
|
498
|
+
--------------------------------------------------------------------------
|
499
|
+
Started GET "/" for 127.0.0.1 at 2015-01-09 14:25:31 -0500
|
500
|
+
Processing by PagesController#empty as HTML
|
501
|
+
Rendered pages/empty.html.erb (0.0ms)
|
502
|
+
Completed 200 OK in 0ms (Views: 0.3ms)
|
503
|
+
----------------------------------------------------------------------------------
|
504
|
+
MiddlewareTest: test_the_scratchpad_shouldn't_be_empty_after_adding_string_content
|
505
|
+
----------------------------------------------------------------------------------
|
506
|
+
Started GET "/scratch" for 127.0.0.1 at 2015-01-09 14:25:31 -0500
|
507
|
+
Processing by PagesController#scratch as HTML
|
508
|
+
Rendered pages/scratch.html.erb (0.0ms)
|
509
|
+
Completed 200 OK in 0ms (Views: 0.2ms)
|
510
|
+
----------------------------------------------------------------------------------
|
511
|
+
MiddlewareTest: test_the_scratchpad_shouldn't_be_empty_after_adding_object_content
|
512
|
+
----------------------------------------------------------------------------------
|
513
|
+
Started GET "/scratch_object" for 127.0.0.1 at 2015-01-09 14:25:31 -0500
|
514
|
+
Processing by PagesController#scratch_object as HTML
|
515
|
+
Rendered pages/scratch_object.html.erb (0.3ms)
|
516
|
+
Completed 200 OK in 1ms (Views: 1.1ms)
|
517
|
+
----------------------------------------------------------------------------------
|
518
|
+
MiddlewareTest: test_the_scratchpad_shouldn't_be_empty_after_adding_string_content
|
519
|
+
----------------------------------------------------------------------------------
|
520
|
+
Started GET "/scratch" for 127.0.0.1 at 2015-01-09 14:29:10 -0500
|
521
|
+
Processing by PagesController#scratch as HTML
|
522
|
+
Rendered pages/scratch.html.erb (0.7ms)
|
523
|
+
Completed 200 OK in 6ms (Views: 5.9ms)
|
524
|
+
--------------------------------------------------------------------------
|
525
|
+
MiddlewareTest: test_the_scratchpad_should_be_empty_without_adding_content
|
526
|
+
--------------------------------------------------------------------------
|
527
|
+
Started GET "/" for 127.0.0.1 at 2015-01-09 14:29:10 -0500
|
528
|
+
Processing by PagesController#empty as HTML
|
529
|
+
Rendered pages/empty.html.erb (0.2ms)
|
530
|
+
Completed 200 OK in 1ms (Views: 1.0ms)
|
531
|
+
----------------------------------------------------------------------------------
|
532
|
+
MiddlewareTest: test_the_scratchpad_shouldn't_be_empty_after_adding_object_content
|
533
|
+
----------------------------------------------------------------------------------
|
534
|
+
Started GET "/scratch_object" for 127.0.0.1 at 2015-01-09 14:29:10 -0500
|
535
|
+
Processing by PagesController#scratch_object as HTML
|
536
|
+
Rendered pages/scratch_object.html.erb (0.2ms)
|
537
|
+
Completed 200 OK in 1ms (Views: 1.0ms)
|
538
|
+
--------------------------------------------------------------------------
|
539
|
+
RenderingTest: test_only_one_scratchpad_should_render_if_multiple_scratchs
|
540
|
+
--------------------------------------------------------------------------
|
541
|
+
Started GET "/multiple_scratch" for 127.0.0.1 at 2015-01-09 14:29:10 -0500
|
542
|
+
Processing by PagesController#multiple_scratch as HTML
|
543
|
+
Rendered pages/multiple_scratch.html.erb (0.3ms)
|
544
|
+
Completed 200 OK in 2ms (Views: 1.8ms)
|
545
|
+
-------------------------------------------------------------
|
546
|
+
RenderingTest: test_the_scratchpad_should_not_render_if_empty
|
547
|
+
-------------------------------------------------------------
|
548
|
+
Started GET "/" for 127.0.0.1 at 2015-01-09 14:29:10 -0500
|
549
|
+
Processing by PagesController#empty as HTML
|
550
|
+
Rendered pages/empty.html.erb (0.0ms)
|
551
|
+
Completed 200 OK in 0ms (Views: 0.3ms)
|
552
|
+
-------------------------------------------------------------
|
553
|
+
RenderingTest: test_the_scratchpad_should_render_if_not_empty
|
554
|
+
-------------------------------------------------------------
|
555
|
+
Started GET "/scratch" for 127.0.0.1 at 2015-01-09 14:29:10 -0500
|
556
|
+
Processing by PagesController#scratch as HTML
|
557
|
+
Rendered pages/scratch.html.erb (0.0ms)
|
558
|
+
Completed 200 OK in 0ms (Views: 0.2ms)
|
559
|
+
--------------------------
|
560
|
+
ScratchpadTest: test_truth
|
561
|
+
--------------------------
|
562
|
+
--------------------------
|
563
|
+
ScratchpadTest: test_truth
|
564
|
+
--------------------------
|
565
|
+
--------------------------------------------------------------------------
|
566
|
+
RenderingTest: test_only_one_scratchpad_should_render_if_multiple_scratchs
|
567
|
+
--------------------------------------------------------------------------
|
568
|
+
Started GET "/multiple_scratch" for 127.0.0.1 at 2015-01-09 14:29:55 -0500
|
569
|
+
Processing by PagesController#multiple_scratch as HTML
|
570
|
+
Rendered pages/multiple_scratch.html.erb (0.8ms)
|
571
|
+
Completed 200 OK in 6ms (Views: 6.1ms)
|
572
|
+
-------------------------------------------------------------
|
573
|
+
RenderingTest: test_the_scratchpad_should_not_render_if_empty
|
574
|
+
-------------------------------------------------------------
|
575
|
+
Started GET "/" for 127.0.0.1 at 2015-01-09 14:29:56 -0500
|
576
|
+
Processing by PagesController#empty as HTML
|
577
|
+
Rendered pages/empty.html.erb (0.2ms)
|
578
|
+
Completed 200 OK in 1ms (Views: 1.1ms)
|
579
|
+
-------------------------------------------------------------
|
580
|
+
RenderingTest: test_the_scratchpad_should_render_if_not_empty
|
581
|
+
-------------------------------------------------------------
|
582
|
+
Started GET "/scratch" for 127.0.0.1 at 2015-01-09 14:29:56 -0500
|
583
|
+
Processing by PagesController#scratch as HTML
|
584
|
+
Rendered pages/scratch.html.erb (0.2ms)
|
585
|
+
Completed 200 OK in 1ms (Views: 1.0ms)
|
586
|
+
----------------------------------------------------------------------------------
|
587
|
+
MiddlewareTest: test_the_scratchpad_shouldn't_be_empty_after_adding_string_content
|
588
|
+
----------------------------------------------------------------------------------
|
589
|
+
Started GET "/scratch" for 127.0.0.1 at 2015-01-09 14:29:56 -0500
|
590
|
+
Processing by PagesController#scratch as HTML
|
591
|
+
Rendered pages/scratch.html.erb (0.0ms)
|
592
|
+
Completed 200 OK in 0ms (Views: 0.3ms)
|
593
|
+
----------------------------------------------------------------------------------
|
594
|
+
MiddlewareTest: test_the_scratchpad_shouldn't_be_empty_after_adding_object_content
|
595
|
+
----------------------------------------------------------------------------------
|
596
|
+
Started GET "/scratch_object" for 127.0.0.1 at 2015-01-09 14:29:56 -0500
|
597
|
+
Processing by PagesController#scratch_object as HTML
|
598
|
+
Rendered pages/scratch_object.html.erb (0.3ms)
|
599
|
+
Completed 200 OK in 1ms (Views: 1.0ms)
|
600
|
+
--------------------------------------------------------------------------
|
601
|
+
MiddlewareTest: test_the_scratchpad_should_be_empty_without_adding_content
|
602
|
+
--------------------------------------------------------------------------
|
603
|
+
Started GET "/" for 127.0.0.1 at 2015-01-09 14:29:56 -0500
|
604
|
+
Processing by PagesController#empty as HTML
|
605
|
+
Rendered pages/empty.html.erb (0.0ms)
|
606
|
+
Completed 200 OK in 0ms (Views: 0.2ms)
|
607
|
+
--------------------------------------------------------------------------
|
608
|
+
RenderingTest: test_only_one_scratchpad_should_render_if_multiple_scratchs
|
609
|
+
--------------------------------------------------------------------------
|
610
|
+
Started GET "/multiple_scratch" for 127.0.0.1 at 2015-01-09 14:31:04 -0500
|
611
|
+
Processing by PagesController#multiple_scratch as HTML
|
612
|
+
Rendered pages/multiple_scratch.html.erb (0.7ms)
|
613
|
+
Completed 200 OK in 6ms (Views: 5.8ms)
|
614
|
+
-------------------------------------------------------------
|
615
|
+
RenderingTest: test_the_scratchpad_should_not_render_if_empty
|
616
|
+
-------------------------------------------------------------
|
617
|
+
Started GET "/" for 127.0.0.1 at 2015-01-09 14:31:04 -0500
|
618
|
+
Processing by PagesController#empty as HTML
|
619
|
+
Rendered pages/empty.html.erb (0.2ms)
|
620
|
+
Completed 200 OK in 1ms (Views: 1.0ms)
|
621
|
+
-------------------------------------------------------------
|
622
|
+
RenderingTest: test_the_scratchpad_should_render_if_not_empty
|
623
|
+
-------------------------------------------------------------
|
624
|
+
Started GET "/scratch" for 127.0.0.1 at 2015-01-09 14:31:04 -0500
|
625
|
+
Processing by PagesController#scratch as HTML
|
626
|
+
Rendered pages/scratch.html.erb (0.2ms)
|
627
|
+
Completed 200 OK in 1ms (Views: 1.0ms)
|
628
|
+
----------------------------------------------------------------------------------
|
629
|
+
MiddlewareTest: test_the_scratchpad_shouldn't_be_empty_after_adding_object_content
|
630
|
+
----------------------------------------------------------------------------------
|
631
|
+
Started GET "/scratch_object" for 127.0.0.1 at 2015-01-09 14:31:04 -0500
|
632
|
+
Processing by PagesController#scratch_object as HTML
|
633
|
+
Rendered pages/scratch_object.html.erb (0.2ms)
|
634
|
+
Completed 200 OK in 1ms (Views: 1.0ms)
|
635
|
+
----------------------------------------------------------------------------------
|
636
|
+
MiddlewareTest: test_the_scratchpad_shouldn't_be_empty_after_adding_string_content
|
637
|
+
----------------------------------------------------------------------------------
|
638
|
+
Started GET "/scratch" for 127.0.0.1 at 2015-01-09 14:31:04 -0500
|
639
|
+
Processing by PagesController#scratch as HTML
|
640
|
+
Rendered pages/scratch.html.erb (0.0ms)
|
641
|
+
Completed 200 OK in 0ms (Views: 0.2ms)
|
642
|
+
--------------------------------------------------------------------------
|
643
|
+
MiddlewareTest: test_the_scratchpad_should_be_empty_without_adding_content
|
644
|
+
--------------------------------------------------------------------------
|
645
|
+
Started GET "/" for 127.0.0.1 at 2015-01-09 14:31:04 -0500
|
646
|
+
Processing by PagesController#empty as HTML
|
647
|
+
Rendered pages/empty.html.erb (0.0ms)
|
648
|
+
Completed 200 OK in 0ms (Views: 0.2ms)
|
649
|
+
--------------------------
|
650
|
+
ScratchpadTest: test_truth
|
651
|
+
--------------------------
|
652
|
+
--------------------------
|
653
|
+
ScratchpadTest: test_truth
|
654
|
+
--------------------------
|
655
|
+
----------------------------------------------------------------------------------
|
656
|
+
MiddlewareTest: test_the_scratchpad_shouldn't_be_empty_after_adding_string_content
|
657
|
+
----------------------------------------------------------------------------------
|
658
|
+
Started GET "/scratch" for 127.0.0.1 at 2015-01-09 14:31:28 -0500
|
659
|
+
Processing by PagesController#scratch as HTML
|
660
|
+
Rendered pages/scratch.html.erb (0.7ms)
|
661
|
+
Completed 200 OK in 6ms (Views: 6.0ms)
|
662
|
+
----------------------------------------------------------------------------------
|
663
|
+
MiddlewareTest: test_the_scratchpad_shouldn't_be_empty_after_adding_object_content
|
664
|
+
----------------------------------------------------------------------------------
|
665
|
+
Started GET "/scratch_object" for 127.0.0.1 at 2015-01-09 14:31:28 -0500
|
666
|
+
Processing by PagesController#scratch_object as HTML
|
667
|
+
Rendered pages/scratch_object.html.erb (0.3ms)
|
668
|
+
Completed 200 OK in 1ms (Views: 1.0ms)
|
669
|
+
--------------------------------------------------------------------------
|
670
|
+
MiddlewareTest: test_the_scratchpad_should_be_empty_without_adding_content
|
671
|
+
--------------------------------------------------------------------------
|
672
|
+
Started GET "/" for 127.0.0.1 at 2015-01-09 14:31:28 -0500
|
673
|
+
Processing by PagesController#empty as HTML
|
674
|
+
Rendered pages/empty.html.erb (0.2ms)
|
675
|
+
Completed 200 OK in 1ms (Views: 1.0ms)
|
676
|
+
--------------------------------------------------------------------------
|
677
|
+
RenderingTest: test_only_one_scratchpad_should_render_if_multiple_scratchs
|
678
|
+
--------------------------------------------------------------------------
|
679
|
+
Started GET "/multiple_scratch" for 127.0.0.1 at 2015-01-09 14:31:28 -0500
|
680
|
+
Processing by PagesController#multiple_scratch as HTML
|
681
|
+
Rendered pages/multiple_scratch.html.erb (0.3ms)
|
682
|
+
Completed 200 OK in 1ms (Views: 1.1ms)
|
683
|
+
-------------------------------------------------------------
|
684
|
+
RenderingTest: test_the_scratchpad_should_not_render_if_empty
|
685
|
+
-------------------------------------------------------------
|
686
|
+
Started GET "/" for 127.0.0.1 at 2015-01-09 14:31:28 -0500
|
687
|
+
Processing by PagesController#empty as HTML
|
688
|
+
Rendered pages/empty.html.erb (0.0ms)
|
689
|
+
Completed 200 OK in 0ms (Views: 0.3ms)
|
690
|
+
-------------------------------------------------------------
|
691
|
+
RenderingTest: test_the_scratchpad_should_render_if_not_empty
|
692
|
+
-------------------------------------------------------------
|
693
|
+
Started GET "/scratch" for 127.0.0.1 at 2015-01-09 14:31:28 -0500
|
694
|
+
Processing by PagesController#scratch as HTML
|
695
|
+
Rendered pages/scratch.html.erb (0.0ms)
|
696
|
+
Completed 200 OK in 0ms (Views: 0.3ms)
|
697
|
+
--------------------------------------------------------------------------
|
698
|
+
MiddlewareTest: test_the_scratchpad_should_be_empty_without_adding_content
|
699
|
+
--------------------------------------------------------------------------
|
700
|
+
Started GET "/" for 127.0.0.1 at 2015-01-09 14:44:39 -0500
|
701
|
+
----------------------------------------------------------------------------------
|
702
|
+
MiddlewareTest: test_the_scratchpad_shouldn't_be_empty_after_adding_string_content
|
703
|
+
----------------------------------------------------------------------------------
|
704
|
+
Started GET "/scratch" for 127.0.0.1 at 2015-01-09 14:44:39 -0500
|
705
|
+
----------------------------------------------------------------------------------
|
706
|
+
MiddlewareTest: test_the_scratchpad_shouldn't_be_empty_after_adding_object_content
|
707
|
+
----------------------------------------------------------------------------------
|
708
|
+
Started GET "/scratch_object" for 127.0.0.1 at 2015-01-09 14:44:39 -0500
|
709
|
+
--------------------------
|
710
|
+
ScratchpadTest: test_truth
|
711
|
+
--------------------------
|
712
|
+
-------------------------------------------------------------
|
713
|
+
RenderingTest: test_the_scratchpad_should_not_render_if_empty
|
714
|
+
-------------------------------------------------------------
|
715
|
+
Started GET "/" for 127.0.0.1 at 2015-01-09 14:44:39 -0500
|
716
|
+
--------------------------------------------------------------------------
|
717
|
+
RenderingTest: test_only_one_scratchpad_should_render_if_multiple_scratchs
|
718
|
+
--------------------------------------------------------------------------
|
719
|
+
Started GET "/multiple_scratch" for 127.0.0.1 at 2015-01-09 14:44:39 -0500
|
720
|
+
-------------------------------------------------------------
|
721
|
+
RenderingTest: test_the_scratchpad_should_render_if_not_empty
|
722
|
+
-------------------------------------------------------------
|
723
|
+
Started GET "/scratch" for 127.0.0.1 at 2015-01-09 14:44:39 -0500
|
724
|
+
--------------------------------------------------------------------------
|
725
|
+
RenderingTest: test_only_one_scratchpad_should_render_if_multiple_scratchs
|
726
|
+
--------------------------------------------------------------------------
|
727
|
+
Started GET "/multiple_scratch" for 127.0.0.1 at 2015-01-09 14:45:10 -0500
|
728
|
+
Processing by PagesController#multiple_scratch as HTML
|
729
|
+
Rendered pages/multiple_scratch.html.erb (0.7ms)
|
730
|
+
Completed 200 OK in 6ms (Views: 5.8ms)
|
731
|
+
-------------------------------------------------------------
|
732
|
+
RenderingTest: test_the_scratchpad_should_render_if_not_empty
|
733
|
+
-------------------------------------------------------------
|
734
|
+
Started GET "/scratch" for 127.0.0.1 at 2015-01-09 14:45:10 -0500
|
735
|
+
Processing by PagesController#scratch as HTML
|
736
|
+
Rendered pages/scratch.html.erb (0.3ms)
|
737
|
+
Completed 200 OK in 1ms (Views: 1.1ms)
|
738
|
+
-------------------------------------------------------------
|
739
|
+
RenderingTest: test_the_scratchpad_should_not_render_if_empty
|
740
|
+
-------------------------------------------------------------
|
741
|
+
Started GET "/" for 127.0.0.1 at 2015-01-09 14:45:10 -0500
|
742
|
+
Processing by PagesController#empty as HTML
|
743
|
+
Rendered pages/empty.html.erb (0.2ms)
|
744
|
+
Completed 200 OK in 1ms (Views: 1.0ms)
|
745
|
+
--------------------------
|
746
|
+
ScratchpadTest: test_truth
|
747
|
+
--------------------------
|
748
|
+
----------------------------------------------------------------------------------
|
749
|
+
MiddlewareTest: test_the_scratchpad_shouldn't_be_empty_after_adding_string_content
|
750
|
+
----------------------------------------------------------------------------------
|
751
|
+
Started GET "/scratch" for 127.0.0.1 at 2015-01-09 14:45:10 -0500
|
752
|
+
Processing by PagesController#scratch as HTML
|
753
|
+
Rendered pages/scratch.html.erb (0.0ms)
|
754
|
+
Completed 200 OK in 0ms (Views: 0.3ms)
|
755
|
+
----------------------------------------------------------------------------------
|
756
|
+
MiddlewareTest: test_the_scratchpad_shouldn't_be_empty_after_adding_object_content
|
757
|
+
----------------------------------------------------------------------------------
|
758
|
+
Started GET "/scratch_object" for 127.0.0.1 at 2015-01-09 14:45:10 -0500
|
759
|
+
Processing by PagesController#scratch_object as HTML
|
760
|
+
Rendered pages/scratch_object.html.erb (0.3ms)
|
761
|
+
Completed 200 OK in 1ms (Views: 1.1ms)
|
762
|
+
--------------------------------------------------------------------------
|
763
|
+
MiddlewareTest: test_the_scratchpad_should_be_empty_without_adding_content
|
764
|
+
--------------------------------------------------------------------------
|
765
|
+
Started GET "/" for 127.0.0.1 at 2015-01-09 14:45:10 -0500
|
766
|
+
Processing by PagesController#empty as HTML
|
767
|
+
Rendered pages/empty.html.erb (0.0ms)
|
768
|
+
Completed 200 OK in 0ms (Views: 0.2ms)
|
769
|
+
--------------------------------------------------------------------------
|
770
|
+
RenderingTest: test_only_one_scratchpad_should_render_if_multiple_scratchs
|
771
|
+
--------------------------------------------------------------------------
|
772
|
+
Started GET "/multiple_scratch" for 127.0.0.1 at 2015-01-09 14:46:43 -0500
|
773
|
+
Processing by PagesController#multiple_scratch as HTML
|
774
|
+
Rendered pages/multiple_scratch.html.erb (0.7ms)
|
775
|
+
Completed 200 OK in 6ms (Views: 6.0ms)
|
776
|
+
-------------------------------------------------------------
|
777
|
+
RenderingTest: test_the_scratchpad_should_not_render_if_empty
|
778
|
+
-------------------------------------------------------------
|
779
|
+
Started GET "/" for 127.0.0.1 at 2015-01-09 14:46:43 -0500
|
780
|
+
Processing by PagesController#empty as HTML
|
781
|
+
Rendered pages/empty.html.erb (0.2ms)
|
782
|
+
Completed 200 OK in 1ms (Views: 1.0ms)
|
783
|
+
-------------------------------------------------------------
|
784
|
+
RenderingTest: test_the_scratchpad_should_render_if_not_empty
|
785
|
+
-------------------------------------------------------------
|
786
|
+
Started GET "/scratch" for 127.0.0.1 at 2015-01-09 14:46:43 -0500
|
787
|
+
Processing by PagesController#scratch as HTML
|
788
|
+
Rendered pages/scratch.html.erb (0.2ms)
|
789
|
+
Completed 200 OK in 1ms (Views: 1.0ms)
|
790
|
+
--------------------------
|
791
|
+
ScratchpadTest: test_truth
|
792
|
+
--------------------------
|
793
|
+
----------------------------------------------------------------------------------
|
794
|
+
MiddlewareTest: test_the_scratchpad_shouldn't_be_empty_after_adding_string_content
|
795
|
+
----------------------------------------------------------------------------------
|
796
|
+
Started GET "/scratch" for 127.0.0.1 at 2015-01-09 14:46:43 -0500
|
797
|
+
Processing by PagesController#scratch as HTML
|
798
|
+
Rendered pages/scratch.html.erb (0.0ms)
|
799
|
+
Completed 200 OK in 0ms (Views: 0.3ms)
|
800
|
+
----------------------------------------------------------------------------------
|
801
|
+
MiddlewareTest: test_the_scratchpad_shouldn't_be_empty_after_adding_object_content
|
802
|
+
----------------------------------------------------------------------------------
|
803
|
+
Started GET "/scratch_object" for 127.0.0.1 at 2015-01-09 14:46:43 -0500
|
804
|
+
Processing by PagesController#scratch_object as HTML
|
805
|
+
Rendered pages/scratch_object.html.erb (0.3ms)
|
806
|
+
Completed 200 OK in 1ms (Views: 1.1ms)
|
807
|
+
--------------------------------------------------------------------------
|
808
|
+
MiddlewareTest: test_the_scratchpad_should_be_empty_without_adding_content
|
809
|
+
--------------------------------------------------------------------------
|
810
|
+
Started GET "/" for 127.0.0.1 at 2015-01-09 14:46:43 -0500
|
811
|
+
Processing by PagesController#empty as HTML
|
812
|
+
Rendered pages/empty.html.erb (0.0ms)
|
813
|
+
Completed 200 OK in 0ms (Views: 0.3ms)
|
814
|
+
--------------------------
|
815
|
+
ScratchpadTest: test_truth
|
816
|
+
--------------------------
|
817
|
+
----------------------------------------------------------------------------------
|
818
|
+
MiddlewareTest: test_the_scratchpad_shouldn't_be_empty_after_adding_string_content
|
819
|
+
----------------------------------------------------------------------------------
|
820
|
+
Started GET "/scratch" for 127.0.0.1 at 2015-01-09 14:49:13 -0500
|
821
|
+
Processing by PagesController#scratch as HTML
|
822
|
+
Rendered pages/scratch.html.erb (0.7ms)
|
823
|
+
Completed 200 OK in 5ms (Views: 5.3ms)
|
824
|
+
----------------------------------------------------------------------------------
|
825
|
+
MiddlewareTest: test_the_scratchpad_shouldn't_be_empty_after_adding_object_content
|
826
|
+
----------------------------------------------------------------------------------
|
827
|
+
Started GET "/scratch_object" for 127.0.0.1 at 2015-01-09 14:49:13 -0500
|
828
|
+
Processing by PagesController#scratch_object as HTML
|
829
|
+
Rendered pages/scratch_object.html.erb (0.2ms)
|
830
|
+
Completed 200 OK in 1ms (Views: 1.0ms)
|
831
|
+
--------------------------------------------------------------------------
|
832
|
+
MiddlewareTest: test_the_scratchpad_should_be_empty_without_adding_content
|
833
|
+
--------------------------------------------------------------------------
|
834
|
+
Started GET "/" for 127.0.0.1 at 2015-01-09 14:49:13 -0500
|
835
|
+
Processing by PagesController#empty as HTML
|
836
|
+
Rendered pages/empty.html.erb (0.2ms)
|
837
|
+
Completed 200 OK in 1ms (Views: 0.9ms)
|
838
|
+
--------------------------------------------------------------------------
|
839
|
+
RenderingTest: test_only_one_scratchpad_should_render_if_multiple_scratchs
|
840
|
+
--------------------------------------------------------------------------
|
841
|
+
Started GET "/multiple_scratch" for 127.0.0.1 at 2015-01-09 14:49:13 -0500
|
842
|
+
Processing by PagesController#multiple_scratch as HTML
|
843
|
+
Rendered pages/multiple_scratch.html.erb (0.3ms)
|
844
|
+
Completed 200 OK in 1ms (Views: 1.2ms)
|
845
|
+
-------------------------------------------------------------
|
846
|
+
RenderingTest: test_the_scratchpad_should_not_render_if_empty
|
847
|
+
-------------------------------------------------------------
|
848
|
+
Started GET "/" for 127.0.0.1 at 2015-01-09 14:49:13 -0500
|
849
|
+
Processing by PagesController#empty as HTML
|
850
|
+
Rendered pages/empty.html.erb (0.0ms)
|
851
|
+
Completed 200 OK in 0ms (Views: 0.2ms)
|
852
|
+
-------------------------------------------------------------
|
853
|
+
RenderingTest: test_the_scratchpad_should_render_if_not_empty
|
854
|
+
-------------------------------------------------------------
|
855
|
+
Started GET "/scratch" for 127.0.0.1 at 2015-01-09 14:49:13 -0500
|
856
|
+
Processing by PagesController#scratch as HTML
|
857
|
+
Rendered pages/scratch.html.erb (0.0ms)
|
858
|
+
Completed 200 OK in 0ms (Views: 0.2ms)
|
859
|
+
--------------------------
|
860
|
+
ScratchpadTest: test_truth
|
861
|
+
--------------------------
|
862
|
+
-------------------------------------------------------------
|
863
|
+
RenderingTest: test_the_scratchpad_should_render_if_not_empty
|
864
|
+
-------------------------------------------------------------
|
865
|
+
Started GET "/scratch" for 127.0.0.1 at 2015-01-09 14:51:46 -0500
|
866
|
+
Processing by PagesController#scratch as HTML
|
867
|
+
Rendered pages/scratch.html.erb (0.7ms)
|
868
|
+
Completed 200 OK in 6ms (Views: 5.9ms)
|
869
|
+
-------------------------------------------------------------
|
870
|
+
RenderingTest: test_the_scratchpad_should_not_render_if_empty
|
871
|
+
-------------------------------------------------------------
|
872
|
+
Started GET "/" for 127.0.0.1 at 2015-01-09 14:51:46 -0500
|
873
|
+
Processing by PagesController#empty as HTML
|
874
|
+
Rendered pages/empty.html.erb (0.2ms)
|
875
|
+
Completed 200 OK in 1ms (Views: 1.1ms)
|
876
|
+
--------------------------------------------------------------------------
|
877
|
+
RenderingTest: test_only_one_scratchpad_should_render_if_multiple_scratchs
|
878
|
+
--------------------------------------------------------------------------
|
879
|
+
Started GET "/multiple_scratch" for 127.0.0.1 at 2015-01-09 14:51:46 -0500
|
880
|
+
Processing by PagesController#multiple_scratch as HTML
|
881
|
+
Rendered pages/multiple_scratch.html.erb (0.3ms)
|
882
|
+
Completed 200 OK in 1ms (Views: 1.1ms)
|
883
|
+
----------------------------------------------------------------------------------
|
884
|
+
MiddlewareTest: test_the_scratchpad_shouldn't_be_empty_after_adding_string_content
|
885
|
+
----------------------------------------------------------------------------------
|
886
|
+
Started GET "/scratch" for 127.0.0.1 at 2015-01-09 14:51:46 -0500
|
887
|
+
Processing by PagesController#scratch as HTML
|
888
|
+
Rendered pages/scratch.html.erb (0.0ms)
|
889
|
+
Completed 200 OK in 0ms (Views: 0.2ms)
|
890
|
+
----------------------------------------------------------------------------------
|
891
|
+
MiddlewareTest: test_the_scratchpad_shouldn't_be_empty_after_adding_object_content
|
892
|
+
----------------------------------------------------------------------------------
|
893
|
+
Started GET "/scratch_object" for 127.0.0.1 at 2015-01-09 14:51:46 -0500
|
894
|
+
Processing by PagesController#scratch_object as HTML
|
895
|
+
Rendered pages/scratch_object.html.erb (0.2ms)
|
896
|
+
Completed 200 OK in 1ms (Views: 1.0ms)
|
897
|
+
--------------------------------------------------------------------------
|
898
|
+
MiddlewareTest: test_the_scratchpad_should_be_empty_without_adding_content
|
899
|
+
--------------------------------------------------------------------------
|
900
|
+
Started GET "/" for 127.0.0.1 at 2015-01-09 14:51:46 -0500
|
901
|
+
Processing by PagesController#empty as HTML
|
902
|
+
Rendered pages/empty.html.erb (0.0ms)
|
903
|
+
Completed 200 OK in 0ms (Views: 0.2ms)
|
904
|
+
--------------------------------------------------------------------------
|
905
|
+
RenderingTest: test_only_one_scratchpad_should_render_if_multiple_scratchs
|
906
|
+
--------------------------------------------------------------------------
|
907
|
+
Started GET "/multiple_scratch" for 127.0.0.1 at 2015-01-09 14:52:05 -0500
|
908
|
+
Processing by PagesController#multiple_scratch as HTML
|
909
|
+
Rendered pages/multiple_scratch.html.erb (0.8ms)
|
910
|
+
Completed 200 OK in 6ms (Views: 5.9ms)
|
911
|
+
-------------------------------------------------------------
|
912
|
+
RenderingTest: test_the_scratchpad_should_not_render_if_empty
|
913
|
+
-------------------------------------------------------------
|
914
|
+
Started GET "/" for 127.0.0.1 at 2015-01-09 14:52:05 -0500
|
915
|
+
Processing by PagesController#empty as HTML
|
916
|
+
Rendered pages/empty.html.erb (0.2ms)
|
917
|
+
Completed 200 OK in 1ms (Views: 1.1ms)
|
918
|
+
-------------------------------------------------------------
|
919
|
+
RenderingTest: test_the_scratchpad_should_render_if_not_empty
|
920
|
+
-------------------------------------------------------------
|
921
|
+
Started GET "/scratch" for 127.0.0.1 at 2015-01-09 14:52:05 -0500
|
922
|
+
Processing by PagesController#scratch as HTML
|
923
|
+
Rendered pages/scratch.html.erb (0.3ms)
|
924
|
+
Completed 200 OK in 1ms (Views: 1.1ms)
|
925
|
+
--------------------------
|
926
|
+
ScratchpadTest: test_truth
|
927
|
+
--------------------------
|
928
|
+
--------------------------------------------------------------------------
|
929
|
+
MiddlewareTest: test_the_scratchpad_should_be_empty_without_adding_content
|
930
|
+
--------------------------------------------------------------------------
|
931
|
+
Started GET "/" for 127.0.0.1 at 2015-01-09 14:52:05 -0500
|
932
|
+
Processing by PagesController#empty as HTML
|
933
|
+
Rendered pages/empty.html.erb (0.0ms)
|
934
|
+
Completed 200 OK in 0ms (Views: 0.2ms)
|
935
|
+
----------------------------------------------------------------------------------
|
936
|
+
MiddlewareTest: test_the_scratchpad_shouldn't_be_empty_after_adding_object_content
|
937
|
+
----------------------------------------------------------------------------------
|
938
|
+
Started GET "/scratch_object" for 127.0.0.1 at 2015-01-09 14:52:05 -0500
|
939
|
+
Processing by PagesController#scratch_object as HTML
|
940
|
+
Rendered pages/scratch_object.html.erb (0.3ms)
|
941
|
+
Completed 200 OK in 1ms (Views: 1.0ms)
|
942
|
+
----------------------------------------------------------------------------------
|
943
|
+
MiddlewareTest: test_the_scratchpad_shouldn't_be_empty_after_adding_string_content
|
944
|
+
----------------------------------------------------------------------------------
|
945
|
+
Started GET "/scratch" for 127.0.0.1 at 2015-01-09 14:52:05 -0500
|
946
|
+
Processing by PagesController#scratch as HTML
|
947
|
+
Rendered pages/scratch.html.erb (0.0ms)
|
948
|
+
Completed 200 OK in 0ms (Views: 0.2ms)
|
949
|
+
--------------------------
|
950
|
+
ScratchpadTest: test_truth
|
951
|
+
--------------------------
|
952
|
+
----------------------------------------------------------------------------------
|
953
|
+
MiddlewareTest: test_the_scratchpad_shouldn't_be_empty_after_adding_string_content
|
954
|
+
----------------------------------------------------------------------------------
|
955
|
+
Started GET "/scratch" for 127.0.0.1 at 2015-01-09 14:52:22 -0500
|
956
|
+
Processing by PagesController#scratch as HTML
|
957
|
+
Rendered pages/scratch.html.erb (0.7ms)
|
958
|
+
Completed 200 OK in 6ms (Views: 6.0ms)
|
959
|
+
----------------------------------------------------------------------------------
|
960
|
+
MiddlewareTest: test_the_scratchpad_shouldn't_be_empty_after_adding_object_content
|
961
|
+
----------------------------------------------------------------------------------
|
962
|
+
Started GET "/scratch_object" for 127.0.0.1 at 2015-01-09 14:52:22 -0500
|
963
|
+
Processing by PagesController#scratch_object as HTML
|
964
|
+
Rendered pages/scratch_object.html.erb (0.3ms)
|
965
|
+
Completed 200 OK in 1ms (Views: 1.1ms)
|
966
|
+
--------------------------------------------------------------------------
|
967
|
+
MiddlewareTest: test_the_scratchpad_should_be_empty_without_adding_content
|
968
|
+
--------------------------------------------------------------------------
|
969
|
+
Started GET "/" for 127.0.0.1 at 2015-01-09 14:52:22 -0500
|
970
|
+
Processing by PagesController#empty as HTML
|
971
|
+
Rendered pages/empty.html.erb (0.2ms)
|
972
|
+
Completed 200 OK in 1ms (Views: 1.0ms)
|
973
|
+
--------------------------------------------------------------------------
|
974
|
+
RenderingTest: test_only_one_scratchpad_should_render_if_multiple_scratchs
|
975
|
+
--------------------------------------------------------------------------
|
976
|
+
Started GET "/multiple_scratch" for 127.0.0.1 at 2015-01-09 14:52:22 -0500
|
977
|
+
Processing by PagesController#multiple_scratch as HTML
|
978
|
+
Rendered pages/multiple_scratch.html.erb (0.3ms)
|
979
|
+
Completed 200 OK in 1ms (Views: 1.1ms)
|
980
|
+
-------------------------------------------------------------
|
981
|
+
RenderingTest: test_the_scratchpad_should_not_render_if_empty
|
982
|
+
-------------------------------------------------------------
|
983
|
+
Started GET "/" for 127.0.0.1 at 2015-01-09 14:52:22 -0500
|
984
|
+
Processing by PagesController#empty as HTML
|
985
|
+
Rendered pages/empty.html.erb (0.0ms)
|
986
|
+
Completed 200 OK in 0ms (Views: 0.2ms)
|
987
|
+
-------------------------------------------------------------
|
988
|
+
RenderingTest: test_the_scratchpad_should_render_if_not_empty
|
989
|
+
-------------------------------------------------------------
|
990
|
+
Started GET "/scratch" for 127.0.0.1 at 2015-01-09 14:52:22 -0500
|
991
|
+
Processing by PagesController#scratch as HTML
|
992
|
+
Rendered pages/scratch.html.erb (0.0ms)
|
993
|
+
Completed 200 OK in 0ms (Views: 0.3ms)
|
994
|
+
--------------------------------------------------------------------------
|
995
|
+
RenderingTest: test_only_one_scratchpad_should_render_if_multiple_scratchs
|
996
|
+
--------------------------------------------------------------------------
|
997
|
+
Started GET "/multiple_scratch" for 127.0.0.1 at 2015-01-09 14:53:27 -0500
|
998
|
+
Processing by PagesController#multiple_scratch as HTML
|
999
|
+
Rendered pages/multiple_scratch.html.erb (0.8ms)
|
1000
|
+
Completed 200 OK in 6ms (Views: 6.1ms)
|
1001
|
+
-------------------------------------------------------------
|
1002
|
+
RenderingTest: test_the_scratchpad_should_not_render_if_empty
|
1003
|
+
-------------------------------------------------------------
|
1004
|
+
Started GET "/" for 127.0.0.1 at 2015-01-09 14:53:27 -0500
|
1005
|
+
Processing by PagesController#empty as HTML
|
1006
|
+
Rendered pages/empty.html.erb (0.2ms)
|
1007
|
+
Completed 200 OK in 1ms (Views: 1.0ms)
|
1008
|
+
-------------------------------------------------------------
|
1009
|
+
RenderingTest: test_the_scratchpad_should_render_if_not_empty
|
1010
|
+
-------------------------------------------------------------
|
1011
|
+
Started GET "/scratch" for 127.0.0.1 at 2015-01-09 14:53:27 -0500
|
1012
|
+
Processing by PagesController#scratch as HTML
|
1013
|
+
Rendered pages/scratch.html.erb (0.3ms)
|
1014
|
+
Completed 200 OK in 1ms (Views: 1.0ms)
|
1015
|
+
----------------------------------------------------------------------------------
|
1016
|
+
MiddlewareTest: test_the_scratchpad_shouldn't_be_empty_after_adding_string_content
|
1017
|
+
----------------------------------------------------------------------------------
|
1018
|
+
Started GET "/scratch" for 127.0.0.1 at 2015-01-09 14:53:27 -0500
|
1019
|
+
Processing by PagesController#scratch as HTML
|
1020
|
+
Rendered pages/scratch.html.erb (0.0ms)
|
1021
|
+
Completed 200 OK in 0ms (Views: 0.2ms)
|
1022
|
+
----------------------------------------------------------------------------------
|
1023
|
+
MiddlewareTest: test_the_scratchpad_shouldn't_be_empty_after_adding_object_content
|
1024
|
+
----------------------------------------------------------------------------------
|
1025
|
+
Started GET "/scratch_object" for 127.0.0.1 at 2015-01-09 14:53:27 -0500
|
1026
|
+
Processing by PagesController#scratch_object as HTML
|
1027
|
+
Rendered pages/scratch_object.html.erb (0.2ms)
|
1028
|
+
Completed 200 OK in 1ms (Views: 1.0ms)
|
1029
|
+
--------------------------------------------------------------------------
|
1030
|
+
MiddlewareTest: test_the_scratchpad_should_be_empty_without_adding_content
|
1031
|
+
--------------------------------------------------------------------------
|
1032
|
+
Started GET "/" for 127.0.0.1 at 2015-01-09 14:53:27 -0500
|
1033
|
+
Processing by PagesController#empty as HTML
|
1034
|
+
Rendered pages/empty.html.erb (0.0ms)
|
1035
|
+
Completed 200 OK in 0ms (Views: 0.2ms)
|
1036
|
+
--------------------------
|
1037
|
+
ScratchpadTest: test_truth
|
1038
|
+
--------------------------
|
1039
|
+
-----------------------------------------------------------------------
|
1040
|
+
MiddlewareTest: test_the_scratchpad_should_exist_without_adding_content
|
1041
|
+
-----------------------------------------------------------------------
|
1042
|
+
Started GET "/" for 127.0.0.1 at 2015-01-09 14:55:32 -0500
|
1043
|
+
Processing by PagesController#empty as HTML
|
1044
|
+
Rendered pages/empty.html.erb (0.7ms)
|
1045
|
+
Completed 200 OK in 5ms (Views: 5.4ms)
|
1046
|
+
----------------------------------------------------------------------------------
|
1047
|
+
MiddlewareTest: test_the_scratchpad_shouldn't_be_empty_after_adding_string_content
|
1048
|
+
----------------------------------------------------------------------------------
|
1049
|
+
Started GET "/scratch" for 127.0.0.1 at 2015-01-09 14:55:32 -0500
|
1050
|
+
Processing by PagesController#scratch as HTML
|
1051
|
+
Rendered pages/scratch.html.erb (0.2ms)
|
1052
|
+
Completed 200 OK in 1ms (Views: 1.1ms)
|
1053
|
+
----------------------------------------------------------------------------------
|
1054
|
+
MiddlewareTest: test_the_scratchpad_shouldn't_be_empty_after_adding_object_content
|
1055
|
+
----------------------------------------------------------------------------------
|
1056
|
+
Started GET "/scratch_object" for 127.0.0.1 at 2015-01-09 14:55:32 -0500
|
1057
|
+
Processing by PagesController#scratch_object as HTML
|
1058
|
+
Rendered pages/scratch_object.html.erb (0.3ms)
|
1059
|
+
Completed 200 OK in 1ms (Views: 1.1ms)
|
1060
|
+
--------------------------
|
1061
|
+
ScratchpadTest: test_truth
|
1062
|
+
--------------------------
|
1063
|
+
--------------------------------------------------------------------------
|
1064
|
+
RenderingTest: test_only_one_scratchpad_should_render_if_multiple_scratchs
|
1065
|
+
--------------------------------------------------------------------------
|
1066
|
+
Started GET "/multiple_scratch" for 127.0.0.1 at 2015-01-09 14:55:32 -0500
|
1067
|
+
Processing by PagesController#multiple_scratch as HTML
|
1068
|
+
Rendered pages/multiple_scratch.html.erb (0.3ms)
|
1069
|
+
Completed 200 OK in 1ms (Views: 1.1ms)
|
1070
|
+
-------------------------------------------------------------
|
1071
|
+
RenderingTest: test_the_scratchpad_should_not_render_if_empty
|
1072
|
+
-------------------------------------------------------------
|
1073
|
+
Started GET "/" for 127.0.0.1 at 2015-01-09 14:55:32 -0500
|
1074
|
+
Processing by PagesController#empty as HTML
|
1075
|
+
Rendered pages/empty.html.erb (0.0ms)
|
1076
|
+
Completed 200 OK in 0ms (Views: 0.3ms)
|
1077
|
+
-------------------------------------------------------------
|
1078
|
+
RenderingTest: test_the_scratchpad_should_render_if_not_empty
|
1079
|
+
-------------------------------------------------------------
|
1080
|
+
Started GET "/scratch" for 127.0.0.1 at 2015-01-09 14:55:32 -0500
|
1081
|
+
Processing by PagesController#scratch as HTML
|
1082
|
+
Rendered pages/scratch.html.erb (0.0ms)
|
1083
|
+
Completed 200 OK in 0ms (Views: 0.2ms)
|
1084
|
+
--------------------------
|
1085
|
+
ScratchpadTest: test_truth
|
1086
|
+
--------------------------
|
1087
|
+
-------------------------------------------------------------
|
1088
|
+
RenderingTest: test_the_scratchpad_should_render_if_not_empty
|
1089
|
+
-------------------------------------------------------------
|
1090
|
+
Started GET "/scratch" for 127.0.0.1 at 2015-01-09 14:56:10 -0500
|
1091
|
+
Processing by PagesController#scratch as HTML
|
1092
|
+
Rendered pages/scratch.html.erb (0.7ms)
|
1093
|
+
Completed 200 OK in 6ms (Views: 6.2ms)
|
1094
|
+
-------------------------------------------------------------
|
1095
|
+
RenderingTest: test_the_scratchpad_should_not_render_if_empty
|
1096
|
+
-------------------------------------------------------------
|
1097
|
+
Started GET "/" for 127.0.0.1 at 2015-01-09 14:56:10 -0500
|
1098
|
+
Processing by PagesController#empty as HTML
|
1099
|
+
Rendered pages/empty.html.erb (0.2ms)
|
1100
|
+
Completed 200 OK in 1ms (Views: 1.0ms)
|
1101
|
+
--------------------------------------------------------------------------
|
1102
|
+
RenderingTest: test_only_one_scratchpad_should_render_if_multiple_scratchs
|
1103
|
+
--------------------------------------------------------------------------
|
1104
|
+
Started GET "/multiple_scratch" for 127.0.0.1 at 2015-01-09 14:56:10 -0500
|
1105
|
+
Processing by PagesController#multiple_scratch as HTML
|
1106
|
+
Rendered pages/multiple_scratch.html.erb (0.2ms)
|
1107
|
+
Completed 200 OK in 1ms (Views: 1.0ms)
|
1108
|
+
----------------------------------------------------------------------------------
|
1109
|
+
MiddlewareTest: test_the_scratchpad_shouldn't_be_empty_after_adding_string_content
|
1110
|
+
----------------------------------------------------------------------------------
|
1111
|
+
Started GET "/scratch" for 127.0.0.1 at 2015-01-09 14:56:10 -0500
|
1112
|
+
Processing by PagesController#scratch as HTML
|
1113
|
+
Rendered pages/scratch.html.erb (0.0ms)
|
1114
|
+
Completed 200 OK in 0ms (Views: 0.3ms)
|
1115
|
+
----------------------------------------------------------------------------------
|
1116
|
+
MiddlewareTest: test_the_scratchpad_shouldn't_be_empty_after_adding_object_content
|
1117
|
+
----------------------------------------------------------------------------------
|
1118
|
+
Started GET "/scratch_object" for 127.0.0.1 at 2015-01-09 14:56:10 -0500
|
1119
|
+
Processing by PagesController#scratch_object as HTML
|
1120
|
+
Rendered pages/scratch_object.html.erb (0.2ms)
|
1121
|
+
Completed 200 OK in 1ms (Views: 1.0ms)
|
1122
|
+
-----------------------------------------------------------------------
|
1123
|
+
MiddlewareTest: test_the_scratchpad_should_exist_without_adding_content
|
1124
|
+
-----------------------------------------------------------------------
|
1125
|
+
Started GET "/" for 127.0.0.1 at 2015-01-09 14:56:10 -0500
|
1126
|
+
Processing by PagesController#empty as HTML
|
1127
|
+
Rendered pages/empty.html.erb (0.1ms)
|
1128
|
+
Completed 200 OK in 0ms (Views: 0.3ms)
|
1129
|
+
--------------------------------------------------------------------------
|
1130
|
+
RenderingTest: test_only_one_scratchpad_should_render_if_multiple_scratchs
|
1131
|
+
--------------------------------------------------------------------------
|
1132
|
+
Started GET "/multiple_scratch" for 127.0.0.1 at 2015-01-09 14:59:59 -0500
|
1133
|
+
Processing by PagesController#multiple_scratch as HTML
|
1134
|
+
Rendered pages/multiple_scratch.html.erb (0.7ms)
|
1135
|
+
Completed 200 OK in 6ms (Views: 6.1ms)
|
1136
|
+
-------------------------------------------------------------
|
1137
|
+
RenderingTest: test_the_scratchpad_should_not_render_if_empty
|
1138
|
+
-------------------------------------------------------------
|
1139
|
+
Started GET "/" for 127.0.0.1 at 2015-01-09 14:59:59 -0500
|
1140
|
+
Processing by PagesController#empty as HTML
|
1141
|
+
Rendered pages/empty.html.erb (0.2ms)
|
1142
|
+
Completed 200 OK in 1ms (Views: 1.1ms)
|
1143
|
+
-------------------------------------------------------------
|
1144
|
+
RenderingTest: test_the_scratchpad_should_render_if_not_empty
|
1145
|
+
-------------------------------------------------------------
|
1146
|
+
Started GET "/scratch" for 127.0.0.1 at 2015-01-09 14:59:59 -0500
|
1147
|
+
Processing by PagesController#scratch as HTML
|
1148
|
+
Rendered pages/scratch.html.erb (0.3ms)
|
1149
|
+
Completed 200 OK in 1ms (Views: 1.1ms)
|
1150
|
+
--------------------------
|
1151
|
+
ScratchpadTest: test_truth
|
1152
|
+
--------------------------
|
1153
|
+
---------------------------------------------------------------------
|
1154
|
+
MiddlewareTest: test_the_scratchpad_should_be_unique_between_requests
|
1155
|
+
---------------------------------------------------------------------
|
1156
|
+
Started GET "/scratch" for 127.0.0.1 at 2015-01-09 14:59:59 -0500
|
1157
|
+
Processing by PagesController#scratch as HTML
|
1158
|
+
Rendered pages/scratch.html.erb (0.1ms)
|
1159
|
+
Completed 200 OK in 0ms (Views: 0.3ms)
|
1160
|
+
Started GET "/scratch" for 127.0.0.1 at 2015-01-09 14:59:59 -0500
|
1161
|
+
Processing by PagesController#scratch as HTML
|
1162
|
+
Rendered pages/scratch.html.erb (0.0ms)
|
1163
|
+
Completed 200 OK in 0ms (Views: 0.2ms)
|
1164
|
+
---------------------------------------------------------------------
|
1165
|
+
MiddlewareTest: test_the_scratchpad_should_exist_after_adding_content
|
1166
|
+
---------------------------------------------------------------------
|
1167
|
+
Started GET "/scratch" for 127.0.0.1 at 2015-01-09 14:59:59 -0500
|
1168
|
+
Processing by PagesController#scratch as HTML
|
1169
|
+
Rendered pages/scratch.html.erb (0.0ms)
|
1170
|
+
Completed 200 OK in 0ms (Views: 0.2ms)
|
1171
|
+
-----------------------------------------------------------------------
|
1172
|
+
MiddlewareTest: test_the_scratchpad_should_exist_without_adding_content
|
1173
|
+
-----------------------------------------------------------------------
|
1174
|
+
Started GET "/" for 127.0.0.1 at 2015-01-09 14:59:59 -0500
|
1175
|
+
Processing by PagesController#empty as HTML
|
1176
|
+
Rendered pages/empty.html.erb (0.0ms)
|
1177
|
+
Completed 200 OK in 0ms (Views: 0.2ms)
|
1178
|
+
-------------------------------------------------------------
|
1179
|
+
RenderingTest: test_the_scratchpad_should_render_if_not_empty
|
1180
|
+
-------------------------------------------------------------
|
1181
|
+
Started GET "/scratch" for 127.0.0.1 at 2015-01-09 15:00:46 -0500
|
1182
|
+
Processing by PagesController#scratch as HTML
|
1183
|
+
Rendered pages/scratch.html.erb (0.8ms)
|
1184
|
+
Completed 200 OK in 6ms (Views: 6.0ms)
|
1185
|
+
-------------------------------------------------------------
|
1186
|
+
RenderingTest: test_the_scratchpad_should_not_render_if_empty
|
1187
|
+
-------------------------------------------------------------
|
1188
|
+
Started GET "/" for 127.0.0.1 at 2015-01-09 15:00:46 -0500
|
1189
|
+
Processing by PagesController#empty as HTML
|
1190
|
+
Rendered pages/empty.html.erb (0.2ms)
|
1191
|
+
Completed 200 OK in 1ms (Views: 1.0ms)
|
1192
|
+
--------------------------------------------------------------------------
|
1193
|
+
RenderingTest: test_only_one_scratchpad_should_render_if_multiple_scratchs
|
1194
|
+
--------------------------------------------------------------------------
|
1195
|
+
Started GET "/multiple_scratch" for 127.0.0.1 at 2015-01-09 15:00:46 -0500
|
1196
|
+
Processing by PagesController#multiple_scratch as HTML
|
1197
|
+
Rendered pages/multiple_scratch.html.erb (0.2ms)
|
1198
|
+
Completed 200 OK in 1ms (Views: 1.1ms)
|
1199
|
+
---------------------------------------------------------------------
|
1200
|
+
MiddlewareTest: test_the_scratchpad_should_exist_after_adding_content
|
1201
|
+
---------------------------------------------------------------------
|
1202
|
+
Started GET "/scratch" for 127.0.0.1 at 2015-01-09 15:00:46 -0500
|
1203
|
+
Processing by PagesController#scratch as HTML
|
1204
|
+
Rendered pages/scratch.html.erb (0.0ms)
|
1205
|
+
Completed 200 OK in 0ms (Views: 0.3ms)
|
1206
|
+
-----------------------------------------------------------------------
|
1207
|
+
MiddlewareTest: test_the_scratchpad_should_exist_without_adding_content
|
1208
|
+
-----------------------------------------------------------------------
|
1209
|
+
Started GET "/" for 127.0.0.1 at 2015-01-09 15:00:46 -0500
|
1210
|
+
Processing by PagesController#empty as HTML
|
1211
|
+
Rendered pages/empty.html.erb (0.0ms)
|
1212
|
+
Completed 200 OK in 0ms (Views: 0.3ms)
|
1213
|
+
---------------------------------------------------------------------
|
1214
|
+
MiddlewareTest: test_the_scratchpad_should_be_unique_between_requests
|
1215
|
+
---------------------------------------------------------------------
|
1216
|
+
Started GET "/scratch" for 127.0.0.1 at 2015-01-09 15:00:46 -0500
|
1217
|
+
Processing by PagesController#scratch as HTML
|
1218
|
+
Rendered pages/scratch.html.erb (0.0ms)
|
1219
|
+
Completed 200 OK in 0ms (Views: 0.2ms)
|
1220
|
+
Started GET "/scratch" for 127.0.0.1 at 2015-01-09 15:00:46 -0500
|
1221
|
+
Processing by PagesController#scratch as HTML
|
1222
|
+
Rendered pages/scratch.html.erb (0.0ms)
|
1223
|
+
Completed 200 OK in 0ms (Views: 0.2ms)
|
1224
|
+
--------------------------
|
1225
|
+
ScratchpadTest: test_truth
|
1226
|
+
--------------------------
|
1227
|
+
-------------------------------------------------------------
|
1228
|
+
RenderingTest: test_the_scratchpad_should_render_if_not_empty
|
1229
|
+
-------------------------------------------------------------
|
1230
|
+
Started GET "/scratch" for 127.0.0.1 at 2015-01-09 15:02:43 -0500
|
1231
|
+
Processing by PagesController#scratch as HTML
|
1232
|
+
Rendered pages/scratch.html.erb (0.7ms)
|
1233
|
+
Completed 200 OK in 6ms (Views: 5.6ms)
|
1234
|
+
--------------------------------------------------------------------------
|
1235
|
+
RenderingTest: test_only_one_scratchpad_should_render_if_multiple_scratchs
|
1236
|
+
--------------------------------------------------------------------------
|
1237
|
+
Started GET "/multiple_scratch" for 127.0.0.1 at 2015-01-09 15:02:43 -0500
|
1238
|
+
Processing by PagesController#multiple_scratch as HTML
|
1239
|
+
Rendered pages/multiple_scratch.html.erb (0.3ms)
|
1240
|
+
Completed 200 OK in 1ms (Views: 1.1ms)
|
1241
|
+
-------------------------------------------------------------------------
|
1242
|
+
RenderingTest: test_multiple_scratchs_should_render_for_multiple_scratchs
|
1243
|
+
-------------------------------------------------------------------------
|
1244
|
+
Started GET "/multiple_scratch" for 127.0.0.1 at 2015-01-09 15:02:43 -0500
|
1245
|
+
Processing by PagesController#multiple_scratch as HTML
|
1246
|
+
Rendered pages/multiple_scratch.html.erb (0.0ms)
|
1247
|
+
Completed 200 OK in 0ms (Views: 0.3ms)
|
1248
|
+
-------------------------------------------------------------
|
1249
|
+
RenderingTest: test_the_scratchpad_should_not_render_if_empty
|
1250
|
+
-------------------------------------------------------------
|
1251
|
+
Started GET "/" for 127.0.0.1 at 2015-01-09 15:02:43 -0500
|
1252
|
+
Processing by PagesController#empty as HTML
|
1253
|
+
Rendered pages/empty.html.erb (0.2ms)
|
1254
|
+
Completed 200 OK in 1ms (Views: 1.1ms)
|
1255
|
+
--------------------------
|
1256
|
+
ScratchpadTest: test_truth
|
1257
|
+
--------------------------
|
1258
|
+
---------------------------------------------------------------------
|
1259
|
+
MiddlewareTest: test_the_scratchpad_should_be_unique_between_requests
|
1260
|
+
---------------------------------------------------------------------
|
1261
|
+
Started GET "/scratch" for 127.0.0.1 at 2015-01-09 15:02:43 -0500
|
1262
|
+
Processing by PagesController#scratch as HTML
|
1263
|
+
Rendered pages/scratch.html.erb (0.0ms)
|
1264
|
+
Completed 200 OK in 0ms (Views: 0.3ms)
|
1265
|
+
Started GET "/scratch" for 127.0.0.1 at 2015-01-09 15:02:43 -0500
|
1266
|
+
Processing by PagesController#scratch as HTML
|
1267
|
+
Rendered pages/scratch.html.erb (0.0ms)
|
1268
|
+
Completed 200 OK in 0ms (Views: 0.2ms)
|
1269
|
+
-----------------------------------------------------------------------
|
1270
|
+
MiddlewareTest: test_the_scratchpad_should_exist_without_adding_content
|
1271
|
+
-----------------------------------------------------------------------
|
1272
|
+
Started GET "/" for 127.0.0.1 at 2015-01-09 15:02:43 -0500
|
1273
|
+
Processing by PagesController#empty as HTML
|
1274
|
+
Rendered pages/empty.html.erb (0.0ms)
|
1275
|
+
Completed 200 OK in 0ms (Views: 0.2ms)
|
1276
|
+
---------------------------------------------------------------------
|
1277
|
+
MiddlewareTest: test_the_scratchpad_should_exist_after_adding_content
|
1278
|
+
---------------------------------------------------------------------
|
1279
|
+
Started GET "/scratch" for 127.0.0.1 at 2015-01-09 15:02:43 -0500
|
1280
|
+
Processing by PagesController#scratch as HTML
|
1281
|
+
Rendered pages/scratch.html.erb (0.0ms)
|
1282
|
+
Completed 200 OK in 0ms (Views: 0.2ms)
|
1283
|
+
-----------------------------------------------------------------------
|
1284
|
+
MiddlewareTest: test_the_scratchpad_should_exist_without_adding_content
|
1285
|
+
-----------------------------------------------------------------------
|
1286
|
+
Started GET "/" for 127.0.0.1 at 2015-01-09 15:03:45 -0500
|
1287
|
+
Processing by PagesController#empty as HTML
|
1288
|
+
Rendered pages/empty.html.erb (0.7ms)
|
1289
|
+
Completed 200 OK in 6ms (Views: 5.5ms)
|
1290
|
+
---------------------------------------------------------------------
|
1291
|
+
MiddlewareTest: test_the_scratchpad_should_exist_after_adding_content
|
1292
|
+
---------------------------------------------------------------------
|
1293
|
+
Started GET "/scratch" for 127.0.0.1 at 2015-01-09 15:03:45 -0500
|
1294
|
+
Processing by PagesController#scratch as HTML
|
1295
|
+
Rendered pages/scratch.html.erb (0.2ms)
|
1296
|
+
Completed 200 OK in 1ms (Views: 1.1ms)
|
1297
|
+
---------------------------------------------------------------------
|
1298
|
+
MiddlewareTest: test_the_scratchpad_should_be_unique_between_requests
|
1299
|
+
---------------------------------------------------------------------
|
1300
|
+
Started GET "/scratch" for 127.0.0.1 at 2015-01-09 15:03:45 -0500
|
1301
|
+
Processing by PagesController#scratch as HTML
|
1302
|
+
Rendered pages/scratch.html.erb (0.0ms)
|
1303
|
+
Completed 200 OK in 0ms (Views: 0.2ms)
|
1304
|
+
Started GET "/scratch" for 127.0.0.1 at 2015-01-09 15:03:45 -0500
|
1305
|
+
Processing by PagesController#scratch as HTML
|
1306
|
+
Rendered pages/scratch.html.erb (0.0ms)
|
1307
|
+
Completed 200 OK in 0ms (Views: 0.2ms)
|
1308
|
+
-------------------------------------------------------------
|
1309
|
+
RenderingTest: test_the_scratchpad_should_render_if_not_empty
|
1310
|
+
-------------------------------------------------------------
|
1311
|
+
Started GET "/scratch" for 127.0.0.1 at 2015-01-09 15:03:45 -0500
|
1312
|
+
Processing by PagesController#scratch as HTML
|
1313
|
+
Rendered pages/scratch.html.erb (0.0ms)
|
1314
|
+
Completed 200 OK in 0ms (Views: 0.2ms)
|
1315
|
+
--------------------------------------------------------------------------
|
1316
|
+
RenderingTest: test_only_one_scratchpad_should_render_if_multiple_scratchs
|
1317
|
+
--------------------------------------------------------------------------
|
1318
|
+
Started GET "/multiple_scratch" for 127.0.0.1 at 2015-01-09 15:03:45 -0500
|
1319
|
+
Processing by PagesController#multiple_scratch as HTML
|
1320
|
+
Rendered pages/multiple_scratch.html.erb (0.2ms)
|
1321
|
+
Completed 200 OK in 1ms (Views: 1.0ms)
|
1322
|
+
-------------------------------------------------------------
|
1323
|
+
RenderingTest: test_the_scratchpad_should_not_render_if_empty
|
1324
|
+
-------------------------------------------------------------
|
1325
|
+
Started GET "/" for 127.0.0.1 at 2015-01-09 15:03:45 -0500
|
1326
|
+
Processing by PagesController#empty as HTML
|
1327
|
+
Rendered pages/empty.html.erb (0.0ms)
|
1328
|
+
Completed 200 OK in 0ms (Views: 0.2ms)
|
1329
|
+
-------------------------------------------------------------------------
|
1330
|
+
RenderingTest: test_multiple_scratchs_should_render_for_multiple_scratchs
|
1331
|
+
-------------------------------------------------------------------------
|
1332
|
+
Started GET "/multiple_scratch" for 127.0.0.1 at 2015-01-09 15:03:45 -0500
|
1333
|
+
Processing by PagesController#multiple_scratch as HTML
|
1334
|
+
Rendered pages/multiple_scratch.html.erb (0.0ms)
|
1335
|
+
Completed 200 OK in 0ms (Views: 0.2ms)
|
1336
|
+
--------------------------
|
1337
|
+
ScratchpadTest: test_truth
|
1338
|
+
--------------------------
|
1339
|
+
--------------------------
|
1340
|
+
ScratchpadTest: test_truth
|
1341
|
+
--------------------------
|
1342
|
+
-----------------------------------------------------------------------
|
1343
|
+
MiddlewareTest: test_the_scratchpad_should_exist_without_adding_content
|
1344
|
+
-----------------------------------------------------------------------
|
1345
|
+
Started GET "/" for 127.0.0.1 at 2015-01-09 15:06:11 -0500
|
1346
|
+
Processing by PagesController#empty as HTML
|
1347
|
+
Rendered pages/empty.html.erb (0.8ms)
|
1348
|
+
Completed 200 OK in 7ms (Views: 6.7ms)
|
1349
|
+
---------------------------------------------------------------------
|
1350
|
+
MiddlewareTest: test_the_scratchpad_should_exist_after_adding_content
|
1351
|
+
---------------------------------------------------------------------
|
1352
|
+
Started GET "/scratch" for 127.0.0.1 at 2015-01-09 15:06:11 -0500
|
1353
|
+
Processing by PagesController#scratch as HTML
|
1354
|
+
Rendered pages/scratch.html.erb (0.3ms)
|
1355
|
+
Completed 200 OK in 1ms (Views: 1.3ms)
|
1356
|
+
---------------------------------------------------------------------
|
1357
|
+
MiddlewareTest: test_the_scratchpad_should_be_unique_between_requests
|
1358
|
+
---------------------------------------------------------------------
|
1359
|
+
Started GET "/scratch" for 127.0.0.1 at 2015-01-09 15:06:11 -0500
|
1360
|
+
Processing by PagesController#scratch as HTML
|
1361
|
+
Rendered pages/scratch.html.erb (0.0ms)
|
1362
|
+
Completed 200 OK in 0ms (Views: 0.3ms)
|
1363
|
+
Started GET "/scratch" for 127.0.0.1 at 2015-01-09 15:06:11 -0500
|
1364
|
+
Processing by PagesController#scratch as HTML
|
1365
|
+
Rendered pages/scratch.html.erb (0.0ms)
|
1366
|
+
Completed 200 OK in 0ms (Views: 0.2ms)
|
1367
|
+
--------------------------------------------------------------------------
|
1368
|
+
RenderingTest: test_only_one_scratchpad_should_render_if_multiple_scratchs
|
1369
|
+
--------------------------------------------------------------------------
|
1370
|
+
Started GET "/multiple_scratch" for 127.0.0.1 at 2015-01-09 15:06:11 -0500
|
1371
|
+
Processing by PagesController#multiple_scratch as HTML
|
1372
|
+
Rendered pages/multiple_scratch.html.erb (0.3ms)
|
1373
|
+
Completed 200 OK in 1ms (Views: 1.2ms)
|
1374
|
+
-------------------------------------------------------------------------
|
1375
|
+
RenderingTest: test_multiple_scratchs_should_render_for_multiple_scratchs
|
1376
|
+
-------------------------------------------------------------------------
|
1377
|
+
Started GET "/multiple_scratch" for 127.0.0.1 at 2015-01-09 15:06:11 -0500
|
1378
|
+
Processing by PagesController#multiple_scratch as HTML
|
1379
|
+
Rendered pages/multiple_scratch.html.erb (0.1ms)
|
1380
|
+
Completed 200 OK in 0ms (Views: 0.3ms)
|
1381
|
+
-------------------------------------------------------------
|
1382
|
+
RenderingTest: test_the_scratchpad_should_not_render_if_empty
|
1383
|
+
-------------------------------------------------------------
|
1384
|
+
Started GET "/" for 127.0.0.1 at 2015-01-09 15:06:11 -0500
|
1385
|
+
Processing by PagesController#empty as HTML
|
1386
|
+
Rendered pages/empty.html.erb (0.1ms)
|
1387
|
+
Completed 200 OK in 0ms (Views: 0.3ms)
|
1388
|
+
-------------------------------------------------------------
|
1389
|
+
RenderingTest: test_the_scratchpad_should_render_if_not_empty
|
1390
|
+
-------------------------------------------------------------
|
1391
|
+
Started GET "/scratch" for 127.0.0.1 at 2015-01-09 15:06:11 -0500
|
1392
|
+
Processing by PagesController#scratch as HTML
|
1393
|
+
Rendered pages/scratch.html.erb (0.1ms)
|
1394
|
+
Completed 200 OK in 0ms (Views: 0.2ms)
|
1395
|
+
--------------------------
|
1396
|
+
ScratchpadTest: test_truth
|
1397
|
+
--------------------------
|
1398
|
+
-----------------------------------------------------------------------
|
1399
|
+
MiddlewareTest: test_the_scratchpad_should_exist_without_adding_content
|
1400
|
+
-----------------------------------------------------------------------
|
1401
|
+
Started GET "/" for 127.0.0.1 at 2015-01-09 15:06:32 -0500
|
1402
|
+
Processing by PagesController#empty as HTML
|
1403
|
+
Rendered pages/empty.html.erb (0.7ms)
|
1404
|
+
Completed 200 OK in 6ms (Views: 5.9ms)
|
1405
|
+
---------------------------------------------------------------------
|
1406
|
+
MiddlewareTest: test_the_scratchpad_should_be_unique_between_requests
|
1407
|
+
---------------------------------------------------------------------
|
1408
|
+
Started GET "/scratch" for 127.0.0.1 at 2015-01-09 15:06:32 -0500
|
1409
|
+
Processing by PagesController#scratch as HTML
|
1410
|
+
Rendered pages/scratch.html.erb (0.3ms)
|
1411
|
+
Completed 200 OK in 1ms (Views: 1.2ms)
|
1412
|
+
Started GET "/scratch" for 127.0.0.1 at 2015-01-09 15:06:32 -0500
|
1413
|
+
Processing by PagesController#scratch as HTML
|
1414
|
+
Rendered pages/scratch.html.erb (0.0ms)
|
1415
|
+
Completed 200 OK in 0ms (Views: 0.2ms)
|
1416
|
+
---------------------------------------------------------------------
|
1417
|
+
MiddlewareTest: test_the_scratchpad_should_exist_after_adding_content
|
1418
|
+
---------------------------------------------------------------------
|
1419
|
+
Started GET "/scratch" for 127.0.0.1 at 2015-01-09 15:06:32 -0500
|
1420
|
+
Processing by PagesController#scratch as HTML
|
1421
|
+
Rendered pages/scratch.html.erb (0.0ms)
|
1422
|
+
Completed 200 OK in 0ms (Views: 0.2ms)
|
1423
|
+
-------------------------------------------------------------------------
|
1424
|
+
RenderingTest: test_multiple_scratchs_should_render_for_multiple_scratchs
|
1425
|
+
-------------------------------------------------------------------------
|
1426
|
+
Started GET "/multiple_scratch" for 127.0.0.1 at 2015-01-09 15:06:32 -0500
|
1427
|
+
Processing by PagesController#multiple_scratch as HTML
|
1428
|
+
Rendered pages/multiple_scratch.html.erb (0.3ms)
|
1429
|
+
Completed 200 OK in 1ms (Views: 1.1ms)
|
1430
|
+
--------------------------------------------------------------------------
|
1431
|
+
RenderingTest: test_only_one_scratchpad_should_render_if_multiple_scratchs
|
1432
|
+
--------------------------------------------------------------------------
|
1433
|
+
Started GET "/multiple_scratch" for 127.0.0.1 at 2015-01-09 15:06:32 -0500
|
1434
|
+
Processing by PagesController#multiple_scratch as HTML
|
1435
|
+
Rendered pages/multiple_scratch.html.erb (0.0ms)
|
1436
|
+
Completed 200 OK in 0ms (Views: 0.3ms)
|
1437
|
+
-------------------------------------------------------------
|
1438
|
+
RenderingTest: test_the_scratchpad_should_render_if_not_empty
|
1439
|
+
-------------------------------------------------------------
|
1440
|
+
Started GET "/scratch" for 127.0.0.1 at 2015-01-09 15:06:32 -0500
|
1441
|
+
Processing by PagesController#scratch as HTML
|
1442
|
+
Rendered pages/scratch.html.erb (0.0ms)
|
1443
|
+
Completed 200 OK in 0ms (Views: 0.3ms)
|
1444
|
+
-------------------------------------------------------------
|
1445
|
+
RenderingTest: test_the_scratchpad_should_not_render_if_empty
|
1446
|
+
-------------------------------------------------------------
|
1447
|
+
Started GET "/" for 127.0.0.1 at 2015-01-09 15:06:32 -0500
|
1448
|
+
Processing by PagesController#empty as HTML
|
1449
|
+
Rendered pages/empty.html.erb (0.0ms)
|
1450
|
+
Completed 200 OK in 0ms (Views: 0.3ms)
|
1451
|
+
-------------------------------------------------------------
|
1452
|
+
RenderingTest: test_the_scratchpad_should_render_if_not_empty
|
1453
|
+
-------------------------------------------------------------
|
1454
|
+
Started GET "/scratch" for 127.0.0.1 at 2015-01-09 15:07:07 -0500
|
1455
|
+
Processing by PagesController#scratch as HTML
|
1456
|
+
Rendered pages/scratch.html.erb (0.7ms)
|
1457
|
+
Completed 200 OK in 5ms (Views: 5.3ms)
|
1458
|
+
--------------------------------------------------------------------------
|
1459
|
+
RenderingTest: test_only_one_scratchpad_should_render_if_multiple_scratchs
|
1460
|
+
--------------------------------------------------------------------------
|
1461
|
+
Started GET "/multiple_scratch" for 127.0.0.1 at 2015-01-09 15:07:07 -0500
|
1462
|
+
Processing by PagesController#multiple_scratch as HTML
|
1463
|
+
Rendered pages/multiple_scratch.html.erb (0.3ms)
|
1464
|
+
Completed 200 OK in 1ms (Views: 1.1ms)
|
1465
|
+
-------------------------------------------------------------
|
1466
|
+
RenderingTest: test_the_scratchpad_should_not_render_if_empty
|
1467
|
+
-------------------------------------------------------------
|
1468
|
+
Started GET "/" for 127.0.0.1 at 2015-01-09 15:07:07 -0500
|
1469
|
+
Processing by PagesController#empty as HTML
|
1470
|
+
Rendered pages/empty.html.erb (0.2ms)
|
1471
|
+
Completed 200 OK in 1ms (Views: 1.0ms)
|
1472
|
+
-------------------------------------------------------------------------
|
1473
|
+
RenderingTest: test_multiple_scratchs_should_render_for_multiple_scratchs
|
1474
|
+
-------------------------------------------------------------------------
|
1475
|
+
Started GET "/multiple_scratch" for 127.0.0.1 at 2015-01-09 15:07:07 -0500
|
1476
|
+
Processing by PagesController#multiple_scratch as HTML
|
1477
|
+
Rendered pages/multiple_scratch.html.erb (0.0ms)
|
1478
|
+
Completed 200 OK in 0ms (Views: 0.3ms)
|
1479
|
+
--------------------------
|
1480
|
+
ScratchpadTest: test_truth
|
1481
|
+
--------------------------
|
1482
|
+
---------------------------------------------------------------------
|
1483
|
+
MiddlewareTest: test_the_scratchpad_should_exist_after_adding_content
|
1484
|
+
---------------------------------------------------------------------
|
1485
|
+
Started GET "/scratch" for 127.0.0.1 at 2015-01-09 15:07:07 -0500
|
1486
|
+
Processing by PagesController#scratch as HTML
|
1487
|
+
Rendered pages/scratch.html.erb (0.0ms)
|
1488
|
+
Completed 200 OK in 0ms (Views: 0.2ms)
|
1489
|
+
---------------------------------------------------------------------
|
1490
|
+
MiddlewareTest: test_the_scratchpad_should_be_unique_between_requests
|
1491
|
+
---------------------------------------------------------------------
|
1492
|
+
Started GET "/scratch" for 127.0.0.1 at 2015-01-09 15:07:07 -0500
|
1493
|
+
Processing by PagesController#scratch as HTML
|
1494
|
+
Rendered pages/scratch.html.erb (0.0ms)
|
1495
|
+
Completed 200 OK in 0ms (Views: 0.2ms)
|
1496
|
+
Started GET "/scratch" for 127.0.0.1 at 2015-01-09 15:07:07 -0500
|
1497
|
+
Processing by PagesController#scratch as HTML
|
1498
|
+
Rendered pages/scratch.html.erb (0.0ms)
|
1499
|
+
Completed 200 OK in 0ms (Views: 0.2ms)
|
1500
|
+
-----------------------------------------------------------------------
|
1501
|
+
MiddlewareTest: test_the_scratchpad_should_exist_without_adding_content
|
1502
|
+
-----------------------------------------------------------------------
|
1503
|
+
Started GET "/" for 127.0.0.1 at 2015-01-09 15:07:07 -0500
|
1504
|
+
Processing by PagesController#empty as HTML
|
1505
|
+
Rendered pages/empty.html.erb (0.0ms)
|
1506
|
+
Completed 200 OK in 0ms (Views: 0.2ms)
|
1507
|
+
--------------------------
|
1508
|
+
ScratchpadTest: test_truth
|
1509
|
+
--------------------------
|
1510
|
+
-------------------------------------------------------------
|
1511
|
+
RenderingTest: test_the_scratchpad_should_not_render_if_empty
|
1512
|
+
-------------------------------------------------------------
|
1513
|
+
Started GET "/" for 127.0.0.1 at 2015-01-09 15:08:08 -0500
|
1514
|
+
Processing by PagesController#empty as HTML
|
1515
|
+
Rendered pages/empty.html.erb (0.7ms)
|
1516
|
+
Completed 200 OK in 6ms (Views: 5.6ms)
|
1517
|
+
--------------------------------------------------------------------------
|
1518
|
+
RenderingTest: test_only_one_scratchpad_should_render_if_multiple_scratchs
|
1519
|
+
--------------------------------------------------------------------------
|
1520
|
+
Started GET "/multiple_scratch" for 127.0.0.1 at 2015-01-09 15:08:08 -0500
|
1521
|
+
Processing by PagesController#multiple_scratch as HTML
|
1522
|
+
Rendered pages/multiple_scratch.html.erb (0.4ms)
|
1523
|
+
Completed 200 OK in 2ms (Views: 1.6ms)
|
1524
|
+
-------------------------------------------------------------
|
1525
|
+
RenderingTest: test_the_scratchpad_should_render_if_not_empty
|
1526
|
+
-------------------------------------------------------------
|
1527
|
+
Started GET "/scratch" for 127.0.0.1 at 2015-01-09 15:08:08 -0500
|
1528
|
+
Processing by PagesController#scratch as HTML
|
1529
|
+
Rendered pages/scratch.html.erb (0.3ms)
|
1530
|
+
Completed 200 OK in 1ms (Views: 1.3ms)
|
1531
|
+
-------------------------------------------------------------------------
|
1532
|
+
RenderingTest: test_multiple_scratchs_should_render_for_multiple_scratchs
|
1533
|
+
-------------------------------------------------------------------------
|
1534
|
+
Started GET "/multiple_scratch" for 127.0.0.1 at 2015-01-09 15:08:08 -0500
|
1535
|
+
Processing by PagesController#multiple_scratch as HTML
|
1536
|
+
Rendered pages/multiple_scratch.html.erb (0.0ms)
|
1537
|
+
Completed 200 OK in 0ms (Views: 0.3ms)
|
1538
|
+
---------------------------------------------------------------------
|
1539
|
+
MiddlewareTest: test_the_scratchpad_should_exist_after_adding_content
|
1540
|
+
---------------------------------------------------------------------
|
1541
|
+
Started GET "/scratch" for 127.0.0.1 at 2015-01-09 15:08:08 -0500
|
1542
|
+
Processing by PagesController#scratch as HTML
|
1543
|
+
Rendered pages/scratch.html.erb (0.0ms)
|
1544
|
+
Completed 200 OK in 0ms (Views: 0.2ms)
|
1545
|
+
-----------------------------------------------------------------------
|
1546
|
+
MiddlewareTest: test_the_scratchpad_should_exist_without_adding_content
|
1547
|
+
-----------------------------------------------------------------------
|
1548
|
+
Started GET "/" for 127.0.0.1 at 2015-01-09 15:08:08 -0500
|
1549
|
+
Processing by PagesController#empty as HTML
|
1550
|
+
Rendered pages/empty.html.erb (0.0ms)
|
1551
|
+
Completed 200 OK in 0ms (Views: 0.2ms)
|
1552
|
+
---------------------------------------------------------------------
|
1553
|
+
MiddlewareTest: test_the_scratchpad_should_be_unique_between_requests
|
1554
|
+
---------------------------------------------------------------------
|
1555
|
+
Started GET "/scratch" for 127.0.0.1 at 2015-01-09 15:08:08 -0500
|
1556
|
+
Processing by PagesController#scratch as HTML
|
1557
|
+
Rendered pages/scratch.html.erb (0.0ms)
|
1558
|
+
Completed 200 OK in 0ms (Views: 0.2ms)
|
1559
|
+
Started GET "/scratch" for 127.0.0.1 at 2015-01-09 15:08:08 -0500
|
1560
|
+
Processing by PagesController#scratch as HTML
|
1561
|
+
Rendered pages/scratch.html.erb (0.0ms)
|
1562
|
+
Completed 200 OK in 0ms (Views: 0.2ms)
|