~ubuntu-branches/ubuntu/oneiric/puppet/oneiric-security

« back to all changes in this revision

Viewing changes to vendor/gems/rspec/spec/spec/runner/formatter/html_formatted-1.8.6.html

  • Committer: Bazaar Package Importer
  • Author(s): Micah Anderson
  • Date: 2008-07-26 15:43:45 UTC
  • mfrom: (1.1.8 upstream) (3.1.1 lenny)
  • Revision ID: james.westby@ubuntu.com-20080726154345-c03m49twzxewdwjn
Tags: 0.24.5-2
* Fix puppetlast to work with 0.24.5
* Adjust logcheck to match against new log messages in 0.24.5
* Update standards version to 3.8.0 (no changes)
* Update changelog to reduce length of line to make lintian happy

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<?xml version="1.0" encoding="UTF-8"?>
 
2
<!DOCTYPE html 
 
3
  PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
 
4
  "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
 
5
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
 
6
<head>
 
7
  <title>RSpec results</title>
 
8
  <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
 
9
  <meta http-equiv="Expires" content="-1" />
 
10
  <meta http-equiv="Pragma" content="no-cache" />
 
11
  <style type="text/css">
 
12
  body {
 
13
    margin: 0;
 
14
    padding: 0;
 
15
    background: #fff;
 
16
    font-size: 80%;
 
17
  }
 
18
  </style>
 
19
</head>
 
20
<body>
 
21
<div class="rspec-report">
 
22
  <script type="text/javascript">
 
23
    // <![CDATA[
 
24
function moveProgressBar(percentDone) {
 
25
  document.getElementById("rspec-header").style.width = percentDone +"%";
 
26
}
 
27
function makeRed(element_id) {
 
28
  document.getElementById(element_id).style.background = '#C40D0D';
 
29
  document.getElementById(element_id).style.color = '#FFFFFF';
 
30
}
 
31
 
 
32
function makeYellow(element_id) {
 
33
  if (element_id == "rspec-header" && document.getElementById(element_id).style.background != '#C40D0D')
 
34
  {
 
35
    document.getElementById(element_id).style.background = '#FAF834';
 
36
    document.getElementById(element_id).style.color = '#000000';
 
37
  }
 
38
  else
 
39
  {
 
40
    document.getElementById(element_id).style.background = '#FAF834';
 
41
    document.getElementById(element_id).style.color = '#000000';
 
42
  }
 
43
}
 
44
 
 
45
    // ]]>
 
46
  </script>
 
47
  <style type="text/css">
 
48
#rspec-header {
 
49
  background: #65C400; color: #fff;
 
50
}
 
51
 
 
52
.rspec-report h1 {
 
53
  margin: 0px 10px 0px 10px;
 
54
  padding: 10px;
 
55
  font-family: "Lucida Grande", Helvetica, sans-serif;
 
56
  font-size: 1.8em;
 
57
}
 
58
 
 
59
#summary {
 
60
  margin: 0; padding: 5px 10px;
 
61
  font-family: "Lucida Grande", Helvetica, sans-serif;
 
62
  text-align: right;
 
63
  position: absolute;
 
64
  top: 0px;
 
65
  right: 0px;
 
66
}
 
67
 
 
68
#summary p {
 
69
  margin: 0 0 0 2px;
 
70
}
 
71
 
 
72
#summary #totals {
 
73
  font-size: 1.2em;
 
74
}
 
75
 
 
76
.example_group {
 
77
  margin: 0 10px 5px;
 
78
  background: #fff;
 
79
}
 
80
 
 
81
dl {
 
82
  margin: 0; padding: 0 0 5px;
 
83
  font: normal 11px "Lucida Grande", Helvetica, sans-serif;
 
84
}
 
85
 
 
86
dt {
 
87
  padding: 3px;
 
88
  background: #65C400;
 
89
  color: #fff;
 
90
  font-weight: bold;
 
91
}
 
92
 
 
93
dd {
 
94
  margin: 5px 0 5px 5px;
 
95
  padding: 3px 3px 3px 18px;
 
96
}
 
97
 
 
98
dd.spec.passed {
 
99
  border-left: 5px solid #65C400;
 
100
  border-bottom: 1px solid #65C400;
 
101
  background: #DBFFB4; color: #3D7700;
 
102
}
 
