scratchpad 0.0.2 → 0.0.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/app/views/scratchpad.html.erb +49 -0
- data/lib/scratchpad/middleware.rb +5 -1
- data/lib/scratchpad/page.rb +7 -6
- data/lib/scratchpad/version.rb +1 -1
- data/test/dummy/log/test.log +1583 -0
- data/test/integration/rendering_test.rb +11 -0
- metadata +3 -3
- data/README.rdoc +0 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: eb8b7dd83470e2ec17dfecabe756fa70350d7314
|
4
|
+
data.tar.gz: f8d22fc04bcb33f5d737641ad6ee90f774f0af8d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b6e2afb965a101e791c545dc8ce04b9f64ac4457659282e78387d31ba53f217a1c6ea0446348d6e81ab5162ef1248d3e80d13a89a75d3ffe2e2d535ef2fac57f
|
7
|
+
data.tar.gz: 0000fe75100aaea472dca53588d1e2714d2f1b4b954b67f5ce1172dc5ea18e73b31045218b79c56ae03e1a73a2678accd7c9c9363da81755c570147f45a2d6b7
|
@@ -0,0 +1,49 @@
|
|
1
|
+
<style>
|
2
|
+
#scratchpad {
|
3
|
+
position: absolute;
|
4
|
+
bottom: 0;
|
5
|
+
background-color: #333;
|
6
|
+
color: whitesmoke;
|
7
|
+
width: 100%;
|
8
|
+
padding: 2px 5px;
|
9
|
+
}
|
10
|
+
#scratchpad-toggle {
|
11
|
+
width: 100%;
|
12
|
+
color: yellowgreen;
|
13
|
+
text-decoration: none;
|
14
|
+
display: block;
|
15
|
+
margin-bottom: 2px;
|
16
|
+
}
|
17
|
+
#scratchpad table {
|
18
|
+
width: 100%;
|
19
|
+
}
|
20
|
+
#scratchpad tr:nth-of-type(odd) {
|
21
|
+
background-color: #555;
|
22
|
+
}
|
23
|
+
#scratchpad.collapsed {
|
24
|
+
height: 22px;
|
25
|
+
overflow: hidden;
|
26
|
+
}
|
27
|
+
</style>
|
28
|
+
|
29
|
+
<div id="scratchpad">
|
30
|
+
<a id="scratchpad-toggle" href="#">Scratchpad <span>+</span></a>
|
31
|
+
<table>
|
32
|
+
<% content.each do |i| %>
|
33
|
+
<tr class='scratch'>
|
34
|
+
<td><%= "#{i[:file]}:#{i[:line]}" %></td>
|
35
|
+
<td><%= CGI::escapeHTML(i[:content].inspect).html_safe %></td>
|
36
|
+
</tr>
|
37
|
+
<% end %>
|
38
|
+
</table>
|
39
|
+
</div>
|
40
|
+
|
41
|
+
<script type="text/javascript">
|
42
|
+
el = document.getElementById("scratchpad-toggle");
|
43
|
+
el.onclick = function() {
|
44
|
+
document.getElementById("scratchpad").classList.toggle("collapsed");
|
45
|
+
return false;
|
46
|
+
};
|
47
|
+
</script>
|
48
|
+
|
49
|
+
|
@@ -7,7 +7,11 @@ module Scratchpad
|
|
7
7
|
def call env
|
8
8
|
scratchpad = Scratchpad::Page.new(env)
|
9
9
|
status, headers, response = @app.call(env)
|
10
|
-
|
10
|
+
if headers["Content-Type"].include? "text/html"
|
11
|
+
[status, headers, [response.body + scratchpad.to_html]]
|
12
|
+
else
|
13
|
+
[status, headers, response]
|
14
|
+
end
|
11
15
|
end
|
12
16
|
end
|
13
17
|
end
|
data/lib/scratchpad/page.rb
CHANGED
@@ -5,16 +5,17 @@ module Scratchpad
|
|
5
5
|
end
|
6
6
|
|
7
7
|
def add content
|
8
|
-
|
8
|
+
file, line = *caller[1].split(':')
|
9
|
+
(@content ||= []) << { content: content.dup, file: file, line: line }
|
9
10
|
end
|
10
11
|
|
11
12
|
def to_html
|
12
13
|
return "" unless @content
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
}
|
14
|
+
ActionView::Base.new(File.dirname(__FILE__)+"../../../app/views").render(
|
15
|
+
file: "scratchpad.html.erb",
|
16
|
+
locals: { content: @content }
|
17
|
+
)
|
18
18
|
end
|
19
|
+
|
19
20
|
end
|
20
21
|
end
|
data/lib/scratchpad/version.rb
CHANGED
data/test/dummy/log/test.log
CHANGED
@@ -4039,3 +4039,1586 @@ Started GET "/" for 127.0.0.1 at 2015-01-09 16:59:41 -0500
|
|
4039
4039
|
Processing by PagesController#empty as HTML
|
4040
4040
|
Rendered pages/empty.html.erb (0.0ms)
|
4041
4041
|
Completed 200 OK in 3ms (Views: 2.7ms)
|
4042
|
+
---------------------------------------------------------------------------
|
4043
|
+
RenderingTest: test_multiple_scratches_should_render_for_multiple_scratches
|
4044
|
+
---------------------------------------------------------------------------
|
4045
|
+
Started GET "/multiple_scratch" for 127.0.0.1 at 2015-01-12 12:31:30 -0500
|
4046
|
+
Processing by PagesController#multiple_scratch as HTML
|
4047
|
+
Rendered pages/multiple_scratch.html.erb (1.4ms)
|
4048
|
+
Completed 200 OK in 11ms (Views: 10.8ms)
|
4049
|
+
-------------------------------------------------------------
|
4050
|
+
RenderingTest: test_the_scratchpad_should_render_if_not_empty
|
4051
|
+
-------------------------------------------------------------
|
4052
|
+
Started GET "/scratch" for 127.0.0.1 at 2015-01-12 12:31:30 -0500
|
4053
|
+
Processing by PagesController#scratch as HTML
|
4054
|
+
Rendered pages/scratch.html.erb (0.3ms)
|
4055
|
+
Completed 200 OK in 1ms (Views: 1.2ms)
|
4056
|
+
-------------------------------------------------------------
|
4057
|
+
RenderingTest: test_the_scratchpad_should_not_render_if_empty
|
4058
|
+
-------------------------------------------------------------
|
4059
|
+
Started GET "/" for 127.0.0.1 at 2015-01-12 12:31:30 -0500
|
4060
|
+
Processing by PagesController#empty as HTML
|
4061
|
+
Rendered pages/empty.html.erb (0.2ms)
|
4062
|
+
Completed 200 OK in 1ms (Views: 1.0ms)
|
4063
|
+
---------------------------------------------------------------------------------
|
4064
|
+
RenderingTest: test_object_scratches_should_render_changed_object_at_each_scratch
|
4065
|
+
---------------------------------------------------------------------------------
|
4066
|
+
Started GET "/multiple_scratch_with_changed_object" for 127.0.0.1 at 2015-01-12 12:31:30 -0500
|
4067
|
+
Processing by PagesController#multiple_scratch_with_changed_object as HTML
|
4068
|
+
Rendered pages/multiple_scratch_with_changed_object.html.erb (1.1ms)
|
4069
|
+
Completed 200 OK in 2ms (Views: 2.0ms)
|
4070
|
+
--------------------------------------------------------------
|
4071
|
+
RenderingTest: test_object_scratches_should_inspect_the_object
|
4072
|
+
--------------------------------------------------------------
|
4073
|
+
Started GET "/scratch_object" for 127.0.0.1 at 2015-01-12 12:31:30 -0500
|
4074
|
+
Processing by PagesController#scratch_object as HTML
|
4075
|
+
Rendered pages/scratch_object.html.erb (0.4ms)
|
4076
|
+
Completed 200 OK in 2ms (Views: 1.7ms)
|
4077
|
+
----------------------------------------------------------------------------
|
4078
|
+
RenderingTest: test_object_scratches_should_render_object_at_time_of_scratch
|
4079
|
+
----------------------------------------------------------------------------
|
4080
|
+
Started GET "/scratch_with_changed_object" for 127.0.0.1 at 2015-01-12 12:31:30 -0500
|
4081
|
+
Processing by PagesController#scratch_with_changed_object as HTML
|
4082
|
+
Rendered pages/scratch_with_changed_object.html.erb (0.5ms)
|
4083
|
+
Completed 200 OK in 2ms (Views: 2.0ms)
|
4084
|
+
---------------------------------------------------------------------------
|
4085
|
+
RenderingTest: test_only_one_scratchpad_should_render_if_multiple_scratches
|
4086
|
+
---------------------------------------------------------------------------
|
4087
|
+
Started GET "/multiple_scratch" for 127.0.0.1 at 2015-01-12 12:31:30 -0500
|
4088
|
+
Processing by PagesController#multiple_scratch as HTML
|
4089
|
+
Rendered pages/multiple_scratch.html.erb (0.1ms)
|
4090
|
+
Completed 200 OK in 0ms (Views: 0.4ms)
|
4091
|
+
---------------------------------------------------------------------
|
4092
|
+
MiddlewareTest: test_the_scratchpad_should_be_unique_between_requests
|
4093
|
+
---------------------------------------------------------------------
|
4094
|
+
Started GET "/scratch" for 127.0.0.1 at 2015-01-12 12:31:30 -0500
|
4095
|
+
Processing by PagesController#scratch as HTML
|
4096
|
+
Rendered pages/scratch.html.erb (0.1ms)
|
4097
|
+
Completed 200 OK in 0ms (Views: 0.3ms)
|
4098
|
+
Started GET "/scratch" for 127.0.0.1 at 2015-01-12 12:31:30 -0500
|
4099
|
+
Processing by PagesController#scratch as HTML
|
4100
|
+
Rendered pages/scratch.html.erb (0.0ms)
|
4101
|
+
Completed 200 OK in 0ms (Views: 0.2ms)
|
4102
|
+
-----------------------------------------------------------------------
|
4103
|
+
MiddlewareTest: test_the_scratchpad_should_exist_without_adding_content
|
4104
|
+
-----------------------------------------------------------------------
|
4105
|
+
Started GET "/" for 127.0.0.1 at 2015-01-12 12:31:30 -0500
|
4106
|
+
Processing by PagesController#empty as HTML
|
4107
|
+
Rendered pages/empty.html.erb (0.1ms)
|
4108
|
+
Completed 200 OK in 0ms (Views: 0.2ms)
|
4109
|
+
---------------------------------------------------------------------
|
4110
|
+
MiddlewareTest: test_the_scratchpad_should_exist_after_adding_content
|
4111
|
+
---------------------------------------------------------------------
|
4112
|
+
Started GET "/scratch" for 127.0.0.1 at 2015-01-12 12:31:30 -0500
|
4113
|
+
Processing by PagesController#scratch as HTML
|
4114
|
+
Rendered pages/scratch.html.erb (0.0ms)
|
4115
|
+
Completed 200 OK in 0ms (Views: 0.2ms)
|
4116
|
+
--------------------------
|
4117
|
+
ScratchpadTest: test_truth
|
4118
|
+
--------------------------
|
4119
|
+
---------------------------------------------------------------------------
|
4120
|
+
RenderingTest: test_multiple_scratches_should_render_for_multiple_scratches
|
4121
|
+
---------------------------------------------------------------------------
|
4122
|
+
Started GET "/multiple_scratch" for 127.0.0.1 at 2015-01-12 12:55:49 -0500
|
4123
|
+
Processing by PagesController#multiple_scratch as HTML
|
4124
|
+
Rendered pages/multiple_scratch.html.erb (11.5ms)
|
4125
|
+
Completed 500 Internal Server Error in 21ms
|
4126
|
+
-------------------------------------------------------------
|
4127
|
+
RenderingTest: test_the_scratchpad_should_render_if_not_empty
|
4128
|
+
-------------------------------------------------------------
|
4129
|
+
Started GET "/scratch" for 127.0.0.1 at 2015-01-12 12:55:49 -0500
|
4130
|
+
Processing by PagesController#scratch as HTML
|
4131
|
+
Rendered pages/scratch.html.erb (11.0ms)
|
4132
|
+
Completed 500 Internal Server Error in 12ms
|
4133
|
+
---------------------------------------------------------------------------
|
4134
|
+
RenderingTest: test_only_one_scratchpad_should_render_if_multiple_scratches
|
4135
|
+
---------------------------------------------------------------------------
|
4136
|
+
Started GET "/multiple_scratch" for 127.0.0.1 at 2015-01-12 12:55:49 -0500
|
4137
|
+
Processing by PagesController#multiple_scratch as HTML
|
4138
|
+
Rendered pages/multiple_scratch.html.erb (9.0ms)
|
4139
|
+
Completed 500 Internal Server Error in 9ms
|
4140
|
+
----------------------------------------------------------------------------
|
4141
|
+
RenderingTest: test_object_scratches_should_render_object_at_time_of_scratch
|
4142
|
+
----------------------------------------------------------------------------
|
4143
|
+
Started GET "/scratch_with_changed_object" for 127.0.0.1 at 2015-01-12 12:55:49 -0500
|
4144
|
+
Processing by PagesController#scratch_with_changed_object as HTML
|
4145
|
+
Rendered pages/scratch_with_changed_object.html.erb (10.8ms)
|
4146
|
+
Completed 500 Internal Server Error in 12ms
|
4147
|
+
---------------------------------------------------------------------------------
|
4148
|
+
RenderingTest: test_object_scratches_should_render_changed_object_at_each_scratch
|
4149
|
+
---------------------------------------------------------------------------------
|
4150
|
+
Started GET "/multiple_scratch_with_changed_object" for 127.0.0.1 at 2015-01-12 12:55:49 -0500
|
4151
|
+
Processing by PagesController#multiple_scratch_with_changed_object as HTML
|
4152
|
+
Rendered pages/multiple_scratch_with_changed_object.html.erb (10.2ms)
|
4153
|
+
Completed 500 Internal Server Error in 11ms
|
4154
|
+
-------------------------------------------------------------
|
4155
|
+
RenderingTest: test_the_scratchpad_should_not_render_if_empty
|
4156
|
+
-------------------------------------------------------------
|
4157
|
+
Started GET "/" for 127.0.0.1 at 2015-01-12 12:55:49 -0500
|
4158
|
+
Processing by PagesController#empty as HTML
|
4159
|
+
Rendered pages/empty.html.erb (0.3ms)
|
4160
|
+
Completed 200 OK in 1ms (Views: 1.3ms)
|
4161
|
+
--------------------------------------------------------------
|
4162
|
+
RenderingTest: test_object_scratches_should_inspect_the_object
|
4163
|
+
--------------------------------------------------------------
|
4164
|
+
Started GET "/scratch_object" for 127.0.0.1 at 2015-01-12 12:55:49 -0500
|
4165
|
+
Processing by PagesController#scratch_object as HTML
|
4166
|
+
Rendered pages/scratch_object.html.erb (14.9ms)
|
4167
|
+
Completed 500 Internal Server Error in 16ms
|
4168
|
+
---------------------------------------------------------------------
|
4169
|
+
MiddlewareTest: test_the_scratchpad_should_be_unique_between_requests
|
4170
|
+
---------------------------------------------------------------------
|
4171
|
+
Started GET "/scratch" for 127.0.0.1 at 2015-01-12 12:55:49 -0500
|
4172
|
+
Processing by PagesController#scratch as HTML
|
4173
|
+
Rendered pages/scratch.html.erb (14.7ms)
|
4174
|
+
Completed 500 Internal Server Error in 15ms
|
4175
|
+
---------------------------------------------------------------------
|
4176
|
+
MiddlewareTest: test_the_scratchpad_should_exist_after_adding_content
|
4177
|
+
---------------------------------------------------------------------
|
4178
|
+
Started GET "/scratch" for 127.0.0.1 at 2015-01-12 12:55:49 -0500
|
4179
|
+
Processing by PagesController#scratch as HTML
|
4180
|
+
Rendered pages/scratch.html.erb (12.6ms)
|
4181
|
+
Completed 500 Internal Server Error in 13ms
|
4182
|
+
-----------------------------------------------------------------------
|
4183
|
+
MiddlewareTest: test_the_scratchpad_should_exist_without_adding_content
|
4184
|
+
-----------------------------------------------------------------------
|
4185
|
+
Started GET "/" for 127.0.0.1 at 2015-01-12 12:55:49 -0500
|
4186
|
+
Processing by PagesController#empty as HTML
|
4187
|
+
Rendered pages/empty.html.erb (0.2ms)
|
4188
|
+
Completed 200 OK in 0ms (Views: 0.4ms)
|
4189
|
+
--------------------------
|
4190
|
+
ScratchpadTest: test_truth
|
4191
|
+
--------------------------
|
4192
|
+
----------------------------------------------------------------------------
|
4193
|
+
RenderingTest: test_object_scratches_should_render_object_at_time_of_scratch
|
4194
|
+
----------------------------------------------------------------------------
|
4195
|
+
Started GET "/scratch_with_changed_object" for 127.0.0.1 at 2015-01-12 12:56:39 -0500
|
4196
|
+
Processing by PagesController#scratch_with_changed_object as HTML
|
4197
|
+
Rendered pages/scratch_with_changed_object.html.erb (11.0ms)
|
4198
|
+
Completed 500 Internal Server Error in 17ms
|
4199
|
+
-------------------------------------------------------------
|
4200
|
+
RenderingTest: test_the_scratchpad_should_not_render_if_empty
|
4201
|
+
-------------------------------------------------------------
|
4202
|
+
Started GET "/" for 127.0.0.1 at 2015-01-12 12:56:39 -0500
|
4203
|
+
Processing by PagesController#empty as HTML
|
4204
|
+
Rendered pages/empty.html.erb (0.2ms)
|
4205
|
+
Completed 200 OK in 1ms (Views: 1.1ms)
|
4206
|
+
---------------------------------------------------------------------------
|
4207
|
+
RenderingTest: test_only_one_scratchpad_should_render_if_multiple_scratches
|
4208
|
+
---------------------------------------------------------------------------
|
4209
|
+
Started GET "/multiple_scratch" for 127.0.0.1 at 2015-01-12 12:56:39 -0500
|
4210
|
+
Processing by PagesController#multiple_scratch as HTML
|
4211
|
+
Rendered pages/multiple_scratch.html.erb (1.2ms)
|
4212
|
+
Completed 500 Internal Server Error in 2ms
|
4213
|
+
-------------------------------------------------------------
|
4214
|
+
RenderingTest: test_the_scratchpad_should_render_if_not_empty
|
4215
|
+
-------------------------------------------------------------
|
4216
|
+
Started GET "/scratch" for 127.0.0.1 at 2015-01-12 12:56:39 -0500
|
4217
|
+
Processing by PagesController#scratch as HTML
|
4218
|
+
Rendered pages/scratch.html.erb (10.4ms)
|
4219
|
+
Completed 500 Internal Server Error in 11ms
|
4220
|
+
---------------------------------------------------------------------------
|
4221
|
+
RenderingTest: test_multiple_scratches_should_render_for_multiple_scratches
|
4222
|
+
---------------------------------------------------------------------------
|
4223
|
+
Started GET "/multiple_scratch" for 127.0.0.1 at 2015-01-12 12:56:39 -0500
|
4224
|
+
Processing by PagesController#multiple_scratch as HTML
|
4225
|
+
Rendered pages/multiple_scratch.html.erb (0.9ms)
|
4226
|
+
Completed 500 Internal Server Error in 1ms
|
4227
|
+
--------------------------------------------------------------
|
4228
|
+
RenderingTest: test_object_scratches_should_inspect_the_object
|
4229
|
+
--------------------------------------------------------------
|
4230
|
+
Started GET "/scratch_object" for 127.0.0.1 at 2015-01-12 12:56:39 -0500
|
4231
|
+
Processing by PagesController#scratch_object as HTML
|
4232
|
+
Rendered pages/scratch_object.html.erb (10.6ms)
|
4233
|
+
Completed 500 Internal Server Error in 12ms
|
4234
|
+
---------------------------------------------------------------------------------
|
4235
|
+
RenderingTest: test_object_scratches_should_render_changed_object_at_each_scratch
|
4236
|
+
---------------------------------------------------------------------------------
|
4237
|
+
Started GET "/multiple_scratch_with_changed_object" for 127.0.0.1 at 2015-01-12 12:56:39 -0500
|
4238
|
+
Processing by PagesController#multiple_scratch_with_changed_object as HTML
|
4239
|
+
Rendered pages/multiple_scratch_with_changed_object.html.erb (11.6ms)
|
4240
|
+
Completed 500 Internal Server Error in 12ms
|
4241
|
+
---------------------------------------------------------------------
|
4242
|
+
MiddlewareTest: test_the_scratchpad_should_be_unique_between_requests
|
4243
|
+
---------------------------------------------------------------------
|
4244
|
+
Started GET "/scratch" for 127.0.0.1 at 2015-01-12 12:56:39 -0500
|
4245
|
+
Processing by PagesController#scratch as HTML
|
4246
|
+
Rendered pages/scratch.html.erb (11.0ms)
|
4247
|
+
Completed 500 Internal Server Error in 11ms
|
4248
|
+
-----------------------------------------------------------------------
|
4249
|
+
MiddlewareTest: test_the_scratchpad_should_exist_without_adding_content
|
4250
|
+
-----------------------------------------------------------------------
|
4251
|
+
Started GET "/" for 127.0.0.1 at 2015-01-12 12:56:39 -0500
|
4252
|
+
Processing by PagesController#empty as HTML
|
4253
|
+
Rendered pages/empty.html.erb (0.1ms)
|
4254
|
+
Completed 200 OK in 1ms (Views: 0.4ms)
|
4255
|
+
---------------------------------------------------------------------
|
4256
|
+
MiddlewareTest: test_the_scratchpad_should_exist_after_adding_content
|
4257
|
+
---------------------------------------------------------------------
|
4258
|
+
Started GET "/scratch" for 127.0.0.1 at 2015-01-12 12:56:39 -0500
|
4259
|
+
Processing by PagesController#scratch as HTML
|
4260
|
+
Rendered pages/scratch.html.erb (13.6ms)
|
4261
|
+
Completed 500 Internal Server Error in 14ms
|
4262
|
+
--------------------------
|
4263
|
+
ScratchpadTest: test_truth
|
4264
|
+
--------------------------
|
4265
|
+
--------------------------
|
4266
|
+
ScratchpadTest: test_truth
|
4267
|
+
--------------------------
|
4268
|
+
---------------------------------------------------------------------
|
4269
|
+
MiddlewareTest: test_the_scratchpad_should_be_unique_between_requests
|
4270
|
+
---------------------------------------------------------------------
|
4271
|
+
Started GET "/scratch" for 127.0.0.1 at 2015-01-12 12:57:34 -0500
|
4272
|
+
Processing by PagesController#scratch as HTML
|
4273
|
+
Rendered pages/scratch.html.erb (0.7ms)
|
4274
|
+
Completed 200 OK in 7ms (Views: 6.7ms)
|
4275
|
+
---------------------------------------------------------------------
|
4276
|
+
MiddlewareTest: test_the_scratchpad_should_exist_after_adding_content
|
4277
|
+
---------------------------------------------------------------------
|
4278
|
+
Started GET "/scratch" for 127.0.0.1 at 2015-01-12 12:57:34 -0500
|
4279
|
+
Processing by PagesController#scratch as HTML
|
4280
|
+
Rendered pages/scratch.html.erb (0.0ms)
|
4281
|
+
Completed 200 OK in 0ms (Views: 0.3ms)
|
4282
|
+
-----------------------------------------------------------------------
|
4283
|
+
MiddlewareTest: test_the_scratchpad_should_exist_without_adding_content
|
4284
|
+
-----------------------------------------------------------------------
|
4285
|
+
Started GET "/" for 127.0.0.1 at 2015-01-12 12:57:34 -0500
|
4286
|
+
Processing by PagesController#empty as HTML
|
4287
|
+
Rendered pages/empty.html.erb (0.2ms)
|
4288
|
+
Completed 200 OK in 1ms (Views: 1.0ms)
|
4289
|
+
-------------------------------------------------------------
|
4290
|
+
RenderingTest: test_the_scratchpad_should_not_render_if_empty
|
4291
|
+
-------------------------------------------------------------
|
4292
|
+
Started GET "/" for 127.0.0.1 at 2015-01-12 12:57:34 -0500
|
4293
|
+
Processing by PagesController#empty as HTML
|
4294
|
+
Rendered pages/empty.html.erb (0.0ms)
|
4295
|
+
Completed 200 OK in 0ms (Views: 0.3ms)
|
4296
|
+
----------------------------------------------------------------------------
|
4297
|
+
RenderingTest: test_object_scratches_should_render_object_at_time_of_scratch
|
4298
|
+
----------------------------------------------------------------------------
|
4299
|
+
Started GET "/scratch_with_changed_object" for 127.0.0.1 at 2015-01-12 12:57:34 -0500
|
4300
|
+
Processing by PagesController#scratch_with_changed_object as HTML
|
4301
|
+
Rendered pages/scratch_with_changed_object.html.erb (0.8ms)
|
4302
|
+
Completed 200 OK in 2ms (Views: 1.7ms)
|
4303
|
+
---------------------------------------------------------------------------
|
4304
|
+
RenderingTest: test_multiple_scratches_should_render_for_multiple_scratches
|
4305
|
+
---------------------------------------------------------------------------
|
4306
|
+
Started GET "/multiple_scratch" for 127.0.0.1 at 2015-01-12 12:57:34 -0500
|
4307
|
+
Processing by PagesController#multiple_scratch as HTML
|
4308
|
+
Rendered pages/multiple_scratch.html.erb (0.3ms)
|
4309
|
+
Completed 200 OK in 1ms (Views: 1.1ms)
|
4310
|
+
---------------------------------------------------------------------------------
|
4311
|
+
RenderingTest: test_object_scratches_should_render_changed_object_at_each_scratch
|
4312
|
+
---------------------------------------------------------------------------------
|
4313
|
+
Started GET "/multiple_scratch_with_changed_object" for 127.0.0.1 at 2015-01-12 12:57:34 -0500
|
4314
|
+
Processing by PagesController#multiple_scratch_with_changed_object as HTML
|
4315
|
+
Rendered pages/multiple_scratch_with_changed_object.html.erb (0.3ms)
|
4316
|
+
Completed 200 OK in 1ms (Views: 1.1ms)
|
4317
|
+
--------------------------------------------------------------
|
4318
|
+
RenderingTest: test_object_scratches_should_inspect_the_object
|
4319
|
+
--------------------------------------------------------------
|
4320
|
+
Started GET "/scratch_object" for 127.0.0.1 at 2015-01-12 12:57:34 -0500
|
4321
|
+
Processing by PagesController#scratch_object as HTML
|
4322
|
+
Rendered pages/scratch_object.html.erb (0.3ms)
|
4323
|
+
Completed 200 OK in 1ms (Views: 1.1ms)
|
4324
|
+
---------------------------------------------------------------------------
|
4325
|
+
RenderingTest: test_only_one_scratchpad_should_render_if_multiple_scratches
|
4326
|
+
---------------------------------------------------------------------------
|
4327
|
+
Started GET "/multiple_scratch" for 127.0.0.1 at 2015-01-12 12:57:34 -0500
|
4328
|
+
Processing by PagesController#multiple_scratch as HTML
|
4329
|
+
Rendered pages/multiple_scratch.html.erb (0.0ms)
|
4330
|
+
Completed 200 OK in 0ms (Views: 0.3ms)
|
4331
|
+
-------------------------------------------------------------
|
4332
|
+
RenderingTest: test_the_scratchpad_should_render_if_not_empty
|
4333
|
+
-------------------------------------------------------------
|
4334
|
+
Started GET "/scratch" for 127.0.0.1 at 2015-01-12 12:57:34 -0500
|
4335
|
+
Processing by PagesController#scratch as HTML
|
4336
|
+
Rendered pages/scratch.html.erb (0.0ms)
|
4337
|
+
Completed 200 OK in 0ms (Views: 0.2ms)
|
4338
|
+
---------------------------------------------------------------------
|
4339
|
+
MiddlewareTest: test_the_scratchpad_should_exist_after_adding_content
|
4340
|
+
---------------------------------------------------------------------
|
4341
|
+
Started GET "/scratch" for 127.0.0.1 at 2015-01-12 12:58:01 -0500
|
4342
|
+
Processing by PagesController#scratch as HTML
|
4343
|
+
Rendered pages/scratch.html.erb (0.7ms)
|
4344
|
+
Completed 200 OK in 7ms (Views: 6.8ms)
|
4345
|
+
---------------------------------------------------------------------
|
4346
|
+
MiddlewareTest: test_the_scratchpad_should_be_unique_between_requests
|
4347
|
+
---------------------------------------------------------------------
|
4348
|
+
Started GET "/scratch" for 127.0.0.1 at 2015-01-12 12:58:01 -0500
|
4349
|
+
Processing by PagesController#scratch as HTML
|
4350
|
+
Rendered pages/scratch.html.erb (0.0ms)
|
4351
|
+
Completed 200 OK in 0ms (Views: 0.3ms)
|
4352
|
+
-----------------------------------------------------------------------
|
4353
|
+
MiddlewareTest: test_the_scratchpad_should_exist_without_adding_content
|
4354
|
+
-----------------------------------------------------------------------
|
4355
|
+
Started GET "/" for 127.0.0.1 at 2015-01-12 12:58:01 -0500
|
4356
|
+
Processing by PagesController#empty as HTML
|
4357
|
+
Rendered pages/empty.html.erb (0.3ms)
|
4358
|
+
Completed 200 OK in 1ms (Views: 1.0ms)
|
4359
|
+
---------------------------------------------------------------------------------
|
4360
|
+
RenderingTest: test_object_scratches_should_render_changed_object_at_each_scratch
|
4361
|
+
---------------------------------------------------------------------------------
|
4362
|
+
Started GET "/multiple_scratch_with_changed_object" for 127.0.0.1 at 2015-01-12 12:58:01 -0500
|
4363
|
+
Processing by PagesController#multiple_scratch_with_changed_object as HTML
|
4364
|
+
Rendered pages/multiple_scratch_with_changed_object.html.erb (0.7ms)
|
4365
|
+
Completed 200 OK in 2ms (Views: 1.6ms)
|
4366
|
+
---------------------------------------------------------------------------
|
4367
|
+
RenderingTest: test_multiple_scratches_should_render_for_multiple_scratches
|
4368
|
+
---------------------------------------------------------------------------
|
4369
|
+
Started GET "/multiple_scratch" for 127.0.0.1 at 2015-01-12 12:58:01 -0500
|
4370
|
+
Processing by PagesController#multiple_scratch as HTML
|
4371
|
+
Rendered pages/multiple_scratch.html.erb (0.3ms)
|
4372
|
+
Completed 200 OK in 1ms (Views: 1.1ms)
|
4373
|
+
-------------------------------------------------------------
|
4374
|
+
RenderingTest: test_the_scratchpad_should_render_if_not_empty
|
4375
|
+
-------------------------------------------------------------
|
4376
|
+
Started GET "/scratch" for 127.0.0.1 at 2015-01-12 12:58:01 -0500
|
4377
|
+
Processing by PagesController#scratch as HTML
|
4378
|
+
Rendered pages/scratch.html.erb (0.1ms)
|
4379
|
+
Completed 200 OK in 0ms (Views: 0.3ms)
|
4380
|
+
-------------------------------------------------------------
|
4381
|
+
RenderingTest: test_the_scratchpad_should_not_render_if_empty
|
4382
|
+
-------------------------------------------------------------
|
4383
|
+
Started GET "/" for 127.0.0.1 at 2015-01-12 12:58:01 -0500
|
4384
|
+
Processing by PagesController#empty as HTML
|
4385
|
+
Rendered pages/empty.html.erb (0.1ms)
|
4386
|
+
Completed 200 OK in 1ms (Views: 0.4ms)
|
4387
|
+
---------------------------------------------------------------------------
|
4388
|
+
RenderingTest: test_only_one_scratchpad_should_render_if_multiple_scratches
|
4389
|
+
---------------------------------------------------------------------------
|
4390
|
+
Started GET "/multiple_scratch" for 127.0.0.1 at 2015-01-12 12:58:01 -0500
|
4391
|
+
Processing by PagesController#multiple_scratch as HTML
|
4392
|
+
Rendered pages/multiple_scratch.html.erb (0.1ms)
|
4393
|
+
Completed 200 OK in 0ms (Views: 0.3ms)
|
4394
|
+
--------------------------------------------------------------
|
4395
|
+
RenderingTest: test_object_scratches_should_inspect_the_object
|
4396
|
+
--------------------------------------------------------------
|
4397
|
+
Started GET "/scratch_object" for 127.0.0.1 at 2015-01-12 12:58:01 -0500
|
4398
|
+
Processing by PagesController#scratch_object as HTML
|
4399
|
+
Rendered pages/scratch_object.html.erb (0.5ms)
|
4400
|
+
Completed 200 OK in 2ms (Views: 1.9ms)
|
4401
|
+
----------------------------------------------------------------------------
|
4402
|
+
RenderingTest: test_object_scratches_should_render_object_at_time_of_scratch
|
4403
|
+
----------------------------------------------------------------------------
|
4404
|
+
Started GET "/scratch_with_changed_object" for 127.0.0.1 at 2015-01-12 12:58:01 -0500
|
4405
|
+
Processing by PagesController#scratch_with_changed_object as HTML
|
4406
|
+
Rendered pages/scratch_with_changed_object.html.erb (0.3ms)
|
4407
|
+
Completed 200 OK in 1ms (Views: 1.1ms)
|
4408
|
+
--------------------------
|
4409
|
+
ScratchpadTest: test_truth
|
4410
|
+
--------------------------
|
4411
|
+
----------------------------------------------------------------------------
|
4412
|
+
RenderingTest: test_object_scratches_should_render_object_at_time_of_scratch
|
4413
|
+
----------------------------------------------------------------------------
|
4414
|
+
Started GET "/scratch_with_changed_object" for 127.0.0.1 at 2015-01-12 12:58:17 -0500
|
4415
|
+
Processing by PagesController#scratch_with_changed_object as HTML
|
4416
|
+
Rendered pages/scratch_with_changed_object.html.erb (1.2ms)
|
4417
|
+
Completed 200 OK in 7ms (Views: 7.2ms)
|
4418
|
+
---------------------------------------------------------------------------
|
4419
|
+
RenderingTest: test_only_one_scratchpad_should_render_if_multiple_scratches
|
4420
|
+
---------------------------------------------------------------------------
|
4421
|
+
Started GET "/multiple_scratch" for 127.0.0.1 at 2015-01-12 12:58:17 -0500
|
4422
|
+
Processing by PagesController#multiple_scratch as HTML
|
4423
|
+
Rendered pages/multiple_scratch.html.erb (0.3ms)
|
4424
|
+
Completed 200 OK in 1ms (Views: 1.1ms)
|
4425
|
+
---------------------------------------------------------------------------------
|
4426
|
+
RenderingTest: test_object_scratches_should_render_changed_object_at_each_scratch
|
4427
|
+
---------------------------------------------------------------------------------
|
4428
|
+
Started GET "/multiple_scratch_with_changed_object" for 127.0.0.1 at 2015-01-12 12:58:17 -0500
|
4429
|
+
Processing by PagesController#multiple_scratch_with_changed_object as HTML
|
4430
|
+
Rendered pages/multiple_scratch_with_changed_object.html.erb (0.3ms)
|
4431
|
+
Completed 200 OK in 1ms (Views: 1.1ms)
|
4432
|
+
---------------------------------------------------------------------------
|
4433
|
+
RenderingTest: test_multiple_scratches_should_render_for_multiple_scratches
|
4434
|
+
---------------------------------------------------------------------------
|
4435
|
+
Started GET "/multiple_scratch" for 127.0.0.1 at 2015-01-12 12:58:17 -0500
|
4436
|
+
Processing by PagesController#multiple_scratch as HTML
|
4437
|
+
Rendered pages/multiple_scratch.html.erb (0.0ms)
|
4438
|
+
Completed 200 OK in 0ms (Views: 0.3ms)
|
4439
|
+
--------------------------------------------------------------
|
4440
|
+
RenderingTest: test_object_scratches_should_inspect_the_object
|
4441
|
+
--------------------------------------------------------------
|
4442
|
+
Started GET "/scratch_object" for 127.0.0.1 at 2015-01-12 12:58:17 -0500
|
4443
|
+
Processing by PagesController#scratch_object as HTML
|
4444
|
+
Rendered pages/scratch_object.html.erb (0.3ms)
|
4445
|
+
Completed 200 OK in 1ms (Views: 1.1ms)
|
4446
|
+
-------------------------------------------------------------
|
4447
|
+
RenderingTest: test_the_scratchpad_should_render_if_not_empty
|
4448
|
+
-------------------------------------------------------------
|
4449
|
+
Started GET "/scratch" for 127.0.0.1 at 2015-01-12 12:58:17 -0500
|
4450
|
+
Processing by PagesController#scratch as HTML
|
4451
|
+
Rendered pages/scratch.html.erb (0.2ms)
|
4452
|
+
Completed 200 OK in 1ms (Views: 1.0ms)
|
4453
|
+
-------------------------------------------------------------
|
4454
|
+
RenderingTest: test_the_scratchpad_should_not_render_if_empty
|
4455
|
+
-------------------------------------------------------------
|
4456
|
+
Started GET "/" for 127.0.0.1 at 2015-01-12 12:58:17 -0500
|
4457
|
+
Processing by PagesController#empty as HTML
|
4458
|
+
Rendered pages/empty.html.erb (0.3ms)
|
4459
|
+
Completed 200 OK in 1ms (Views: 1.3ms)
|
4460
|
+
--------------------------
|
4461
|
+
ScratchpadTest: test_truth
|
4462
|
+
--------------------------
|
4463
|
+
---------------------------------------------------------------------
|
4464
|
+
MiddlewareTest: test_the_scratchpad_should_be_unique_between_requests
|
4465
|
+
---------------------------------------------------------------------
|
4466
|
+
Started GET "/scratch" for 127.0.0.1 at 2015-01-12 12:58:17 -0500
|
4467
|
+
Processing by PagesController#scratch as HTML
|
4468
|
+
Rendered pages/scratch.html.erb (0.0ms)
|
4469
|
+
Completed 200 OK in 0ms (Views: 0.3ms)
|
4470
|
+
---------------------------------------------------------------------
|
4471
|
+
MiddlewareTest: test_the_scratchpad_should_exist_after_adding_content
|
4472
|
+
---------------------------------------------------------------------
|
4473
|
+
Started GET "/scratch" for 127.0.0.1 at 2015-01-12 12:58:17 -0500
|
4474
|
+
Processing by PagesController#scratch as HTML
|
4475
|
+
Rendered pages/scratch.html.erb (0.0ms)
|
4476
|
+
Completed 200 OK in 3ms (Views: 2.9ms)
|
4477
|
+
-----------------------------------------------------------------------
|
4478
|
+
MiddlewareTest: test_the_scratchpad_should_exist_without_adding_content
|
4479
|
+
-----------------------------------------------------------------------
|
4480
|
+
Started GET "/" for 127.0.0.1 at 2015-01-12 12:58:17 -0500
|
4481
|
+
Processing by PagesController#empty as HTML
|
4482
|
+
Rendered pages/empty.html.erb (0.0ms)
|
4483
|
+
Completed 200 OK in 0ms (Views: 0.3ms)
|
4484
|
+
--------------------------
|
4485
|
+
ScratchpadTest: test_truth
|
4486
|
+
--------------------------
|
4487
|
+
---------------------------------------------------------------------------
|
4488
|
+
RenderingTest: test_multiple_scratches_should_render_for_multiple_scratches
|
4489
|
+
---------------------------------------------------------------------------
|
4490
|
+
Started GET "/multiple_scratch" for 127.0.0.1 at 2015-01-12 12:58:44 -0500
|
4491
|
+
Processing by PagesController#multiple_scratch as HTML
|
4492
|
+
Rendered pages/multiple_scratch.html.erb (0.7ms)
|
4493
|
+
Completed 200 OK in 6ms (Views: 6.4ms)
|
4494
|
+
Rendered /Users/mcianni/code/scratchpad/app/views/scratchpad.html.erb (5.3ms)
|
4495
|
+
-------------------------------------------------------------
|
4496
|
+
RenderingTest: test_the_scratchpad_should_not_render_if_empty
|
4497
|
+
-------------------------------------------------------------
|
4498
|
+
Started GET "/" for 127.0.0.1 at 2015-01-12 12:58:44 -0500
|
4499
|
+
Processing by PagesController#empty as HTML
|
4500
|
+
Rendered pages/empty.html.erb (0.2ms)
|
4501
|
+
Completed 200 OK in 1ms (Views: 1.0ms)
|
4502
|
+
---------------------------------------------------------------------------------
|
4503
|
+
RenderingTest: test_object_scratches_should_render_changed_object_at_each_scratch
|
4504
|
+
---------------------------------------------------------------------------------
|
4505
|
+
Started GET "/multiple_scratch_with_changed_object" for 127.0.0.1 at 2015-01-12 12:58:44 -0500
|
4506
|
+
Processing by PagesController#multiple_scratch_with_changed_object as HTML
|
4507
|
+
Rendered pages/multiple_scratch_with_changed_object.html.erb (0.7ms)
|
4508
|
+
Completed 200 OK in 1ms (Views: 1.5ms)
|
4509
|
+
Rendered /Users/mcianni/code/scratchpad/app/views/scratchpad.html.erb (4.6ms)
|
4510
|
+
---------------------------------------------------------------------------
|
4511
|
+
RenderingTest: test_only_one_scratchpad_should_render_if_multiple_scratches
|
4512
|
+
---------------------------------------------------------------------------
|
4513
|
+
Started GET "/multiple_scratch" for 127.0.0.1 at 2015-01-12 12:58:44 -0500
|
4514
|
+
Processing by PagesController#multiple_scratch as HTML
|
4515
|
+
Rendered pages/multiple_scratch.html.erb (0.0ms)
|
4516
|
+
Completed 200 OK in 0ms (Views: 0.3ms)
|
4517
|
+
Rendered /Users/mcianni/code/scratchpad/app/views/scratchpad.html.erb (4.7ms)
|
4518
|
+
----------------------------------------------------------------------------
|
4519
|
+
RenderingTest: test_object_scratches_should_render_object_at_time_of_scratch
|
4520
|
+
----------------------------------------------------------------------------
|
4521
|
+
Started GET "/scratch_with_changed_object" for 127.0.0.1 at 2015-01-12 12:58:44 -0500
|
4522
|
+
Processing by PagesController#scratch_with_changed_object as HTML
|
4523
|
+
Rendered pages/scratch_with_changed_object.html.erb (0.4ms)
|
4524
|
+
Completed 200 OK in 2ms (Views: 1.6ms)
|
4525
|
+
Rendered /Users/mcianni/code/scratchpad/app/views/scratchpad.html.erb (4.4ms)
|
4526
|
+
-------------------------------------------------------------
|
4527
|
+
RenderingTest: test_the_scratchpad_should_render_if_not_empty
|
4528
|
+
-------------------------------------------------------------
|
4529
|
+
Started GET "/scratch" for 127.0.0.1 at 2015-01-12 12:58:44 -0500
|
4530
|
+
Processing by PagesController#scratch as HTML
|
4531
|
+
Rendered pages/scratch.html.erb (0.2ms)
|
4532
|
+
Completed 200 OK in 1ms (Views: 1.0ms)
|
4533
|
+
Rendered /Users/mcianni/code/scratchpad/app/views/scratchpad.html.erb (4.6ms)
|
4534
|
+
--------------------------------------------------------------
|
4535
|
+
RenderingTest: test_object_scratches_should_inspect_the_object
|
4536
|
+
--------------------------------------------------------------
|
4537
|
+
Started GET "/scratch_object" for 127.0.0.1 at 2015-01-12 12:58:44 -0500
|
4538
|
+
Processing by PagesController#scratch_object as HTML
|
4539
|
+
Rendered pages/scratch_object.html.erb (0.2ms)
|
4540
|
+
Completed 200 OK in 1ms (Views: 1.2ms)
|
4541
|
+
Rendered /Users/mcianni/code/scratchpad/app/views/scratchpad.html.erb (4.4ms)
|
4542
|
+
---------------------------------------------------------------------
|
4543
|
+
MiddlewareTest: test_the_scratchpad_should_be_unique_between_requests
|
4544
|
+
---------------------------------------------------------------------
|
4545
|
+
Started GET "/scratch" for 127.0.0.1 at 2015-01-12 12:58:44 -0500
|
4546
|
+
Processing by PagesController#scratch as HTML
|
4547
|
+
Rendered pages/scratch.html.erb (0.0ms)
|
4548
|
+
Completed 200 OK in 0ms (Views: 0.3ms)
|
4549
|
+
Rendered /Users/mcianni/code/scratchpad/app/views/scratchpad.html.erb (4.6ms)
|
4550
|
+
-----------------------------------------------------------------------
|
4551
|
+
MiddlewareTest: test_the_scratchpad_should_exist_without_adding_content
|
4552
|
+
-----------------------------------------------------------------------
|
4553
|
+
Started GET "/" for 127.0.0.1 at 2015-01-12 12:58:44 -0500
|
4554
|
+
Processing by PagesController#empty as HTML
|
4555
|
+
Rendered pages/empty.html.erb (0.0ms)
|
4556
|
+
Completed 200 OK in 0ms (Views: 0.2ms)
|
4557
|
+
---------------------------------------------------------------------
|
4558
|
+
MiddlewareTest: test_the_scratchpad_should_exist_after_adding_content
|
4559
|
+
---------------------------------------------------------------------
|
4560
|
+
Started GET "/scratch" for 127.0.0.1 at 2015-01-12 12:58:44 -0500
|
4561
|
+
Processing by PagesController#scratch as HTML
|
4562
|
+
Rendered pages/scratch.html.erb (0.0ms)
|
4563
|
+
Completed 200 OK in 0ms (Views: 0.2ms)
|
4564
|
+
Rendered /Users/mcianni/code/scratchpad/app/views/scratchpad.html.erb (4.5ms)
|
4565
|
+
--------------------------
|
4566
|
+
ScratchpadTest: test_truth
|
4567
|
+
--------------------------
|
4568
|
+
---------------------------------------------------------------------
|
4569
|
+
MiddlewareTest: test_the_scratchpad_should_be_unique_between_requests
|
4570
|
+
---------------------------------------------------------------------
|
4571
|
+
Started GET "/scratch" for 127.0.0.1 at 2015-01-12 12:59:07 -0500
|
4572
|
+
Processing by PagesController#scratch as HTML
|
4573
|
+
Rendered pages/scratch.html.erb (0.8ms)
|
4574
|
+
Completed 200 OK in 7ms (Views: 6.8ms)
|
4575
|
+
Rendered /Users/mcianni/code/scratchpad/app/views/scratchpad.html.erb (0.4ms)
|
4576
|
+
Started GET "/scratch" for 127.0.0.1 at 2015-01-12 12:59:07 -0500
|
4577
|
+
Processing by PagesController#scratch as HTML
|
4578
|
+
Rendered pages/scratch.html.erb (0.0ms)
|
4579
|
+
Completed 200 OK in 0ms (Views: 0.2ms)
|
4580
|
+
Rendered /Users/mcianni/code/scratchpad/app/views/scratchpad.html.erb (0.3ms)
|
4581
|
+
---------------------------------------------------------------------
|
4582
|
+
MiddlewareTest: test_the_scratchpad_should_exist_after_adding_content
|
4583
|
+
---------------------------------------------------------------------
|
4584
|
+
Started GET "/scratch" for 127.0.0.1 at 2015-01-12 12:59:07 -0500
|
4585
|
+
Processing by PagesController#scratch as HTML
|
4586
|
+
Rendered pages/scratch.html.erb (0.1ms)
|
4587
|
+
Completed 200 OK in 0ms (Views: 0.3ms)
|
4588
|
+
Rendered /Users/mcianni/code/scratchpad/app/views/scratchpad.html.erb (0.3ms)
|
4589
|
+
-----------------------------------------------------------------------
|
4590
|
+
MiddlewareTest: test_the_scratchpad_should_exist_without_adding_content
|
4591
|
+
-----------------------------------------------------------------------
|
4592
|
+
Started GET "/" for 127.0.0.1 at 2015-01-12 12:59:07 -0500
|
4593
|
+
Processing by PagesController#empty as HTML
|
4594
|
+
Rendered pages/empty.html.erb (0.2ms)
|
4595
|
+
Completed 200 OK in 1ms (Views: 1.0ms)
|
4596
|
+
----------------------------------------------------------------------------
|
4597
|
+
RenderingTest: test_object_scratches_should_render_object_at_time_of_scratch
|
4598
|
+
----------------------------------------------------------------------------
|
4599
|
+
Started GET "/scratch_with_changed_object" for 127.0.0.1 at 2015-01-12 12:59:07 -0500
|
4600
|
+
Processing by PagesController#scratch_with_changed_object as HTML
|
4601
|
+
Rendered pages/scratch_with_changed_object.html.erb (0.8ms)
|
4602
|
+
Completed 200 OK in 2ms (Views: 1.7ms)
|
4603
|
+
Rendered /Users/mcianni/code/scratchpad/app/views/scratchpad.html.erb (0.4ms)
|
4604
|
+
--------------------------------------------------------------
|
4605
|
+
RenderingTest: test_object_scratches_should_inspect_the_object
|
4606
|
+
--------------------------------------------------------------
|
4607
|
+
Started GET "/scratch_object" for 127.0.0.1 at 2015-01-12 12:59:07 -0500
|
4608
|
+
Processing by PagesController#scratch_object as HTML
|
4609
|
+
Rendered pages/scratch_object.html.erb (0.3ms)
|
4610
|
+
Completed 200 OK in 1ms (Views: 1.2ms)
|
4611
|
+
Rendered /Users/mcianni/code/scratchpad/app/views/scratchpad.html.erb (0.3ms)
|
4612
|
+
-------------------------------------------------------------
|
4613
|
+
RenderingTest: test_the_scratchpad_should_not_render_if_empty
|
4614
|
+
-------------------------------------------------------------
|
4615
|
+
Started GET "/" for 127.0.0.1 at 2015-01-12 12:59:07 -0500
|
4616
|
+
Processing by PagesController#empty as HTML
|
4617
|
+
Rendered pages/empty.html.erb (0.0ms)
|
4618
|
+
Completed 200 OK in 0ms (Views: 0.3ms)
|
4619
|
+
---------------------------------------------------------------------------
|
4620
|
+
RenderingTest: test_only_one_scratchpad_should_render_if_multiple_scratches
|
4621
|
+
---------------------------------------------------------------------------
|
4622
|
+
Started GET "/multiple_scratch" for 127.0.0.1 at 2015-01-12 12:59:07 -0500
|
4623
|
+
Processing by PagesController#multiple_scratch as HTML
|
4624
|
+
Rendered pages/multiple_scratch.html.erb (0.3ms)
|
4625
|
+
Completed 200 OK in 1ms (Views: 1.1ms)
|
4626
|
+
Rendered /Users/mcianni/code/scratchpad/app/views/scratchpad.html.erb (3.3ms)
|
4627
|
+
---------------------------------------------------------------------------
|
4628
|
+
RenderingTest: test_multiple_scratches_should_render_for_multiple_scratches
|
4629
|
+
---------------------------------------------------------------------------
|
4630
|
+
Started GET "/multiple_scratch" for 127.0.0.1 at 2015-01-12 12:59:07 -0500
|
4631
|
+
Processing by PagesController#multiple_scratch as HTML
|
4632
|
+
Rendered pages/multiple_scratch.html.erb (0.1ms)
|
4633
|
+
Completed 200 OK in 0ms (Views: 0.3ms)
|
4634
|
+
Rendered /Users/mcianni/code/scratchpad/app/views/scratchpad.html.erb (0.4ms)
|
4635
|
+
---------------------------------------------------------------------------------
|
4636
|
+
RenderingTest: test_object_scratches_should_render_changed_object_at_each_scratch
|
4637
|
+
---------------------------------------------------------------------------------
|
4638
|
+
Started GET "/multiple_scratch_with_changed_object" for 127.0.0.1 at 2015-01-12 12:59:07 -0500
|
4639
|
+
Processing by PagesController#multiple_scratch_with_changed_object as HTML
|
4640
|
+
Rendered pages/multiple_scratch_with_changed_object.html.erb (0.5ms)
|
4641
|
+
Completed 200 OK in 2ms (Views: 2.1ms)
|
4642
|
+
Rendered /Users/mcianni/code/scratchpad/app/views/scratchpad.html.erb (0.4ms)
|
4643
|
+
-------------------------------------------------------------
|
4644
|
+
RenderingTest: test_the_scratchpad_should_render_if_not_empty
|
4645
|
+
-------------------------------------------------------------
|
4646
|
+
Started GET "/scratch" for 127.0.0.1 at 2015-01-12 12:59:07 -0500
|
4647
|
+
Processing by PagesController#scratch as HTML
|
4648
|
+
Rendered pages/scratch.html.erb (0.1ms)
|
4649
|
+
Completed 200 OK in 0ms (Views: 0.3ms)
|
4650
|
+
Rendered /Users/mcianni/code/scratchpad/app/views/scratchpad.html.erb (0.4ms)
|
4651
|
+
--------------------------
|
4652
|
+
ScratchpadTest: test_truth
|
4653
|
+
--------------------------
|
4654
|
+
--------------------------------------------------------------
|
4655
|
+
RenderingTest: test_object_scratches_should_inspect_the_object
|
4656
|
+
--------------------------------------------------------------
|
4657
|
+
Started GET "/scratch_object" for 127.0.0.1 at 2015-01-12 13:10:33 -0500
|
4658
|
+
Processing by PagesController#scratch_object as HTML
|
4659
|
+
Rendered pages/scratch_object.html.erb (1.7ms)
|
4660
|
+
Completed 200 OK in 8ms (Views: 8.3ms)
|
4661
|
+
---------------------------------------------------------------------------
|
4662
|
+
RenderingTest: test_multiple_scratches_should_render_for_multiple_scratches
|
4663
|
+
---------------------------------------------------------------------------
|
4664
|
+
Started GET "/multiple_scratch" for 127.0.0.1 at 2015-01-12 13:10:33 -0500
|
4665
|
+
Processing by PagesController#multiple_scratch as HTML
|
4666
|
+
Rendered pages/multiple_scratch.html.erb (0.3ms)
|
4667
|
+
Completed 200 OK in 1ms (Views: 1.0ms)
|
4668
|
+
-------------------------------------------------------------
|
4669
|
+
RenderingTest: test_the_scratchpad_should_not_render_if_empty
|
4670
|
+
-------------------------------------------------------------
|
4671
|
+
Started GET "/" for 127.0.0.1 at 2015-01-12 13:10:33 -0500
|
4672
|
+
Processing by PagesController#empty as HTML
|
4673
|
+
Rendered pages/empty.html.erb (0.2ms)
|
4674
|
+
Completed 200 OK in 1ms (Views: 1.0ms)
|
4675
|
+
---------------------------------------------------------------------------------
|
4676
|
+
RenderingTest: test_object_scratches_should_render_changed_object_at_each_scratch
|
4677
|
+
---------------------------------------------------------------------------------
|
4678
|
+
Started GET "/multiple_scratch_with_changed_object" for 127.0.0.1 at 2015-01-12 13:10:33 -0500
|
4679
|
+
Processing by PagesController#multiple_scratch_with_changed_object as HTML
|
4680
|
+
Rendered pages/multiple_scratch_with_changed_object.html.erb (0.3ms)
|
4681
|
+
Completed 200 OK in 1ms (Views: 1.1ms)
|
4682
|
+
-------------------------------------------------------------
|
4683
|
+
RenderingTest: test_the_scratchpad_should_render_if_not_empty
|
4684
|
+
-------------------------------------------------------------
|
4685
|
+
Started GET "/scratch" for 127.0.0.1 at 2015-01-12 13:10:33 -0500
|
4686
|
+
Processing by PagesController#scratch as HTML
|
4687
|
+
Rendered pages/scratch.html.erb (0.3ms)
|
4688
|
+
Completed 200 OK in 1ms (Views: 1.2ms)
|
4689
|
+
----------------------------------------------------------------------------
|
4690
|
+
RenderingTest: test_object_scratches_should_render_object_at_time_of_scratch
|
4691
|
+
----------------------------------------------------------------------------
|
4692
|
+
Started GET "/scratch_with_changed_object" for 127.0.0.1 at 2015-01-12 13:10:33 -0500
|
4693
|
+
Processing by PagesController#scratch_with_changed_object as HTML
|
4694
|
+
Rendered pages/scratch_with_changed_object.html.erb (0.3ms)
|
4695
|
+
Completed 200 OK in 1ms (Views: 1.0ms)
|
4696
|
+
---------------------------------------------------------------------------
|
4697
|
+
RenderingTest: test_only_one_scratchpad_should_render_if_multiple_scratches
|
4698
|
+
---------------------------------------------------------------------------
|
4699
|
+
Started GET "/multiple_scratch" for 127.0.0.1 at 2015-01-12 13:10:33 -0500
|
4700
|
+
Processing by PagesController#multiple_scratch as HTML
|
4701
|
+
Rendered pages/multiple_scratch.html.erb (0.0ms)
|
4702
|
+
Completed 200 OK in 0ms (Views: 0.3ms)
|
4703
|
+
-----------------------------------------------------------------------
|
4704
|
+
MiddlewareTest: test_the_scratchpad_should_exist_without_adding_content
|
4705
|
+
-----------------------------------------------------------------------
|
4706
|
+
Started GET "/" for 127.0.0.1 at 2015-01-12 13:10:33 -0500
|
4707
|
+
Processing by PagesController#empty as HTML
|
4708
|
+
Rendered pages/empty.html.erb (0.0ms)
|
4709
|
+
Completed 200 OK in 0ms (Views: 0.2ms)
|
4710
|
+
---------------------------------------------------------------------
|
4711
|
+
MiddlewareTest: test_the_scratchpad_should_exist_after_adding_content
|
4712
|
+
---------------------------------------------------------------------
|
4713
|
+
Started GET "/scratch" for 127.0.0.1 at 2015-01-12 13:10:34 -0500
|
4714
|
+
Processing by PagesController#scratch as HTML
|
4715
|
+
Rendered pages/scratch.html.erb (0.0ms)
|
4716
|
+
Completed 200 OK in 0ms (Views: 0.2ms)
|
4717
|
+
---------------------------------------------------------------------
|
4718
|
+
MiddlewareTest: test_the_scratchpad_should_be_unique_between_requests
|
4719
|
+
---------------------------------------------------------------------
|
4720
|
+
Started GET "/scratch" for 127.0.0.1 at 2015-01-12 13:10:34 -0500
|
4721
|
+
Processing by PagesController#scratch as HTML
|
4722
|
+
Rendered pages/scratch.html.erb (0.0ms)
|
4723
|
+
Completed 200 OK in 0ms (Views: 0.3ms)
|
4724
|
+
---------------------------------------------------------------------
|
4725
|
+
MiddlewareTest: test_the_scratchpad_should_exist_after_adding_content
|
4726
|
+
---------------------------------------------------------------------
|
4727
|
+
Started GET "/scratch" for 127.0.0.1 at 2015-01-12 13:10:57 -0500
|
4728
|
+
Processing by PagesController#scratch as HTML
|
4729
|
+
Rendered pages/scratch.html.erb (1.0ms)
|
4730
|
+
Completed 200 OK in 11ms (Views: 11.0ms)
|
4731
|
+
---------------------------------------------------------------------
|
4732
|
+
MiddlewareTest: test_the_scratchpad_should_be_unique_between_requests
|
4733
|
+
---------------------------------------------------------------------
|
4734
|
+
Started GET "/scratch" for 127.0.0.1 at 2015-01-12 13:10:57 -0500
|
4735
|
+
Processing by PagesController#scratch as HTML
|
4736
|
+
Rendered pages/scratch.html.erb (0.0ms)
|
4737
|
+
Completed 200 OK in 0ms (Views: 0.3ms)
|
4738
|
+
-----------------------------------------------------------------------
|
4739
|
+
MiddlewareTest: test_the_scratchpad_should_exist_without_adding_content
|
4740
|
+
-----------------------------------------------------------------------
|
4741
|
+
Started GET "/" for 127.0.0.1 at 2015-01-12 13:10:57 -0500
|
4742
|
+
Processing by PagesController#empty as HTML
|
4743
|
+
Rendered pages/empty.html.erb (0.3ms)
|
4744
|
+
Completed 200 OK in 1ms (Views: 1.2ms)
|
4745
|
+
---------------------------------------------------------------------------
|
4746
|
+
RenderingTest: test_only_one_scratchpad_should_render_if_multiple_scratches
|
4747
|
+
---------------------------------------------------------------------------
|
4748
|
+
Started GET "/multiple_scratch" for 127.0.0.1 at 2015-01-12 13:10:57 -0500
|
4749
|
+
Processing by PagesController#multiple_scratch as HTML
|
4750
|
+
Rendered pages/multiple_scratch.html.erb (0.3ms)
|
4751
|
+
Completed 200 OK in 1ms (Views: 1.1ms)
|
4752
|
+
---------------------------------------------------------------------------------
|
4753
|
+
RenderingTest: test_object_scratches_should_render_changed_object_at_each_scratch
|
4754
|
+
---------------------------------------------------------------------------------
|
4755
|
+
Started GET "/multiple_scratch_with_changed_object" for 127.0.0.1 at 2015-01-12 13:10:57 -0500
|
4756
|
+
Processing by PagesController#multiple_scratch_with_changed_object as HTML
|
4757
|
+
Rendered pages/multiple_scratch_with_changed_object.html.erb (0.7ms)
|
4758
|
+
Completed 200 OK in 2ms (Views: 1.6ms)
|
4759
|
+
-------------------------------------------------------------
|
4760
|
+
RenderingTest: test_the_scratchpad_should_render_if_not_empty
|
4761
|
+
-------------------------------------------------------------
|
4762
|
+
Started GET "/scratch" for 127.0.0.1 at 2015-01-12 13:10:57 -0500
|
4763
|
+
Processing by PagesController#scratch as HTML
|
4764
|
+
Rendered pages/scratch.html.erb (0.1ms)
|
4765
|
+
Completed 200 OK in 0ms (Views: 0.3ms)
|
4766
|
+
-------------------------------------------------------------
|
4767
|
+
RenderingTest: test_the_scratchpad_should_not_render_if_empty
|
4768
|
+
-------------------------------------------------------------
|
4769
|
+
Started GET "/" for 127.0.0.1 at 2015-01-12 13:10:57 -0500
|
4770
|
+
Processing by PagesController#empty as HTML
|
4771
|
+
Rendered pages/empty.html.erb (0.0ms)
|
4772
|
+
Completed 200 OK in 0ms (Views: 0.3ms)
|
4773
|
+
--------------------------------------------------------------
|
4774
|
+
RenderingTest: test_object_scratches_should_inspect_the_object
|
4775
|
+
--------------------------------------------------------------
|
4776
|
+
Started GET "/scratch_object" for 127.0.0.1 at 2015-01-12 13:10:57 -0500
|
4777
|
+
Processing by PagesController#scratch_object as HTML
|
4778
|
+
Rendered pages/scratch_object.html.erb (0.3ms)
|
4779
|
+
Completed 200 OK in 1ms (Views: 1.1ms)
|
4780
|
+
----------------------------------------------------------------------------
|
4781
|
+
RenderingTest: test_object_scratches_should_render_object_at_time_of_scratch
|
4782
|
+
----------------------------------------------------------------------------
|
4783
|
+
Started GET "/scratch_with_changed_object" for 127.0.0.1 at 2015-01-12 13:10:57 -0500
|
4784
|
+
Processing by PagesController#scratch_with_changed_object as HTML
|
4785
|
+
Rendered pages/scratch_with_changed_object.html.erb (0.3ms)
|
4786
|
+
Completed 200 OK in 1ms (Views: 1.1ms)
|
4787
|
+
---------------------------------------------------------------------------
|
4788
|
+
RenderingTest: test_multiple_scratches_should_render_for_multiple_scratches
|
4789
|
+
---------------------------------------------------------------------------
|
4790
|
+
Started GET "/multiple_scratch" for 127.0.0.1 at 2015-01-12 13:10:57 -0500
|
4791
|
+
Processing by PagesController#multiple_scratch as HTML
|
4792
|
+
Rendered pages/multiple_scratch.html.erb (0.0ms)
|
4793
|
+
Completed 200 OK in 0ms (Views: 0.3ms)
|
4794
|
+
--------------------------
|
4795
|
+
ScratchpadTest: test_truth
|
4796
|
+
--------------------------
|
4797
|
+
-----------------------------------------------------------------------
|
4798
|
+
MiddlewareTest: test_the_scratchpad_should_exist_without_adding_content
|
4799
|
+
-----------------------------------------------------------------------
|
4800
|
+
Started GET "/" for 127.0.0.1 at 2015-01-12 13:11:12 -0500
|
4801
|
+
Processing by PagesController#empty as HTML
|
4802
|
+
Rendered pages/empty.html.erb (0.7ms)
|
4803
|
+
Completed 200 OK in 7ms (Views: 6.8ms)
|
4804
|
+
---------------------------------------------------------------------
|
4805
|
+
MiddlewareTest: test_the_scratchpad_should_exist_after_adding_content
|
4806
|
+
---------------------------------------------------------------------
|
4807
|
+
Started GET "/scratch" for 127.0.0.1 at 2015-01-12 13:11:12 -0500
|
4808
|
+
Processing by PagesController#scratch as HTML
|
4809
|
+
Rendered pages/scratch.html.erb (0.3ms)
|
4810
|
+
Completed 200 OK in 1ms (Views: 1.1ms)
|
4811
|
+
Rendered /Users/mcianni/code/scratchpad/app/views/scratchpad.html.erb (0.4ms)
|
4812
|
+
---------------------------------------------------------------------
|
4813
|
+
MiddlewareTest: test_the_scratchpad_should_be_unique_between_requests
|
4814
|
+
---------------------------------------------------------------------
|
4815
|
+
Started GET "/scratch" for 127.0.0.1 at 2015-01-12 13:11:12 -0500
|
4816
|
+
Processing by PagesController#scratch as HTML
|
4817
|
+
Rendered pages/scratch.html.erb (0.0ms)
|
4818
|
+
Completed 200 OK in 0ms (Views: 0.2ms)
|
4819
|
+
Rendered /Users/mcianni/code/scratchpad/app/views/scratchpad.html.erb (0.3ms)
|
4820
|
+
Started GET "/scratch" for 127.0.0.1 at 2015-01-12 13:11:12 -0500
|
4821
|
+
Processing by PagesController#scratch as HTML
|
4822
|
+
Rendered pages/scratch.html.erb (0.0ms)
|
4823
|
+
Completed 200 OK in 0ms (Views: 0.2ms)
|
4824
|
+
Rendered /Users/mcianni/code/scratchpad/app/views/scratchpad.html.erb (0.3ms)
|
4825
|
+
-------------------------------------------------------------
|
4826
|
+
RenderingTest: test_the_scratchpad_should_render_if_not_empty
|
4827
|
+
-------------------------------------------------------------
|
4828
|
+
Started GET "/scratch" for 127.0.0.1 at 2015-01-12 13:11:12 -0500
|
4829
|
+
Processing by PagesController#scratch as HTML
|
4830
|
+
Rendered pages/scratch.html.erb (0.0ms)
|
4831
|
+
Completed 200 OK in 0ms (Views: 0.3ms)
|
4832
|
+
Rendered /Users/mcianni/code/scratchpad/app/views/scratchpad.html.erb (0.3ms)
|
4833
|
+
-------------------------------------------------------------
|
4834
|
+
RenderingTest: test_the_scratchpad_should_not_render_if_empty
|
4835
|
+
-------------------------------------------------------------
|
4836
|
+
Started GET "/" for 127.0.0.1 at 2015-01-12 13:11:12 -0500
|
4837
|
+
Processing by PagesController#empty as HTML
|
4838
|
+
Rendered pages/empty.html.erb (0.0ms)
|
4839
|
+
Completed 200 OK in 0ms (Views: 0.3ms)
|
4840
|
+
--------------------------------------------------------------
|
4841
|
+
RenderingTest: test_object_scratches_should_inspect_the_object
|
4842
|
+
--------------------------------------------------------------
|
4843
|
+
Started GET "/scratch_object" for 127.0.0.1 at 2015-01-12 13:11:12 -0500
|
4844
|
+
Processing by PagesController#scratch_object as HTML
|
4845
|
+
Rendered pages/scratch_object.html.erb (1.0ms)
|
4846
|
+
Completed 200 OK in 2ms (Views: 2.4ms)
|
4847
|
+
Rendered /Users/mcianni/code/scratchpad/app/views/scratchpad.html.erb (0.4ms)
|
4848
|
+
----------------------------------------------------------------------------
|
4849
|
+
RenderingTest: test_object_scratches_should_render_object_at_time_of_scratch
|
4850
|
+
----------------------------------------------------------------------------
|
4851
|
+
Started GET "/scratch_with_changed_object" for 127.0.0.1 at 2015-01-12 13:11:12 -0500
|
4852
|
+
Processing by PagesController#scratch_with_changed_object as HTML
|
4853
|
+
Rendered pages/scratch_with_changed_object.html.erb (0.2ms)
|
4854
|
+
Completed 200 OK in 1ms (Views: 1.1ms)
|
4855
|
+
Rendered /Users/mcianni/code/scratchpad/app/views/scratchpad.html.erb (0.3ms)
|
4856
|
+
---------------------------------------------------------------------------------
|
4857
|
+
RenderingTest: test_object_scratches_should_render_changed_object_at_each_scratch
|
4858
|
+
---------------------------------------------------------------------------------
|
4859
|
+
Started GET "/multiple_scratch_with_changed_object" for 127.0.0.1 at 2015-01-12 13:11:12 -0500
|
4860
|
+
Processing by PagesController#multiple_scratch_with_changed_object as HTML
|
4861
|
+
Rendered pages/multiple_scratch_with_changed_object.html.erb (0.3ms)
|
4862
|
+
Completed 200 OK in 1ms (Views: 1.1ms)
|
4863
|
+
Rendered /Users/mcianni/code/scratchpad/app/views/scratchpad.html.erb (0.6ms)
|
4864
|
+
---------------------------------------------------------------------------
|
4865
|
+
RenderingTest: test_only_one_scratchpad_should_render_if_multiple_scratches
|
4866
|
+
---------------------------------------------------------------------------
|
4867
|
+
Started GET "/multiple_scratch" for 127.0.0.1 at 2015-01-12 13:11:12 -0500
|
4868
|
+
Processing by PagesController#multiple_scratch as HTML
|
4869
|
+
Rendered pages/multiple_scratch.html.erb (0.3ms)
|
4870
|
+
Completed 200 OK in 1ms (Views: 1.3ms)
|
4871
|
+
Rendered /Users/mcianni/code/scratchpad/app/views/scratchpad.html.erb (0.3ms)
|
4872
|
+
---------------------------------------------------------------------------
|
4873
|
+
RenderingTest: test_multiple_scratches_should_render_for_multiple_scratches
|
4874
|
+
---------------------------------------------------------------------------
|
4875
|
+
Started GET "/multiple_scratch" for 127.0.0.1 at 2015-01-12 13:11:12 -0500
|
4876
|
+
Processing by PagesController#multiple_scratch as HTML
|
4877
|
+
Rendered pages/multiple_scratch.html.erb (0.0ms)
|
4878
|
+
Completed 200 OK in 0ms (Views: 0.2ms)
|
4879
|
+
Rendered /Users/mcianni/code/scratchpad/app/views/scratchpad.html.erb (0.3ms)
|
4880
|
+
--------------------------
|
4881
|
+
ScratchpadTest: test_truth
|
4882
|
+
--------------------------
|
4883
|
+
--------------------------
|
4884
|
+
ScratchpadTest: test_truth
|
4885
|
+
--------------------------
|
4886
|
+
---------------------------------------------------------------------
|
4887
|
+
MiddlewareTest: test_the_scratchpad_should_be_unique_between_requests
|
4888
|
+
---------------------------------------------------------------------
|
4889
|
+
Started GET "/scratch" for 127.0.0.1 at 2015-01-12 13:17:31 -0500
|
4890
|
+
Processing by PagesController#scratch as HTML
|
4891
|
+
Rendered pages/scratch.html.erb (0.7ms)
|
4892
|
+
Completed 200 OK in 6ms (Views: 6.1ms)
|
4893
|
+
Rendered /Users/mcianni/code/scratchpad/app/views/scratchpad.html.erb (5.2ms)
|
4894
|
+
---------------------------------------------------------------------
|
4895
|
+
MiddlewareTest: test_the_scratchpad_should_exist_after_adding_content
|
4896
|
+
---------------------------------------------------------------------
|
4897
|
+
Started GET "/scratch" for 127.0.0.1 at 2015-01-12 13:17:31 -0500
|
4898
|
+
Processing by PagesController#scratch as HTML
|
4899
|
+
Rendered pages/scratch.html.erb (0.0ms)
|
4900
|
+
Completed 200 OK in 0ms (Views: 0.3ms)
|
4901
|
+
Rendered /Users/mcianni/code/scratchpad/app/views/scratchpad.html.erb (4.4ms)
|
4902
|
+
-----------------------------------------------------------------------
|
4903
|
+
MiddlewareTest: test_the_scratchpad_should_exist_without_adding_content
|
4904
|
+
-----------------------------------------------------------------------
|
4905
|
+
Started GET "/" for 127.0.0.1 at 2015-01-12 13:17:31 -0500
|
4906
|
+
Processing by PagesController#empty as HTML
|
4907
|
+
Rendered pages/empty.html.erb (0.3ms)
|
4908
|
+
Completed 200 OK in 1ms (Views: 1.4ms)
|
4909
|
+
---------------------------------------------------------------------------------
|
4910
|
+
RenderingTest: test_object_scratches_should_render_changed_object_at_each_scratch
|
4911
|
+
---------------------------------------------------------------------------------
|
4912
|
+
Started GET "/multiple_scratch_with_changed_object" for 127.0.0.1 at 2015-01-12 13:17:31 -0500
|
4913
|
+
Processing by PagesController#multiple_scratch_with_changed_object as HTML
|
4914
|
+
Rendered pages/multiple_scratch_with_changed_object.html.erb (0.7ms)
|
4915
|
+
Completed 200 OK in 2ms (Views: 1.5ms)
|
4916
|
+
Rendered /Users/mcianni/code/scratchpad/app/views/scratchpad.html.erb (6.3ms)
|
4917
|
+
----------------------------------------------------------------------------
|
4918
|
+
RenderingTest: test_object_scratches_should_render_object_at_time_of_scratch
|
4919
|
+
----------------------------------------------------------------------------
|
4920
|
+
Started GET "/scratch_with_changed_object" for 127.0.0.1 at 2015-01-12 13:17:31 -0500
|
4921
|
+
Processing by PagesController#scratch_with_changed_object as HTML
|
4922
|
+
Rendered pages/scratch_with_changed_object.html.erb (0.3ms)
|
4923
|
+
Completed 200 OK in 1ms (Views: 1.2ms)
|
4924
|
+
Rendered /Users/mcianni/code/scratchpad/app/views/scratchpad.html.erb (4.7ms)
|
4925
|
+
---------------------------------------------------------------------------
|
4926
|
+
RenderingTest: test_only_one_scratchpad_should_render_if_multiple_scratches
|
4927
|
+
---------------------------------------------------------------------------
|
4928
|
+
Started GET "/multiple_scratch" for 127.0.0.1 at 2015-01-12 13:17:31 -0500
|
4929
|
+
Processing by PagesController#multiple_scratch as HTML
|
4930
|
+
Rendered pages/multiple_scratch.html.erb (0.3ms)
|
4931
|
+
Completed 200 OK in 1ms (Views: 1.2ms)
|
4932
|
+
Rendered /Users/mcianni/code/scratchpad/app/views/scratchpad.html.erb (4.4ms)
|
4933
|
+
-------------------------------------------------------------
|
4934
|
+
RenderingTest: test_the_scratchpad_should_not_render_if_empty
|
4935
|
+
-------------------------------------------------------------
|
4936
|
+
Started GET "/" for 127.0.0.1 at 2015-01-12 13:17:31 -0500
|
4937
|
+
Processing by PagesController#empty as HTML
|
4938
|
+
Rendered pages/empty.html.erb (0.0ms)
|
4939
|
+
Completed 200 OK in 0ms (Views: 0.3ms)
|
4940
|
+
--------------------------------------------------------------
|
4941
|
+
RenderingTest: test_object_scratches_should_inspect_the_object
|
4942
|
+
--------------------------------------------------------------
|
4943
|
+
Started GET "/scratch_object" for 127.0.0.1 at 2015-01-12 13:17:31 -0500
|
4944
|
+
Processing by PagesController#scratch_object as HTML
|
4945
|
+
Rendered pages/scratch_object.html.erb (0.5ms)
|
4946
|
+
Completed 200 OK in 2ms (Views: 1.6ms)
|
4947
|
+
Rendered /Users/mcianni/code/scratchpad/app/views/scratchpad.html.erb (4.4ms)
|
4948
|
+
---------------------------------------------------------------------------
|
4949
|
+
RenderingTest: test_multiple_scratches_should_render_for_multiple_scratches
|
4950
|
+
---------------------------------------------------------------------------
|
4951
|
+
Started GET "/multiple_scratch" for 127.0.0.1 at 2015-01-12 13:17:31 -0500
|
4952
|
+
Processing by PagesController#multiple_scratch as HTML
|
4953
|
+
Rendered pages/multiple_scratch.html.erb (0.1ms)
|
4954
|
+
Completed 200 OK in 0ms (Views: 0.3ms)
|
4955
|
+
Rendered /Users/mcianni/code/scratchpad/app/views/scratchpad.html.erb (4.4ms)
|
4956
|
+
-------------------------------------------------------------
|
4957
|
+
RenderingTest: test_the_scratchpad_should_render_if_not_empty
|
4958
|
+
-------------------------------------------------------------
|
4959
|
+
Started GET "/scratch" for 127.0.0.1 at 2015-01-12 13:17:31 -0500
|
4960
|
+
Processing by PagesController#scratch as HTML
|
4961
|
+
Rendered pages/scratch.html.erb (0.1ms)
|
4962
|
+
Completed 200 OK in 0ms (Views: 0.3ms)
|
4963
|
+
Rendered /Users/mcianni/code/scratchpad/app/views/scratchpad.html.erb (4.4ms)
|
4964
|
+
---------------------------------------------------------------------------------
|
4965
|
+
RenderingTest: test_object_scratches_should_render_changed_object_at_each_scratch
|
4966
|
+
---------------------------------------------------------------------------------
|
4967
|
+
Started GET "/multiple_scratch_with_changed_object" for 127.0.0.1 at 2015-01-12 13:18:46 -0500
|
4968
|
+
Processing by PagesController#multiple_scratch_with_changed_object as HTML
|
4969
|
+
Rendered pages/multiple_scratch_with_changed_object.html.erb (1.7ms)
|
4970
|
+
Completed 200 OK in 10ms (Views: 9.7ms)
|
4971
|
+
Rendered /Users/mcianni/code/scratchpad/app/views/scratchpad.html.erb (0.4ms)
|
4972
|
+
--------------------------------------------------------------
|
4973
|
+
RenderingTest: test_object_scratches_should_inspect_the_object
|
4974
|
+
--------------------------------------------------------------
|
4975
|
+
Started GET "/scratch_object" for 127.0.0.1 at 2015-01-12 13:18:46 -0500
|
4976
|
+
Processing by PagesController#scratch_object as HTML
|
4977
|
+
Rendered pages/scratch_object.html.erb (0.3ms)
|
4978
|
+
Completed 200 OK in 1ms (Views: 1.1ms)
|
4979
|
+
Rendered /Users/mcianni/code/scratchpad/app/views/scratchpad.html.erb (0.3ms)
|
4980
|
+
-------------------------------------------------------------
|
4981
|
+
RenderingTest: test_the_scratchpad_should_not_render_if_empty
|
4982
|
+
-------------------------------------------------------------
|
4983
|
+
Started GET "/" for 127.0.0.1 at 2015-01-12 13:18:46 -0500
|
4984
|
+
Processing by PagesController#empty as HTML
|
4985
|
+
Rendered pages/empty.html.erb (0.2ms)
|
4986
|
+
Completed 200 OK in 1ms (Views: 1.0ms)
|
4987
|
+
---------------------------------------------------------------------------
|
4988
|
+
RenderingTest: test_only_one_scratchpad_should_render_if_multiple_scratches
|
4989
|
+
---------------------------------------------------------------------------
|
4990
|
+
Started GET "/multiple_scratch" for 127.0.0.1 at 2015-01-12 13:18:46 -0500
|
4991
|
+
Processing by PagesController#multiple_scratch as HTML
|
4992
|
+
Rendered pages/multiple_scratch.html.erb (0.5ms)
|
4993
|
+
Completed 200 OK in 2ms (Views: 2.0ms)
|
4994
|
+
Rendered /Users/mcianni/code/scratchpad/app/views/scratchpad.html.erb (0.5ms)
|
4995
|
+
---------------------------------------------------------------------------
|
4996
|
+
RenderingTest: test_multiple_scratches_should_render_for_multiple_scratches
|
4997
|
+
---------------------------------------------------------------------------
|
4998
|
+
Started GET "/multiple_scratch" for 127.0.0.1 at 2015-01-12 13:18:46 -0500
|
4999
|
+
Processing by PagesController#multiple_scratch as HTML
|
5000
|
+
Rendered pages/multiple_scratch.html.erb (0.1ms)
|
5001
|
+
Completed 200 OK in 0ms (Views: 0.3ms)
|
5002
|
+
Rendered /Users/mcianni/code/scratchpad/app/views/scratchpad.html.erb (0.3ms)
|
5003
|
+
----------------------------------------------------------------------------
|
5004
|
+
RenderingTest: test_object_scratches_should_render_object_at_time_of_scratch
|
5005
|
+
----------------------------------------------------------------------------
|
5006
|
+
Started GET "/scratch_with_changed_object" for 127.0.0.1 at 2015-01-12 13:18:46 -0500
|
5007
|
+
Processing by PagesController#scratch_with_changed_object as HTML
|
5008
|
+
Rendered pages/scratch_with_changed_object.html.erb (0.4ms)
|
5009
|
+
Completed 200 OK in 2ms (Views: 1.6ms)
|
5010
|
+
Rendered /Users/mcianni/code/scratchpad/app/views/scratchpad.html.erb (0.4ms)
|
5011
|
+
-------------------------------------------------------------
|
5012
|
+
RenderingTest: test_the_scratchpad_should_render_if_not_empty
|
5013
|
+
-------------------------------------------------------------
|
5014
|
+
Started GET "/scratch" for 127.0.0.1 at 2015-01-12 13:18:46 -0500
|
5015
|
+
Processing by PagesController#scratch as HTML
|
5016
|
+
Rendered pages/scratch.html.erb (0.2ms)
|
5017
|
+
Completed 200 OK in 1ms (Views: 1.1ms)
|
5018
|
+
Rendered /Users/mcianni/code/scratchpad/app/views/scratchpad.html.erb (0.3ms)
|
5019
|
+
-----------------------------------------------------------------------
|
5020
|
+
MiddlewareTest: test_the_scratchpad_should_exist_without_adding_content
|
5021
|
+
-----------------------------------------------------------------------
|
5022
|
+
Started GET "/" for 127.0.0.1 at 2015-01-12 13:18:46 -0500
|
5023
|
+
Processing by PagesController#empty as HTML
|
5024
|
+
Rendered pages/empty.html.erb (0.0ms)
|
5025
|
+
Completed 200 OK in 0ms (Views: 0.3ms)
|
5026
|
+
---------------------------------------------------------------------
|
5027
|
+
MiddlewareTest: test_the_scratchpad_should_be_unique_between_requests
|
5028
|
+
---------------------------------------------------------------------
|
5029
|
+
Started GET "/scratch" for 127.0.0.1 at 2015-01-12 13:18:46 -0500
|
5030
|
+
Processing by PagesController#scratch as HTML
|
5031
|
+
Rendered pages/scratch.html.erb (0.0ms)
|
5032
|
+
Completed 200 OK in 0ms (Views: 0.3ms)
|
5033
|
+
Rendered /Users/mcianni/code/scratchpad/app/views/scratchpad.html.erb (0.4ms)
|
5034
|
+
Started GET "/scratch" for 127.0.0.1 at 2015-01-12 13:18:46 -0500
|
5035
|
+
Processing by PagesController#scratch as HTML
|
5036
|
+
Rendered pages/scratch.html.erb (0.0ms)
|
5037
|
+
Completed 200 OK in 0ms (Views: 0.2ms)
|
5038
|
+
Rendered /Users/mcianni/code/scratchpad/app/views/scratchpad.html.erb (0.4ms)
|
5039
|
+
---------------------------------------------------------------------
|
5040
|
+
MiddlewareTest: test_the_scratchpad_should_exist_after_adding_content
|
5041
|
+
---------------------------------------------------------------------
|
5042
|
+
Started GET "/scratch" for 127.0.0.1 at 2015-01-12 13:18:46 -0500
|
5043
|
+
Processing by PagesController#scratch as HTML
|
5044
|
+
Rendered pages/scratch.html.erb (0.0ms)
|
5045
|
+
Completed 200 OK in 0ms (Views: 0.3ms)
|
5046
|
+
Rendered /Users/mcianni/code/scratchpad/app/views/scratchpad.html.erb (0.3ms)
|
5047
|
+
--------------------------
|
5048
|
+
ScratchpadTest: test_truth
|
5049
|
+
--------------------------
|
5050
|
+
---------------------------------------------------------------------
|
5051
|
+
MiddlewareTest: test_the_scratchpad_should_exist_after_adding_content
|
5052
|
+
---------------------------------------------------------------------
|
5053
|
+
Started GET "/scratch" for 127.0.0.1 at 2015-01-12 13:41:56 -0500
|
5054
|
+
Processing by PagesController#scratch as HTML
|
5055
|
+
Rendered pages/scratch.html.erb (1.6ms)
|
5056
|
+
Completed 200 OK in 12ms (Views: 12.1ms)
|
5057
|
+
Rendered /Users/mcianni/code/scratchpad/app/views/scratchpad.html.erb (8.4ms)
|
5058
|
+
---------------------------------------------------------------------
|
5059
|
+
MiddlewareTest: test_the_scratchpad_should_be_unique_between_requests
|
5060
|
+
---------------------------------------------------------------------
|
5061
|
+
Started GET "/scratch" for 127.0.0.1 at 2015-01-12 13:41:56 -0500
|
5062
|
+
Processing by PagesController#scratch as HTML
|
5063
|
+
Rendered pages/scratch.html.erb (0.2ms)
|
5064
|
+
Completed 200 OK in 1ms (Views: 0.5ms)
|
5065
|
+
Rendered /Users/mcianni/code/scratchpad/app/views/scratchpad.html.erb (4.6ms)
|
5066
|
+
-----------------------------------------------------------------------
|
5067
|
+
MiddlewareTest: test_the_scratchpad_should_exist_without_adding_content
|
5068
|
+
-----------------------------------------------------------------------
|
5069
|
+
Started GET "/" for 127.0.0.1 at 2015-01-12 13:41:56 -0500
|
5070
|
+
Processing by PagesController#empty as HTML
|
5071
|
+
Rendered pages/empty.html.erb (0.4ms)
|
5072
|
+
Completed 200 OK in 2ms (Views: 1.9ms)
|
5073
|
+
--------------------------
|
5074
|
+
ScratchpadTest: test_truth
|
5075
|
+
--------------------------
|
5076
|
+
----------------------------------------------------------------------------
|
5077
|
+
RenderingTest: test_object_scratches_should_render_object_at_time_of_scratch
|
5078
|
+
----------------------------------------------------------------------------
|
5079
|
+
Started GET "/scratch_with_changed_object" for 127.0.0.1 at 2015-01-12 13:41:56 -0500
|
5080
|
+
Processing by PagesController#scratch_with_changed_object as HTML
|
5081
|
+
Rendered pages/scratch_with_changed_object.html.erb (1.6ms)
|
5082
|
+
Completed 200 OK in 3ms (Views: 2.6ms)
|
5083
|
+
Rendered /Users/mcianni/code/scratchpad/app/views/scratchpad.html.erb (7.1ms)
|
5084
|
+
---------------------------------------------------------------------------------
|
5085
|
+
RenderingTest: test_object_scratches_should_render_changed_object_at_each_scratch
|
5086
|
+
---------------------------------------------------------------------------------
|
5087
|
+
Started GET "/multiple_scratch_with_changed_object" for 127.0.0.1 at 2015-01-12 13:41:56 -0500
|
5088
|
+
Processing by PagesController#multiple_scratch_with_changed_object as HTML
|
5089
|
+
Rendered pages/multiple_scratch_with_changed_object.html.erb (0.5ms)
|
5090
|
+
Completed 200 OK in 1ms (Views: 1.4ms)
|
5091
|
+
Rendered /Users/mcianni/code/scratchpad/app/views/scratchpad.html.erb (4.6ms)
|
5092
|
+
---------------------------------------------------------------------------
|
5093
|
+
RenderingTest: test_multiple_scratches_should_render_for_multiple_scratches
|
5094
|
+
---------------------------------------------------------------------------
|
5095
|
+
Started GET "/multiple_scratch" for 127.0.0.1 at 2015-01-12 13:41:56 -0500
|
5096
|
+
Processing by PagesController#multiple_scratch as HTML
|
5097
|
+
Rendered pages/multiple_scratch.html.erb (0.5ms)
|
5098
|
+
Completed 200 OK in 1ms (Views: 1.4ms)
|
5099
|
+
Rendered /Users/mcianni/code/scratchpad/app/views/scratchpad.html.erb (8.1ms)
|
5100
|
+
---------------------------------------------------------------------------
|
5101
|
+
RenderingTest: test_only_one_scratchpad_should_render_if_multiple_scratches
|
5102
|
+
---------------------------------------------------------------------------
|
5103
|
+
Started GET "/multiple_scratch" for 127.0.0.1 at 2015-01-12 13:41:56 -0500
|
5104
|
+
Processing by PagesController#multiple_scratch as HTML
|
5105
|
+
Rendered pages/multiple_scratch.html.erb (0.4ms)
|
5106
|
+
Completed 200 OK in 1ms (Views: 0.6ms)
|
5107
|
+
Rendered /Users/mcianni/code/scratchpad/app/views/scratchpad.html.erb (4.6ms)
|
5108
|
+
-------------------------------------------------------------
|
5109
|
+
RenderingTest: test_the_scratchpad_should_not_render_if_empty
|
5110
|
+
-------------------------------------------------------------
|
5111
|
+
Started GET "/" for 127.0.0.1 at 2015-01-12 13:41:56 -0500
|
5112
|
+
Processing by PagesController#empty as HTML
|
5113
|
+
Rendered pages/empty.html.erb (0.0ms)
|
5114
|
+
Completed 200 OK in 0ms (Views: 0.2ms)
|
5115
|
+
--------------------------------------------------------------
|
5116
|
+
RenderingTest: test_object_scratches_should_inspect_the_object
|
5117
|
+
--------------------------------------------------------------
|
5118
|
+
Started GET "/scratch_object" for 127.0.0.1 at 2015-01-12 13:41:56 -0500
|
5119
|
+
Processing by PagesController#scratch_object as HTML
|
5120
|
+
Rendered pages/scratch_object.html.erb (0.4ms)
|
5121
|
+
Completed 200 OK in 1ms (Views: 1.2ms)
|
5122
|
+
Rendered /Users/mcianni/code/scratchpad/app/views/scratchpad.html.erb (4.5ms)
|
5123
|
+
-------------------------------------------------------------
|
5124
|
+
RenderingTest: test_the_scratchpad_should_render_if_not_empty
|
5125
|
+
-------------------------------------------------------------
|
5126
|
+
Started GET "/scratch" for 127.0.0.1 at 2015-01-12 13:41:56 -0500
|
5127
|
+
Processing by PagesController#scratch as HTML
|
5128
|
+
Rendered pages/scratch.html.erb (0.2ms)
|
5129
|
+
Completed 200 OK in 0ms (Views: 0.4ms)
|
5130
|
+
Rendered /Users/mcianni/code/scratchpad/app/views/scratchpad.html.erb (4.7ms)
|
5131
|
+
--------------------------------------------------------------
|
5132
|
+
RenderingTest: test_object_scratches_should_inspect_the_object
|
5133
|
+
--------------------------------------------------------------
|
5134
|
+
Started GET "/scratch_object" for 127.0.0.1 at 2015-01-12 13:42:19 -0500
|
5135
|
+
Processing by PagesController#scratch_object as HTML
|
5136
|
+
Rendered pages/scratch_object.html.erb (2.0ms)
|
5137
|
+
Completed 200 OK in 10ms (Views: 9.7ms)
|
5138
|
+
Rendered /Users/mcianni/code/scratchpad/app/views/scratchpad.html.erb (0.5ms)
|
5139
|
+
---------------------------------------------------------------------------------
|
5140
|
+
RenderingTest: test_object_scratches_should_render_changed_object_at_each_scratch
|
5141
|
+
---------------------------------------------------------------------------------
|
5142
|
+
Started GET "/multiple_scratch_with_changed_object" for 127.0.0.1 at 2015-01-12 13:42:19 -0500
|
5143
|
+
Processing by PagesController#multiple_scratch_with_changed_object as HTML
|
5144
|
+
Rendered pages/multiple_scratch_with_changed_object.html.erb (0.5ms)
|
5145
|
+
Completed 200 OK in 1ms (Views: 1.3ms)
|
5146
|
+
Rendered /Users/mcianni/code/scratchpad/app/views/scratchpad.html.erb (0.3ms)
|
5147
|
+
-------------------------------------------------------------
|
5148
|
+
RenderingTest: test_the_scratchpad_should_render_if_not_empty
|
5149
|
+
-------------------------------------------------------------
|
5150
|
+
Started GET "/scratch" for 127.0.0.1 at 2015-01-12 13:42:19 -0500
|
5151
|
+
Processing by PagesController#scratch as HTML
|
5152
|
+
Rendered pages/scratch.html.erb (0.4ms)
|
5153
|
+
Completed 200 OK in 1ms (Views: 1.2ms)
|
5154
|
+
Rendered /Users/mcianni/code/scratchpad/app/views/scratchpad.html.erb (0.3ms)
|
5155
|
+
----------------------------------------------------------------------------
|
5156
|
+
RenderingTest: test_object_scratches_should_render_object_at_time_of_scratch
|
5157
|
+
----------------------------------------------------------------------------
|
5158
|
+
Started GET "/scratch_with_changed_object" for 127.0.0.1 at 2015-01-12 13:42:19 -0500
|
5159
|
+
Processing by PagesController#scratch_with_changed_object as HTML
|
5160
|
+
Rendered pages/scratch_with_changed_object.html.erb (0.7ms)
|
5161
|
+
Completed 200 OK in 2ms (Views: 2.2ms)
|
5162
|
+
Rendered /Users/mcianni/code/scratchpad/app/views/scratchpad.html.erb (0.5ms)
|
5163
|
+
---------------------------------------------------------------------------
|
5164
|
+
RenderingTest: test_only_one_scratchpad_should_render_if_multiple_scratches
|
5165
|
+
---------------------------------------------------------------------------
|
5166
|
+
Started GET "/multiple_scratch" for 127.0.0.1 at 2015-01-12 13:42:19 -0500
|
5167
|
+
Processing by PagesController#multiple_scratch as HTML
|
5168
|
+
Rendered pages/multiple_scratch.html.erb (0.7ms)
|
5169
|
+
Completed 200 OK in 2ms (Views: 2.0ms)
|
5170
|
+
Rendered /Users/mcianni/code/scratchpad/app/views/scratchpad.html.erb (0.4ms)
|
5171
|
+
-------------------------------------------------------------
|
5172
|
+
RenderingTest: test_the_scratchpad_should_not_render_if_empty
|
5173
|
+
-------------------------------------------------------------
|
5174
|
+
Started GET "/" for 127.0.0.1 at 2015-01-12 13:42:19 -0500
|
5175
|
+
Processing by PagesController#empty as HTML
|
5176
|
+
Rendered pages/empty.html.erb (0.2ms)
|
5177
|
+
Completed 200 OK in 1ms (Views: 1.0ms)
|
5178
|
+
---------------------------------------------------------------------------
|
5179
|
+
RenderingTest: test_multiple_scratches_should_render_for_multiple_scratches
|
5180
|
+
---------------------------------------------------------------------------
|
5181
|
+
Started GET "/multiple_scratch" for 127.0.0.1 at 2015-01-12 13:42:19 -0500
|
5182
|
+
Processing by PagesController#multiple_scratch as HTML
|
5183
|
+
Rendered pages/multiple_scratch.html.erb (0.3ms)
|
5184
|
+
Completed 200 OK in 1ms (Views: 0.5ms)
|
5185
|
+
Rendered /Users/mcianni/code/scratchpad/app/views/scratchpad.html.erb (0.4ms)
|
5186
|
+
--------------------------
|
5187
|
+
ScratchpadTest: test_truth
|
5188
|
+
--------------------------
|
5189
|
+
---------------------------------------------------------------------
|
5190
|
+
MiddlewareTest: test_the_scratchpad_should_exist_after_adding_content
|
5191
|
+
---------------------------------------------------------------------
|
5192
|
+
Started GET "/scratch" for 127.0.0.1 at 2015-01-12 13:42:19 -0500
|
5193
|
+
Processing by PagesController#scratch as HTML
|
5194
|
+
Rendered pages/scratch.html.erb (0.2ms)
|
5195
|
+
Completed 200 OK in 0ms (Views: 0.5ms)
|
5196
|
+
Rendered /Users/mcianni/code/scratchpad/app/views/scratchpad.html.erb (0.4ms)
|
5197
|
+
-----------------------------------------------------------------------
|
5198
|
+
MiddlewareTest: test_the_scratchpad_should_exist_without_adding_content
|
5199
|
+
-----------------------------------------------------------------------
|
5200
|
+
Started GET "/" for 127.0.0.1 at 2015-01-12 13:42:19 -0500
|
5201
|
+
Processing by PagesController#empty as HTML
|
5202
|
+
Rendered pages/empty.html.erb (0.1ms)
|
5203
|
+
Completed 200 OK in 0ms (Views: 0.3ms)
|
5204
|
+
---------------------------------------------------------------------
|
5205
|
+
MiddlewareTest: test_the_scratchpad_should_be_unique_between_requests
|
5206
|
+
---------------------------------------------------------------------
|
5207
|
+
Started GET "/scratch" for 127.0.0.1 at 2015-01-12 13:42:19 -0500
|
5208
|
+
Processing by PagesController#scratch as HTML
|
5209
|
+
Rendered pages/scratch.html.erb (0.2ms)
|
5210
|
+
Completed 200 OK in 0ms (Views: 0.4ms)
|
5211
|
+
Rendered /Users/mcianni/code/scratchpad/app/views/scratchpad.html.erb (0.4ms)
|
5212
|
+
Started GET "/scratch" for 127.0.0.1 at 2015-01-12 13:42:19 -0500
|
5213
|
+
Processing by PagesController#scratch as HTML
|
5214
|
+
Rendered pages/scratch.html.erb (0.2ms)
|
5215
|
+
Completed 200 OK in 1ms (Views: 0.6ms)
|
5216
|
+
Rendered /Users/mcianni/code/scratchpad/app/views/scratchpad.html.erb (0.4ms)
|
5217
|
+
-----------------------------------------------------------------------
|
5218
|
+
MiddlewareTest: test_the_scratchpad_should_exist_without_adding_content
|
5219
|
+
-----------------------------------------------------------------------
|
5220
|
+
Started GET "/" for 127.0.0.1 at 2015-01-12 13:44:50 -0500
|
5221
|
+
Processing by PagesController#empty as HTML
|
5222
|
+
Rendered pages/empty.html.erb (0.7ms)
|
5223
|
+
Completed 200 OK in 7ms (Views: 7.0ms)
|
5224
|
+
---------------------------------------------------------------------
|
5225
|
+
MiddlewareTest: test_the_scratchpad_should_exist_after_adding_content
|
5226
|
+
---------------------------------------------------------------------
|
5227
|
+
Started GET "/scratch" for 127.0.0.1 at 2015-01-12 13:44:50 -0500
|
5228
|
+
Processing by PagesController#scratch as HTML
|
5229
|
+
Rendered pages/scratch.html.erb (0.4ms)
|
5230
|
+
Completed 200 OK in 1ms (Views: 1.2ms)
|
5231
|
+
Rendered /Users/mcianni/code/scratchpad/app/views/scratchpad.html.erb (0.4ms)
|
5232
|
+
---------------------------------------------------------------------
|
5233
|
+
MiddlewareTest: test_the_scratchpad_should_be_unique_between_requests
|
5234
|
+
---------------------------------------------------------------------
|
5235
|
+
Started GET "/scratch" for 127.0.0.1 at 2015-01-12 13:44:50 -0500
|
5236
|
+
Processing by PagesController#scratch as HTML
|
5237
|
+
Rendered pages/scratch.html.erb (0.2ms)
|
5238
|
+
Completed 200 OK in 0ms (Views: 0.4ms)
|
5239
|
+
Rendered /Users/mcianni/code/scratchpad/app/views/scratchpad.html.erb (0.3ms)
|
5240
|
+
Started GET "/scratch" for 127.0.0.1 at 2015-01-12 13:44:50 -0500
|
5241
|
+
Processing by PagesController#scratch as HTML
|
5242
|
+
Rendered pages/scratch.html.erb (0.1ms)
|
5243
|
+
Completed 200 OK in 0ms (Views: 0.3ms)
|
5244
|
+
Rendered /Users/mcianni/code/scratchpad/app/views/scratchpad.html.erb (0.3ms)
|
5245
|
+
--------------------------
|
5246
|
+
ScratchpadTest: test_truth
|
5247
|
+
--------------------------
|
5248
|
+
-------------------------------------------------------------
|
5249
|
+
RenderingTest: test_the_scratchpad_should_not_render_if_empty
|
5250
|
+
-------------------------------------------------------------
|
5251
|
+
Started GET "/" for 127.0.0.1 at 2015-01-12 13:44:50 -0500
|
5252
|
+
Processing by PagesController#empty as HTML
|
5253
|
+
Rendered pages/empty.html.erb (0.0ms)
|
5254
|
+
Completed 200 OK in 0ms (Views: 0.3ms)
|
5255
|
+
---------------------------------------------------------------------------
|
5256
|
+
RenderingTest: test_only_one_scratchpad_should_render_if_multiple_scratches
|
5257
|
+
---------------------------------------------------------------------------
|
5258
|
+
Started GET "/multiple_scratch" for 127.0.0.1 at 2015-01-12 13:44:50 -0500
|
5259
|
+
Processing by PagesController#multiple_scratch as HTML
|
5260
|
+
Rendered pages/multiple_scratch.html.erb (0.5ms)
|
5261
|
+
Completed 200 OK in 1ms (Views: 1.3ms)
|
5262
|
+
Rendered /Users/mcianni/code/scratchpad/app/views/scratchpad.html.erb (0.4ms)
|
5263
|
+
---------------------------------------------------------------------------------
|
5264
|
+
RenderingTest: test_object_scratches_should_render_changed_object_at_each_scratch
|
5265
|
+
---------------------------------------------------------------------------------
|
5266
|
+
Started GET "/multiple_scratch_with_changed_object" for 127.0.0.1 at 2015-01-12 13:44:50 -0500
|
5267
|
+
Processing by PagesController#multiple_scratch_with_changed_object as HTML
|
5268
|
+
Rendered pages/multiple_scratch_with_changed_object.html.erb (1.0ms)
|
5269
|
+
Completed 200 OK in 2ms (Views: 2.0ms)
|
5270
|
+
Rendered /Users/mcianni/code/scratchpad/app/views/scratchpad.html.erb (0.4ms)
|
5271
|
+
----------------------------------------------------------------------------
|
5272
|
+
RenderingTest: test_object_scratches_should_render_object_at_time_of_scratch
|
5273
|
+
----------------------------------------------------------------------------
|
5274
|
+
Started GET "/scratch_with_changed_object" for 127.0.0.1 at 2015-01-12 13:44:50 -0500
|
5275
|
+
Processing by PagesController#scratch_with_changed_object as HTML
|
5276
|
+
Rendered pages/scratch_with_changed_object.html.erb (0.5ms)
|
5277
|
+
Completed 200 OK in 1ms (Views: 1.4ms)
|
5278
|
+
Rendered /Users/mcianni/code/scratchpad/app/views/scratchpad.html.erb (0.4ms)
|
5279
|
+
-------------------------------------------------------------
|
5280
|
+
RenderingTest: test_the_scratchpad_should_render_if_not_empty
|
5281
|
+
-------------------------------------------------------------
|
5282
|
+
Started GET "/scratch" for 127.0.0.1 at 2015-01-12 13:44:50 -0500
|
5283
|
+
Processing by PagesController#scratch as HTML
|
5284
|
+
Rendered pages/scratch.html.erb (0.2ms)
|
5285
|
+
Completed 200 OK in 0ms (Views: 0.4ms)
|
5286
|
+
Rendered /Users/mcianni/code/scratchpad/app/views/scratchpad.html.erb (0.4ms)
|
5287
|
+
--------------------------------------------------------------
|
5288
|
+
RenderingTest: test_object_scratches_should_inspect_the_object
|
5289
|
+
--------------------------------------------------------------
|
5290
|
+
Started GET "/scratch_object" for 127.0.0.1 at 2015-01-12 13:44:50 -0500
|
5291
|
+
Processing by PagesController#scratch_object as HTML
|
5292
|
+
Rendered pages/scratch_object.html.erb (0.4ms)
|
5293
|
+
Completed 200 OK in 1ms (Views: 1.2ms)
|
5294
|
+
Rendered /Users/mcianni/code/scratchpad/app/views/scratchpad.html.erb (0.5ms)
|
5295
|
+
------------------------------------------------------
|
5296
|
+
RenderingTest: test_scratch_should_render_calling_line
|
5297
|
+
------------------------------------------------------
|
5298
|
+
Started GET "/scratch" for 127.0.0.1 at 2015-01-12 13:44:50 -0500
|
5299
|
+
Processing by PagesController#scratch as HTML
|
5300
|
+
Rendered pages/scratch.html.erb (0.2ms)
|
5301
|
+
Completed 200 OK in 1ms (Views: 0.5ms)
|
5302
|
+
Rendered /Users/mcianni/code/scratchpad/app/views/scratchpad.html.erb (0.4ms)
|
5303
|
+
------------------------------------------------------
|
5304
|
+
RenderingTest: test_scratch_should_render_calling_file
|
5305
|
+
------------------------------------------------------
|
5306
|
+
Started GET "/scratch" for 127.0.0.1 at 2015-01-12 13:44:50 -0500
|
5307
|
+
Processing by PagesController#scratch as HTML
|
5308
|
+
Rendered pages/scratch.html.erb (0.1ms)
|
5309
|
+
Completed 200 OK in 0ms (Views: 0.4ms)
|
5310
|
+
Rendered /Users/mcianni/code/scratchpad/app/views/scratchpad.html.erb (0.3ms)
|
5311
|
+
---------------------------------------------------------------------------
|
5312
|
+
RenderingTest: test_multiple_scratches_should_render_for_multiple_scratches
|
5313
|
+
---------------------------------------------------------------------------
|
5314
|
+
Started GET "/multiple_scratch" for 127.0.0.1 at 2015-01-12 13:44:50 -0500
|
5315
|
+
Processing by PagesController#multiple_scratch as HTML
|
5316
|
+
Rendered pages/multiple_scratch.html.erb (0.3ms)
|
5317
|
+
Completed 200 OK in 1ms (Views: 0.6ms)
|
5318
|
+
Rendered /Users/mcianni/code/scratchpad/app/views/scratchpad.html.erb (0.4ms)
|
5319
|
+
---------------------------------------------------------------------
|
5320
|
+
MiddlewareTest: test_the_scratchpad_should_be_unique_between_requests
|
5321
|
+
---------------------------------------------------------------------
|
5322
|
+
Started GET "/scratch" for 127.0.0.1 at 2015-01-12 13:45:21 -0500
|
5323
|
+
Processing by PagesController#scratch as HTML
|
5324
|
+
Rendered pages/scratch.html.erb (0.9ms)
|
5325
|
+
Completed 200 OK in 7ms (Views: 6.6ms)
|
5326
|
+
Rendered /Users/mcianni/code/scratchpad/app/views/scratchpad.html.erb (0.4ms)
|
5327
|
+
Started GET "/scratch" for 127.0.0.1 at 2015-01-12 13:45:21 -0500
|
5328
|
+
Processing by PagesController#scratch as HTML
|
5329
|
+
Rendered pages/scratch.html.erb (0.1ms)
|
5330
|
+
Completed 200 OK in 0ms (Views: 0.3ms)
|
5331
|
+
Rendered /Users/mcianni/code/scratchpad/app/views/scratchpad.html.erb (0.3ms)
|
5332
|
+
---------------------------------------------------------------------
|
5333
|
+
MiddlewareTest: test_the_scratchpad_should_exist_after_adding_content
|
5334
|
+
---------------------------------------------------------------------
|
5335
|
+
Started GET "/scratch" for 127.0.0.1 at 2015-01-12 13:45:21 -0500
|
5336
|
+
Processing by PagesController#scratch as HTML
|
5337
|
+
Rendered pages/scratch.html.erb (0.2ms)
|
5338
|
+
Completed 200 OK in 0ms (Views: 0.4ms)
|
5339
|
+
Rendered /Users/mcianni/code/scratchpad/app/views/scratchpad.html.erb (0.3ms)
|
5340
|
+
-----------------------------------------------------------------------
|
5341
|
+
MiddlewareTest: test_the_scratchpad_should_exist_without_adding_content
|
5342
|
+
-----------------------------------------------------------------------
|
5343
|
+
Started GET "/" for 127.0.0.1 at 2015-01-12 13:45:21 -0500
|
5344
|
+
Processing by PagesController#empty as HTML
|
5345
|
+
Rendered pages/empty.html.erb (0.2ms)
|
5346
|
+
Completed 200 OK in 1ms (Views: 1.0ms)
|
5347
|
+
--------------------------
|
5348
|
+
ScratchpadTest: test_truth
|
5349
|
+
--------------------------
|
5350
|
+
-------------------------------------------------------------
|
5351
|
+
RenderingTest: test_the_scratchpad_should_not_render_if_empty
|
5352
|
+
-------------------------------------------------------------
|
5353
|
+
Started GET "/" for 127.0.0.1 at 2015-01-12 13:45:22 -0500
|
5354
|
+
Processing by PagesController#empty as HTML
|
5355
|
+
Rendered pages/empty.html.erb (0.0ms)
|
5356
|
+
Completed 200 OK in 0ms (Views: 0.3ms)
|
5357
|
+
------------------------------------------------------
|
5358
|
+
RenderingTest: test_scratch_should_render_calling_file
|
5359
|
+
------------------------------------------------------
|
5360
|
+
Started GET "/scratch_object" for 127.0.0.1 at 2015-01-12 13:45:22 -0500
|
5361
|
+
Processing by PagesController#scratch_object as HTML
|
5362
|
+
Rendered pages/scratch_object.html.erb (0.8ms)
|
5363
|
+
Completed 200 OK in 2ms (Views: 1.5ms)
|
5364
|
+
Rendered /Users/mcianni/code/scratchpad/app/views/scratchpad.html.erb (0.4ms)
|
5365
|
+
---------------------------------------------------------------------------------
|
5366
|
+
RenderingTest: test_object_scratches_should_render_changed_object_at_each_scratch
|
5367
|
+
---------------------------------------------------------------------------------
|
5368
|
+
Started GET "/multiple_scratch_with_changed_object" for 127.0.0.1 at 2015-01-12 13:45:22 -0500
|
5369
|
+
Processing by PagesController#multiple_scratch_with_changed_object as HTML
|
5370
|
+
Rendered pages/multiple_scratch_with_changed_object.html.erb (0.5ms)
|
5371
|
+
Completed 200 OK in 1ms (Views: 1.4ms)
|
5372
|
+
Rendered /Users/mcianni/code/scratchpad/app/views/scratchpad.html.erb (0.7ms)
|
5373
|
+
----------------------------------------------------------------------------
|
5374
|
+
RenderingTest: test_object_scratches_should_render_object_at_time_of_scratch
|
5375
|
+
----------------------------------------------------------------------------
|
5376
|
+
Started GET "/scratch_with_changed_object" for 127.0.0.1 at 2015-01-12 13:45:22 -0500
|
5377
|
+
Processing by PagesController#scratch_with_changed_object as HTML
|
5378
|
+
Rendered pages/scratch_with_changed_object.html.erb (0.4ms)
|
5379
|
+
Completed 200 OK in 1ms (Views: 1.1ms)
|
5380
|
+
Rendered /Users/mcianni/code/scratchpad/app/views/scratchpad.html.erb (0.3ms)
|
5381
|
+
--------------------------------------------------------------
|
5382
|
+
RenderingTest: test_object_scratches_should_inspect_the_object
|
5383
|
+
--------------------------------------------------------------
|
5384
|
+
Started GET "/scratch_object" for 127.0.0.1 at 2015-01-12 13:45:22 -0500
|
5385
|
+
Processing by PagesController#scratch_object as HTML
|
5386
|
+
Rendered pages/scratch_object.html.erb (0.2ms)
|
5387
|
+
Completed 200 OK in 0ms (Views: 0.4ms)
|
5388
|
+
Rendered /Users/mcianni/code/scratchpad/app/views/scratchpad.html.erb (0.4ms)
|
5389
|
+
---------------------------------------------------------------------------
|
5390
|
+
RenderingTest: test_only_one_scratchpad_should_render_if_multiple_scratches
|
5391
|
+
---------------------------------------------------------------------------
|
5392
|
+
Started GET "/multiple_scratch" for 127.0.0.1 at 2015-01-12 13:45:22 -0500
|
5393
|
+
Processing by PagesController#multiple_scratch as HTML
|
5394
|
+
Rendered pages/multiple_scratch.html.erb (0.6ms)
|
5395
|
+
Completed 200 OK in 1ms (Views: 1.4ms)
|
5396
|
+
Rendered /Users/mcianni/code/scratchpad/app/views/scratchpad.html.erb (0.4ms)
|
5397
|
+
------------------------------------------------------
|
5398
|
+
RenderingTest: test_scratch_should_render_calling_line
|
5399
|
+
------------------------------------------------------
|
5400
|
+
Started GET "/scratch" for 127.0.0.1 at 2015-01-12 13:45:22 -0500
|
5401
|
+
Processing by PagesController#scratch as HTML
|
5402
|
+
Rendered pages/scratch.html.erb (0.2ms)
|
5403
|
+
Completed 200 OK in 0ms (Views: 0.5ms)
|
5404
|
+
Rendered /Users/mcianni/code/scratchpad/app/views/scratchpad.html.erb (0.4ms)
|
5405
|
+
---------------------------------------------------------------------------
|
5406
|
+
RenderingTest: test_multiple_scratches_should_render_for_multiple_scratches
|
5407
|
+
---------------------------------------------------------------------------
|
5408
|
+
Started GET "/multiple_scratch" for 127.0.0.1 at 2015-01-12 13:45:22 -0500
|
5409
|
+
Processing by PagesController#multiple_scratch as HTML
|
5410
|
+
Rendered pages/multiple_scratch.html.erb (0.4ms)
|
5411
|
+
Completed 200 OK in 1ms (Views: 0.8ms)
|
5412
|
+
Rendered /Users/mcianni/code/scratchpad/app/views/scratchpad.html.erb (0.5ms)
|
5413
|
+
-------------------------------------------------------------
|
5414
|
+
RenderingTest: test_the_scratchpad_should_render_if_not_empty
|
5415
|
+
-------------------------------------------------------------
|
5416
|
+
Started GET "/scratch" for 127.0.0.1 at 2015-01-12 13:45:22 -0500
|
5417
|
+
Processing by PagesController#scratch as HTML
|
5418
|
+
Rendered pages/scratch.html.erb (0.2ms)
|
5419
|
+
Completed 200 OK in 0ms (Views: 0.4ms)
|
5420
|
+
Rendered /Users/mcianni/code/scratchpad/app/views/scratchpad.html.erb (0.3ms)
|
5421
|
+
-----------------------------------------------------------------------
|
5422
|
+
MiddlewareTest: test_the_scratchpad_should_exist_without_adding_content
|
5423
|
+
-----------------------------------------------------------------------
|
5424
|
+
Started GET "/" for 127.0.0.1 at 2015-01-12 15:28:05 -0500
|
5425
|
+
Processing by PagesController#empty as HTML
|
5426
|
+
Rendered pages/empty.html.erb (0.8ms)
|
5427
|
+
Completed 200 OK in 9ms (Views: 8.5ms)
|
5428
|
+
---------------------------------------------------------------------
|
5429
|
+
MiddlewareTest: test_the_scratchpad_should_exist_after_adding_content
|
5430
|
+
---------------------------------------------------------------------
|
5431
|
+
Started GET "/scratch" for 127.0.0.1 at 2015-01-12 15:28:05 -0500
|
5432
|
+
Processing by PagesController#scratch as HTML
|
5433
|
+
Rendered pages/scratch.html.erb (0.7ms)
|
5434
|
+
Completed 200 OK in 2ms (Views: 2.4ms)
|
5435
|
+
Rendered /Users/mcianni/code/scratchpad/app/views/scratchpad.html.erb (0.5ms)
|
5436
|
+
---------------------------------------------------------------------
|
5437
|
+
MiddlewareTest: test_the_scratchpad_should_be_unique_between_requests
|
5438
|
+
---------------------------------------------------------------------
|
5439
|
+
Started GET "/scratch" for 127.0.0.1 at 2015-01-12 15:28:05 -0500
|
5440
|
+
Processing by PagesController#scratch as HTML
|
5441
|
+
Rendered pages/scratch.html.erb (0.2ms)
|
5442
|
+
Completed 200 OK in 0ms (Views: 0.4ms)
|
5443
|
+
Rendered /Users/mcianni/code/scratchpad/app/views/scratchpad.html.erb (0.3ms)
|
5444
|
+
Started GET "/scratch" for 127.0.0.1 at 2015-01-12 15:28:05 -0500
|
5445
|
+
Processing by PagesController#scratch as HTML
|
5446
|
+
Rendered pages/scratch.html.erb (0.1ms)
|
5447
|
+
Completed 200 OK in 0ms (Views: 0.3ms)
|
5448
|
+
Rendered /Users/mcianni/code/scratchpad/app/views/scratchpad.html.erb (0.4ms)
|
5449
|
+
----------------------------------------------------------------------------
|
5450
|
+
RenderingTest: test_object_scratches_should_render_object_at_time_of_scratch
|
5451
|
+
----------------------------------------------------------------------------
|
5452
|
+
Started GET "/scratch_with_changed_object" for 127.0.0.1 at 2015-01-12 15:28:05 -0500
|
5453
|
+
Processing by PagesController#scratch_with_changed_object as HTML
|
5454
|
+
Rendered pages/scratch_with_changed_object.html.erb (1.4ms)
|
5455
|
+
Completed 200 OK in 2ms (Views: 2.3ms)
|
5456
|
+
Rendered /Users/mcianni/code/scratchpad/app/views/scratchpad.html.erb (0.9ms)
|
5457
|
+
--------------------------------------------------------------
|
5458
|
+
RenderingTest: test_object_scratches_should_inspect_the_object
|
5459
|
+
--------------------------------------------------------------
|
5460
|
+
Started GET "/scratch_object" for 127.0.0.1 at 2015-01-12 15:28:05 -0500
|
5461
|
+
Processing by PagesController#scratch_object as HTML
|
5462
|
+
Rendered pages/scratch_object.html.erb (0.7ms)
|
5463
|
+
Completed 200 OK in 2ms (Views: 2.3ms)
|
5464
|
+
Rendered /Users/mcianni/code/scratchpad/app/views/scratchpad.html.erb (0.5ms)
|
5465
|
+
---------------------------------------------------------------------------
|
5466
|
+
RenderingTest: test_multiple_scratches_should_render_for_multiple_scratches
|
5467
|
+
---------------------------------------------------------------------------
|
5468
|
+
Started GET "/multiple_scratch" for 127.0.0.1 at 2015-01-12 15:28:05 -0500
|
5469
|
+
Processing by PagesController#multiple_scratch as HTML
|
5470
|
+
Rendered pages/multiple_scratch.html.erb (0.9ms)
|
5471
|
+
Completed 200 OK in 2ms (Views: 2.2ms)
|
5472
|
+
Rendered /Users/mcianni/code/scratchpad/app/views/scratchpad.html.erb (0.4ms)
|
5473
|
+
-------------------------------------------------------------
|
5474
|
+
RenderingTest: test_the_scratchpad_should_not_render_if_empty
|
5475
|
+
-------------------------------------------------------------
|
5476
|
+
Started GET "/" for 127.0.0.1 at 2015-01-12 15:28:05 -0500
|
5477
|
+
Processing by PagesController#empty as HTML
|
5478
|
+
Rendered pages/empty.html.erb (0.0ms)
|
5479
|
+
Completed 200 OK in 0ms (Views: 0.3ms)
|
5480
|
+
-------------------------------------------------------------
|
5481
|
+
RenderingTest: test_the_scratchpad_should_render_if_not_empty
|
5482
|
+
-------------------------------------------------------------
|
5483
|
+
Started GET "/scratch" for 127.0.0.1 at 2015-01-12 15:28:05 -0500
|
5484
|
+
Processing by PagesController#scratch as HTML
|
5485
|
+
Rendered pages/scratch.html.erb (0.2ms)
|
5486
|
+
Completed 200 OK in 0ms (Views: 0.4ms)
|
5487
|
+
Rendered /Users/mcianni/code/scratchpad/app/views/scratchpad.html.erb (0.9ms)
|
5488
|
+
------------------------------------------------------
|
5489
|
+
RenderingTest: test_scratch_should_render_calling_file
|
5490
|
+
------------------------------------------------------
|
5491
|
+
Started GET "/scratch_object" for 127.0.0.1 at 2015-01-12 15:28:05 -0500
|
5492
|
+
Processing by PagesController#scratch_object as HTML
|
5493
|
+
Rendered pages/scratch_object.html.erb (0.2ms)
|
5494
|
+
Completed 200 OK in 1ms (Views: 0.5ms)
|
5495
|
+
Rendered /Users/mcianni/code/scratchpad/app/views/scratchpad.html.erb (0.4ms)
|
5496
|
+
---------------------------------------------------------------------------
|
5497
|
+
RenderingTest: test_only_one_scratchpad_should_render_if_multiple_scratches
|
5498
|
+
---------------------------------------------------------------------------
|
5499
|
+
Started GET "/multiple_scratch" for 127.0.0.1 at 2015-01-12 15:28:05 -0500
|
5500
|
+
Processing by PagesController#multiple_scratch as HTML
|
5501
|
+
Rendered pages/multiple_scratch.html.erb (0.3ms)
|
5502
|
+
Completed 200 OK in 1ms (Views: 0.5ms)
|
5503
|
+
Rendered /Users/mcianni/code/scratchpad/app/views/scratchpad.html.erb (0.4ms)
|
5504
|
+
------------------------------------------------------
|
5505
|
+
RenderingTest: test_scratch_should_render_calling_line
|
5506
|
+
------------------------------------------------------
|
5507
|
+
Started GET "/scratch" for 127.0.0.1 at 2015-01-12 15:28:05 -0500
|
5508
|
+
Processing by PagesController#scratch as HTML
|
5509
|
+
Rendered pages/scratch.html.erb (0.2ms)
|
5510
|
+
Completed 200 OK in 0ms (Views: 0.4ms)
|
5511
|
+
Rendered /Users/mcianni/code/scratchpad/app/views/scratchpad.html.erb (0.4ms)
|
5512
|
+
---------------------------------------------------------------------------------
|
5513
|
+
RenderingTest: test_object_scratches_should_render_changed_object_at_each_scratch
|
5514
|
+
---------------------------------------------------------------------------------
|
5515
|
+
Started GET "/multiple_scratch_with_changed_object" for 127.0.0.1 at 2015-01-12 15:28:05 -0500
|
5516
|
+
Processing by PagesController#multiple_scratch_with_changed_object as HTML
|
5517
|
+
Rendered pages/multiple_scratch_with_changed_object.html.erb (0.9ms)
|
5518
|
+
Completed 200 OK in 3ms (Views: 2.6ms)
|
5519
|
+
Rendered /Users/mcianni/code/scratchpad/app/views/scratchpad.html.erb (0.5ms)
|
5520
|
+
--------------------------
|
5521
|
+
ScratchpadTest: test_truth
|
5522
|
+
--------------------------
|
5523
|
+
--------------------------
|
5524
|
+
ScratchpadTest: test_truth
|
5525
|
+
--------------------------
|
5526
|
+
-----------------------------------------------------------------------
|
5527
|
+
MiddlewareTest: test_the_scratchpad_should_exist_without_adding_content
|
5528
|
+
-----------------------------------------------------------------------
|
5529
|
+
Started GET "/" for 127.0.0.1 at 2015-01-12 15:29:51 -0500
|
5530
|
+
Processing by PagesController#empty as HTML
|
5531
|
+
Rendered pages/empty.html.erb (0.7ms)
|
5532
|
+
Completed 200 OK in 9ms (Views: 8.5ms)
|
5533
|
+
---------------------------------------------------------------------
|
5534
|
+
MiddlewareTest: test_the_scratchpad_should_exist_after_adding_content
|
5535
|
+
---------------------------------------------------------------------
|
5536
|
+
Started GET "/scratch" for 127.0.0.1 at 2015-01-12 15:29:51 -0500
|
5537
|
+
Processing by PagesController#scratch as HTML
|
5538
|
+
Rendered pages/scratch.html.erb (0.4ms)
|
5539
|
+
Completed 200 OK in 1ms (Views: 1.1ms)
|
5540
|
+
Rendered /Users/mcianni/code/scratchpad/app/views/scratchpad.html.erb (0.8ms)
|
5541
|
+
---------------------------------------------------------------------
|
5542
|
+
MiddlewareTest: test_the_scratchpad_should_be_unique_between_requests
|
5543
|
+
---------------------------------------------------------------------
|
5544
|
+
Started GET "/scratch" for 127.0.0.1 at 2015-01-12 15:29:51 -0500
|
5545
|
+
Processing by PagesController#scratch as HTML
|
5546
|
+
Rendered pages/scratch.html.erb (0.2ms)
|
5547
|
+
Completed 200 OK in 1ms (Views: 0.5ms)
|
5548
|
+
Rendered /Users/mcianni/code/scratchpad/app/views/scratchpad.html.erb (0.4ms)
|
5549
|
+
Started GET "/scratch" for 127.0.0.1 at 2015-01-12 15:29:51 -0500
|
5550
|
+
Processing by PagesController#scratch as HTML
|
5551
|
+
Rendered pages/scratch.html.erb (0.2ms)
|
5552
|
+
Completed 200 OK in 0ms (Views: 0.4ms)
|
5553
|
+
Rendered /Users/mcianni/code/scratchpad/app/views/scratchpad.html.erb (0.3ms)
|
5554
|
+
---------------------------------------------------------------------------------
|
5555
|
+
RenderingTest: test_object_scratches_should_render_changed_object_at_each_scratch
|
5556
|
+
---------------------------------------------------------------------------------
|
5557
|
+
Started GET "/multiple_scratch_with_changed_object" for 127.0.0.1 at 2015-01-12 15:29:51 -0500
|
5558
|
+
Processing by PagesController#multiple_scratch_with_changed_object as HTML
|
5559
|
+
Rendered pages/multiple_scratch_with_changed_object.html.erb (1.0ms)
|
5560
|
+
Completed 200 OK in 2ms (Views: 1.9ms)
|
5561
|
+
Rendered /Users/mcianni/code/scratchpad/app/views/scratchpad.html.erb (0.6ms)
|
5562
|
+
--------------------------------------------------------------
|
5563
|
+
RenderingTest: test_object_scratches_should_inspect_the_object
|
5564
|
+
--------------------------------------------------------------
|
5565
|
+
Started GET "/scratch_object" for 127.0.0.1 at 2015-01-12 15:29:51 -0500
|
5566
|
+
Processing by PagesController#scratch_object as HTML
|
5567
|
+
Rendered pages/scratch_object.html.erb (0.4ms)
|
5568
|
+
Completed 200 OK in 1ms (Views: 1.2ms)
|
5569
|
+
Rendered /Users/mcianni/code/scratchpad/app/views/scratchpad.html.erb (0.4ms)
|
5570
|
+
-------------------------------------------------------------
|
5571
|
+
RenderingTest: test_the_scratchpad_should_render_if_not_empty
|
5572
|
+
-------------------------------------------------------------
|
5573
|
+
Started GET "/scratch" for 127.0.0.1 at 2015-01-12 15:29:51 -0500
|
5574
|
+
Processing by PagesController#scratch as HTML
|
5575
|
+
Rendered pages/scratch.html.erb (0.2ms)
|
5576
|
+
Completed 200 OK in 0ms (Views: 0.4ms)
|
5577
|
+
Rendered /Users/mcianni/code/scratchpad/app/views/scratchpad.html.erb (0.3ms)
|
5578
|
+
---------------------------------------------------------------------------
|
5579
|
+
RenderingTest: test_only_one_scratchpad_should_render_if_multiple_scratches
|
5580
|
+
---------------------------------------------------------------------------
|
5581
|
+
Started GET "/multiple_scratch" for 127.0.0.1 at 2015-01-12 15:29:51 -0500
|
5582
|
+
Processing by PagesController#multiple_scratch as HTML
|
5583
|
+
Rendered pages/multiple_scratch.html.erb (0.5ms)
|
5584
|
+
Completed 200 OK in 1ms (Views: 1.4ms)
|
5585
|
+
Rendered /Users/mcianni/code/scratchpad/app/views/scratchpad.html.erb (0.4ms)
|
5586
|
+
-------------------------------------------------------------
|
5587
|
+
RenderingTest: test_the_scratchpad_should_not_render_if_empty
|
5588
|
+
-------------------------------------------------------------
|
5589
|
+
Started GET "/" for 127.0.0.1 at 2015-01-12 15:29:51 -0500
|
5590
|
+
Processing by PagesController#empty as HTML
|
5591
|
+
Rendered pages/empty.html.erb (0.0ms)
|
5592
|
+
Completed 200 OK in 0ms (Views: 0.3ms)
|
5593
|
+
----------------------------------------------------------------------------
|
5594
|
+
RenderingTest: test_object_scratches_should_render_object_at_time_of_scratch
|
5595
|
+
----------------------------------------------------------------------------
|
5596
|
+
Started GET "/scratch_with_changed_object" for 127.0.0.1 at 2015-01-12 15:29:51 -0500
|
5597
|
+
Processing by PagesController#scratch_with_changed_object as HTML
|
5598
|
+
Rendered pages/scratch_with_changed_object.html.erb (0.6ms)
|
5599
|
+
Completed 200 OK in 2ms (Views: 2.0ms)
|
5600
|
+
Rendered /Users/mcianni/code/scratchpad/app/views/scratchpad.html.erb (0.4ms)
|
5601
|
+
---------------------------------------------------------------------------
|
5602
|
+
RenderingTest: test_multiple_scratches_should_render_for_multiple_scratches
|
5603
|
+
---------------------------------------------------------------------------
|
5604
|
+
Started GET "/multiple_scratch" for 127.0.0.1 at 2015-01-12 15:29:51 -0500
|
5605
|
+
Processing by PagesController#multiple_scratch as HTML
|
5606
|
+
Rendered pages/multiple_scratch.html.erb (0.3ms)
|
5607
|
+
Completed 200 OK in 1ms (Views: 0.5ms)
|
5608
|
+
Rendered /Users/mcianni/code/scratchpad/app/views/scratchpad.html.erb (0.4ms)
|
5609
|
+
------------------------------------------------------
|
5610
|
+
RenderingTest: test_scratch_should_render_calling_file
|
5611
|
+
------------------------------------------------------
|
5612
|
+
Started GET "/scratch" for 127.0.0.1 at 2015-01-12 15:29:51 -0500
|
5613
|
+
Processing by PagesController#scratch as HTML
|
5614
|
+
Rendered pages/scratch.html.erb (0.2ms)
|
5615
|
+
Completed 200 OK in 0ms (Views: 0.4ms)
|
5616
|
+
Rendered /Users/mcianni/code/scratchpad/app/views/scratchpad.html.erb (0.4ms)
|
5617
|
+
------------------------------------------------------
|
5618
|
+
RenderingTest: test_scratch_should_render_calling_line
|
5619
|
+
------------------------------------------------------
|
5620
|
+
Started GET "/scratch" for 127.0.0.1 at 2015-01-12 15:29:51 -0500
|
5621
|
+
Processing by PagesController#scratch as HTML
|
5622
|
+
Rendered pages/scratch.html.erb (0.2ms)
|
5623
|
+
Completed 200 OK in 0ms (Views: 0.4ms)
|
5624
|
+
Rendered /Users/mcianni/code/scratchpad/app/views/scratchpad.html.erb (0.4ms)
|