103
 
 
104
dd.spec.failed {
 
105
  border-left: 5px solid #C20000;
 
106
  border-bottom: 1px solid #C20000;
 
107
  color: #C20000; background: #FFFBD3;
 
108
}
 
109
 
 
110
dd.spec.not_implemented {
 
111
  border-left: 5px solid #FAF834;
 
112
  border-bottom: 1px solid #FAF834;
 
113
  background: #FCFB98; color: #131313;
 
114
}
 
115
 
 
116
dd.spec.pending_fixed {
 
117
  border-left: 5px solid #0000C2;
 
118
  border-bottom: 1px solid #0000C2;
 
119
  color: #0000C2; background: #D3FBFF;
 
120
}
 
121
 
 
122
.backtrace {
 
123
  color: #000;
 
124
  font-size: 12px;
 
125
}
 
126
 
 
127
a {
 
128
  color: #BE5C00;
 
129
}
 
130
 
 
131
/* Ruby code, style similar to vibrant ink */
 
132
.ruby {
 
133
  font-size: 12px;
 
134
  font-family: monospace;
 
135
  color: white;
 
136
  background-color: black;
 
137
  padding: 0.1em 0 0.2em 0;
 
138
}
 
139
 
 
140
.ruby .keyword { color: #FF6600; }
 
141
.ruby .constant { color: #339999; }
 
142
.ruby .attribute { color: white; }
 
143
.ruby .global { color: white; }
 
144
.ruby .module { color: white; }
 
145
.ruby .class { color: white; }
 
146
.ruby .string { color: #66FF00; }
 
147
.ruby .ident { color: white; }
 
148
.ruby .method { color: #FFCC00; }
 
149
.ruby .number { color: white; }
 
150
.ruby .char { color: white; }
 
151
.ruby .comment { color: #9933CC; }
 
152
.ruby .symbol { color: white; }
 
153
.ruby .regex { color: #44B4CC; }
 
154
.ruby .punct { color: white; }
 
155
.ruby .escape { color: white; }
 
156
.ruby .interp { color: white; }
 
157
.ruby .expr { color: white; }
 
158
 
 
159
.ruby .offending { background-color: gray; }
 
160
.ruby .linenum {
 
161
  width: 75px;
 
162
  padding: 0.1em 1em 0.2em 0;
 
163
  color: #000000;
 
164
  background-color: #FFFBD3;
 
165
}
 
166
 
 
167
  </style>
 
168
 
 
169
<div id="rspec-header">
 
170
  <h1>RSpec Results</h1>
 
171
 
 
172
  <div id="summary">
 
173
    <p id="totals">&nbsp;</p>
 
174
    <p id="duration">&nbsp;</p>
 
175
  </div>
 
176
</div>
 
177
 
 
178
<div class="results">
 
179
<div class="example_group">
 
180
  <dl>
 
181
  <dt id="example_group_1">Mocker</dt>
 
182
    <script type="text/javascript">moveProgressBar('5.8');</script>
 
183
    <dd class="spec passed"><span class="passed_spec_name">should be able to call mock()</span></dd>
 
184
    <script type="text/javascript">makeRed('rspec-header');</script>
 
185
    <script type="text/javascript">makeRed('example_group_1');</script>
 
186
    <script type="text/javascript">moveProgressBar('11.7');</script>
 
187
    <dd class="spec failed">
 
188
      <span class="failed_spec_name">should fail when expected message not received</span>
 
189
      <div class="failure" id="failure_1">
 
190
        <div class="message"><pre>Mock 'poke me' expected :poke with (any args) once, but received it 0 times</pre></div>
 
191
        <div class="backtrace"><pre>./failing_examples/mocking_example.rb:13:
 
192
./spec/spec/runner/formatter/html_formatter_spec.rb:18:
 
193
./spec/spec/runner/formatter/html_formatter_spec.rb:14:in `chdir'
 
194
./spec/spec/runner/formatter/html_formatter_spec.rb:14:</pre></div>
 
195
    <pre class="ruby"><code><span class="linenum">11</span>  <span class="ident">it</span> <span class="punct">&quot;</span><span class="string">should fail when expected message not received</span><span class="punct">&quot;</span> <span class="keyword">do</span>
 
196
<span class="linenum">12</span>    <span class="ident">mock</span> <span class="punct">=</span> <span class="ident">mock</span><span class="punct">(&quot;</span><span class="string">poke me</span><span class="punct">&quot;)</span>
 
197
<span class="offending"><span class="linenum">13</span>    <span class="ident">mock</span><span class="punct">.</span><span class="ident">should_receive</span><span class="punct">(</span><span class="symbol">:poke</span><span class="punct">)</span></span>
 
198
<span class="linenum">14</span>  <span class="keyword">end</span>
 
199
<span class="linenum">15</span>  </code></pre>
 
200
      </div>
 
201
    </dd>
 
202
    <script type="text/javascript">moveProgressBar('17.6');</script>
 
203
    <dd class="spec failed">
 
204
      <span class="failed_spec_name">should fail when messages are received out of order</span>
 
205
      <div class="failure" id="failure_2">
 
206
        <div class="message"><pre>Mock 'one two three' received :three out of order</pre></div>
 
207
        <div class="backtrace"><pre>./failing_examples/mocking_example.rb:22:
 
208
./spec/spec/runner/formatter/html_formatter_spec.rb:18:
 
209
./spec/spec/runner/formatter/html_formatter_spec.rb:14:in `chdir'
 
210
./spec/spec/runner/formatter/html_formatter_spec.rb:14:</pre></div>
 
211
    <pre class="ruby"><code><span class="linenum">20</span>    <span class="ident">mock</span><span class="punct">.</span><span class="ident">should_receive</span><span class="punct">(</span><span class="symbol">:three</span><span class="punct">).</span><span class="ident">ordered</span>
 
212
<span class="linenum">21</span>    <span class="ident">mock</span><span class="punct">.</span><span class="ident">one</span>
 
213
<span class="offending"><span class="linenum">22</span>    <span class="ident">mock</span><span class="punct">.</span><span class="ident">three</span></span>
 
214
<span class="linenum">23</span>    <span class="ident">mock</span><span class="punct">.</span><span class="ident">two</span>
 
215
<span class="linenum">24</span>  <span class="keyword">end</span></code></pre>
 
216
      </div>
 
217
    </dd>
 
218
    <script type="text/javascript">moveProgressBar('23.5');</script>
 
219
    <dd class="spec failed">
 
220
      <span class="failed_spec_name">should get yelled at when sending unexpected messages</span>
 
221
      <div class="failure" id="failure_3">
 
222
        <div class="message"><pre>Mock 'don't talk to me' expected :any_message_at_all with (any args) 0 times, but received it once</pre></div>
 
223
        <div class="backtrace"><pre>./failing_examples/mocking_example.rb:28:
 
224
./spec/spec/runner/formatter/html_formatter_spec.rb:18:
 
225
./spec/spec/runner/formatter/html_formatter_spec.rb:14:in `chdir'
 
226
./spec/spec/runner/formatter/html_formatter_spec.rb:14:</pre></div>
 
227
    <pre class="ruby"><code><span class="linenum">26</span>  <span class="ident">it</span> <span class="punct">&quot;</span><span class="string">should get yelled at when sending unexpected messages</span><span class="punct">&quot;</span> <span class="keyword">do</span>
 
228
<span class="linenum">27</span>    <span class="ident">mock</span> <span class="punct">=</span> <span class="ident">mock</span><span class="punct">(&quot;</span><span class="string">don't talk to me</span><span class="punct">&quot;)</span>
 
229
<span class="offending"><span class="linenum">28</span>    <span class="ident">mock</span><span class="punct">.</span><span class="ident">should_not_receive</span><span class="punct">(</span><span class="symbol">:any_message_at_all</span><span class="punct">)</span></span>
 
230
<span class="linenum">29</span>    <span class="ident">mock</span><span class="punct">.</span><span class="ident">any_message_at_all</span>
 
231
<span class="linenum">30</span>  <span class="keyword">end</span></code></pre>
 
232
      </div>
 
233
    </dd>
 
234
    <script type="text/javascript">moveProgressBar('29.4');</script>
 
235
    <dd class="spec pending_fixed">
 
236
      <span class="failed_spec_name">has a bug we need to fix</span>
 
237
      <div class="failure" id="failure_4">
 
238
        <div class="message"><pre>Expected pending 'here is the bug' to fail. No Error was raised.</pre></div>
 
239
        
 
240
    <pre class="ruby"><code><span class="linenum">31</span>
 
241
<span class="linenum">32</span>  <span class="ident">it</span> <span class="punct">&quot;</span><span class="string">has a bug we need to fix</span><span class="punct">&quot;</span> <span class="keyword">do</span>
 
242
<span class="offending"><span class="linenum">33</span>    <span class="ident">pending</span> <span class="punct">&quot;</span><span class="string">here is the bug</span><span class="punct">&quot;</span> <span class="keyword">do</span></span>
 
243
<span class="linenum">34</span>      <span class="comment"># Actually, no. It's fixed. This will fail because it passes :-)</span>
 
244
<span class="linenum">35</span>      <span class="ident">mock</span> <span class="punct">=</span> <span class="ident">mock</span><span class="punct">(&quot;</span><span class="string">Bug</span><span class="punct">&quot;)</span></code></pre>
 
245
      </div>
 
246
    </dd>
 
247
  </dl>
 
248
</div>
 
249
<div class="example_group">
 
250
  <dl>
 
251
  <dt id="example_group_2">Running specs with --diff</dt>
 
252
    <script type="text/javascript">makeRed('example_group_2');</script>
 
253
    <script type="text/javascript">moveProgressBar('35.2');</script>
 
254
    <dd class="spec failed">
 
255
      <span class="failed_spec_name">should print diff of different strings</span>
 
256
      <div class="failure" id="failure_5">
 
257
        <div class="message"><pre>expected: &quot;RSpec is a\nbehaviour driven development\nframework for Ruby\n&quot;,
 
258
     got: &quot;RSpec is a\nbehavior driven development\nframework for Ruby\n&quot; (using ==)
 
259
Diff:
 
260
@@ -1,4 +1,4 @@
 
261
 RSpec is a
 
262
-behavior driven development
 
263
+behaviour driven development
 
264
 framework for Ruby
 
265
</pre></div>
 
266
        
 
267
    <pre class="ruby"><code><span class="linenum">11</span><span class="ident">framework</span> <span class="keyword">for</span> <span class="constant">Ruby</span>
 
268
<span class="linenum">12</span><span class="constant">EOF</span>
 
269
<span class="offending"><span class="linenum">13</span>    <span class="ident">usa</span><span class="punct">.</span><span class="ident">should</span> <span class="punct">==</span> <span class="ident">uk</span></span>
 
270
<span class="linenum">14</span>  <span class="keyword">end</span></code></pre>
 
271
      </div>
 
272
    </dd>
 
273
    <script type="text/javascript">moveProgressBar('41.1');</script>
 
274
    <dd class="spec failed">
 
275
      <span class="failed_spec_name">should print diff of different objects' pretty representation</span>
 
276
      <div class="failure" id="failure_6">
 
277
        <div class="message"><pre>expected &lt;Animal
 
278
name=bob,
 
279
species=tortoise
 
280
&gt;
 
281
, got &lt;Animal
 
282
name=bob,
 
283
species=giraffe
 
284
&gt;
 
285
 (using .eql?)
 
286
Diff:
 
287
@@ -1,5 +1,5 @@
 
288
 &lt;Animal
 
289
 name=bob,
 
290
-species=giraffe
 
291
+species=tortoise
 
292
 &gt;
 
293
</pre></div>
 
294
        <div class="backtrace"><pre>./failing_examples/mocking_example.rb:33:
 
295
./spec/spec/runner/formatter/html_formatter_spec.rb:18:
 
296
./spec/spec/runner/formatter/html_formatter_spec.rb:14:in `chdir'
 
297
./spec/spec/runner/formatter/html_formatter_spec.rb:14:</pre></div>
 
298
    <pre class="ruby"><code><span class="linenum">32</span>    <span class="ident">expected</span> <span class="punct">=</span> <span class="constant">Animal</span><span class="punct">.</span><span class="ident">new</span> <span class="punct">&quot;</span><span class="string">bob</span><span class="punct">&quot;,</span> <span class="punct">&quot;</span><span class="string">giraffe</span><span class="punct">&quot;</span>
 
299
<span class="linenum">33</span>    <span class="ident">actual</span>   <span class="punct">=</span> <span class="constant">Animal</span><span class="punct">.</span><span class="ident">new</span> <span class="punct">&quot;</span><span class="string">bob</span><span class="punct">&quot;,</span> <span class="punct">&quot;</span><span class="string">tortoise</span><span class="punct">&quot;</span>
 
300
<span class="offending"><span class="linenum">34</span>    <span class="ident">expected</span><span class="punct">.</span><span class="ident">should</span> <span class="ident">eql</span><span class="punct">(</span><span class="ident">actual</span><span class="punct">)</span></span>
 
301
<span class="linenum">35</span>  <span class="keyword">end</span>
 
302
<span class="linenum">36</span><span class="keyword">end</span></code></pre>
 
303
      </div>
 
304
    </dd>
 
305
  </dl>
 
306
</div>
 
307
<div class="example_group">
 
308
  <dl>
 
309
  <dt id="example_group_3">A consumer of a stub</dt>
 
310
    <script type="text/javascript">moveProgressBar('47.0');</script>
 
311
    <dd class="spec passed"><span class="passed_spec_name">should be able to stub methods on any Object</span></dd>
 
312
  </dl>
 
313
</div>
 
314
<div class="example_group">
 
315
  <dl>
 
316
  <dt id="example_group_4">A stubbed method on a class</dt>
 
317
    <script type="text/javascript">moveProgressBar('52.9');</script>
 
318
    <dd class="spec passed"><span class="passed_spec_name">should return the stubbed value</span></dd>
 
319
    <script type="text/javascript">moveProgressBar('58.8');</script>
 
320
    <dd class="spec passed"><span class="passed_spec_name">should revert to the original method after each spec</span></dd>
 
321
    <script type="text/javascript">moveProgressBar('64.7');</script>
 
322
    <dd class="spec passed"><span class="passed_spec_name">can stub! and mock the same message</span></dd>
 
323
  </dl>
 
324
</div>
 
325
<div class="example_group">
 
326
  <dl>
 
327
  <dt id="example_group_5">A mock</dt>
 
328
    <script type="text/javascript">moveProgressBar('70.5');</script>
 
329
    <dd class="spec passed"><span class="passed_spec_name">can stub!</span></dd>
 
330
    <script type="text/javascript">moveProgressBar('76.4');</script>
 
331
    <dd class="spec passed"><span class="passed_spec_name">can stub! and mock</span></dd>
 
332
    <script type="text/javascript">moveProgressBar('82.3');</script>
 
333
    <dd class="spec passed"><span class="passed_spec_name">can stub! and mock the same message</span></dd>
 
334
  </dl>
 
335
</div>
 
336
<div class="example_group">
 
337
  <dl>
 
338
  <dt id="example_group_6">pending example (using pending method)</dt>
 
339
    <script type="text/javascript">makeYellow('example_group_6');</script>
 
340
    <script type="text/javascript">moveProgressBar('88.2');</script>
 
341
    <dd class="spec not_implemented"><span class="not_implemented_spec_name">should be reported as &quot;PENDING: for some reason&quot; (PENDING: for some reason)</span></dd>
 
342
  </dl>
 
343
</div>
 
344
<div class="example_group">
 
345
  <dl>
 
346
  <dt id="example_group_7">pending example (with no block)</dt>
 
347
    <script type="text/javascript">makeYellow('example_group_7');</script>
 
348
    <script type="text/javascript">moveProgressBar('94.1');</script>
 
349
    <dd class="spec not_implemented"><span class="not_implemented_spec_name">should be reported as &quot;PENDING: Not Yet Implemented&quot; (PENDING: Not Yet Implemented)</span></dd>
 
350
  </dl>
 
351
</div>
 
352
<div class="example_group">
 
353
  <dl>
 
354
  <dt id="example_group_8">pending example (with block for pending)</dt>
 
355
    <script type="text/javascript">makeYellow('example_group_8');</script>
 
356
    <script type="text/javascript">moveProgressBar('100.0');</script>
 
357
    <dd class="spec not_implemented"><span class="not_implemented_spec_name">should have a failing block, passed to pending, reported as &quot;PENDING: for some reason&quot; (PENDING: for some reason)</span></dd>
 
358
  </dl>
 
359
</div>
 
360
<script type="text/javascript">document.getElementById('duration').innerHTML = "Finished in <strong>x seconds</strong>";</script>
 
361
<script type="text/javascript">document.getElementById('totals').innerHTML = "17 examples, 6 failures, 3 pending";</script>
 
362
</div>
 
363
</div>
 
364
</body>
 
365
</html>