smparkes-jazrb 0.0.4 → 0.0.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/README.rdoc +96 -12
- data/bin/jazrb +161 -4
- data/doc/jasmine/files.html +15 -1
- data/doc/jasmine/index.html +9 -1
- data/doc/jasmine/symbols/_global_.html +3 -1
- data/doc/jasmine/symbols/jasmine.Block.html +3 -1
- data/doc/jasmine/symbols/jasmine.Env.html +3 -1
- data/doc/jasmine/symbols/jasmine.EnvjsReporter.html +3 -1
- data/doc/jasmine/symbols/jasmine.JsApiReporter.html +3 -1
- data/doc/jasmine/symbols/jasmine.Matchers.html +3 -1
- data/doc/jasmine/symbols/jasmine.MultiReporter.html +3 -1
- data/doc/jasmine/symbols/jasmine.NestedResults.html +3 -1
- data/doc/jasmine/symbols/jasmine.Reporter.html +3 -1
- data/doc/jasmine/symbols/jasmine.Runner.html +3 -1
- data/doc/jasmine/symbols/jasmine.Spec.html +3 -1
- data/doc/jasmine/symbols/jasmine.Spy.html +3 -1
- data/doc/jasmine/symbols/jasmine.Suite.html +3 -1
- data/doc/jasmine/symbols/jasmine.XMLReporter.html +328 -0
- data/doc/jasmine/symbols/jasmine.html +3 -1
- data/doc/jasmine/symbols/jasmine.util.html +3 -1
- data/doc/jasmine/symbols/src/lib_XMLReporter.js.html +208 -0
- data/doc/jasmine/symbols/src/lib_jasmine-0.10.0.js.html +1 -1
- data/lib/jazrb/intro.js +2 -3
- data/lib/jazrb/jasmine/XMLReporter.js +200 -0
- data/lib/jazrb/jasmine/jasmine-0.10.0.js +1 -1
- data/lib/jazrb/jasmine/jasmine.js +1 -1
- data/lib/jazrb/options.rb +18 -0
- data/spec/example/hello_world_spec.js +29 -0
- data/spec/example/nested/HelloWorldSpec.js +13 -0
- data/spec/example/nested/SpecHelper.js +1 -0
- data/spec/example/plain_spec.js +8 -0
- data/spec/example/spec_helper.js +1 -0
- data/spec/spec_helper.js +18 -0
- data/spec/spec_runner.js +134 -0
- metadata +13 -2
data/README.rdoc
CHANGED
@@ -1,15 +1,24 @@
|
|
1
1
|
= jazrb
|
2
2
|
|
3
3
|
Jazrb provides support for running JavaScript specs written using the
|
4
|
-
Jasmine JavaScript BDD framework under
|
5
|
-
|
6
|
-
command.
|
4
|
+
Jasmine JavaScript BDD framework under env.js. It includes support for
|
5
|
+
running via watchr and autotest.
|
7
6
|
|
8
7
|
== Install
|
9
8
|
|
10
|
-
You can install the gem via <tt>gem install smparkes-jazrb</tt>.
|
11
|
-
you want install from github (http://github.com/smparkes/jazrb),
|
12
|
-
you'll need to checkout the Jasmine submodule (<tt>git submodule
|
9
|
+
You can install the gem via <tt>gem install smparkes-jazrb</tt>. If
|
10
|
+
you want to install from github (http://github.com/smparkes/jazrb),
|
11
|
+
you'll need to checkout the Jasmine submodule (<tt>git submodule
|
12
|
+
update --init</tt>) and also need to make sure you have the
|
13
|
+
prerequisites listed in the gemspec in the Rakefile. <tt>rake
|
14
|
+
gemspec</tt> will then build and copy the necessary parts of Jasmine.
|
15
|
+
|
16
|
+
If you want to run the examples/tests, you'll need jQuery. The <tt>git
|
17
|
+
submodule update --init</tt> command will have brought in jQuery, but
|
18
|
+
you'll need to build it: <tt>cd vendor/jquery && make</tt>.
|
19
|
+
|
20
|
+
Even if you install the gem, you may want to get the github files to
|
21
|
+
see and run the examples.
|
13
22
|
|
14
23
|
== Use
|
15
24
|
|
@@ -19,23 +28,98 @@ rspec <tt>spec</tt> command, e.g.,
|
|
19
28
|
|
20
29
|
jazrb spec/foo_spec.js spec/bar_spec.js
|
21
30
|
|
22
|
-
You can also execute
|
31
|
+
You can also execute HTML specs via jazrb:
|
23
32
|
|
24
33
|
jazrb spec/foo_spec.html
|
25
34
|
|
26
|
-
|
35
|
+
or even normal pages, that have the proper hooks to run as examples
|
36
|
+
(see below).
|
37
|
+
|
38
|
+
HTML files must be valid XML, i.e., XHTML, at this time.
|
39
|
+
|
40
|
+
The HTML fixture must load the necessary test files. Any number of
|
41
|
+
fixtures can be passed to the <tt>jazrb</tt> command.
|
42
|
+
|
43
|
+
jazrb uses env.js to run the tests, feeding it your HTML and
|
44
|
+
JavaScript, plus the necessary JavaScript and controls to make the tests
|
45
|
+
run correctly. You can see the entire <tt>envjsrb</tt> command by
|
46
|
+
passing <tt>jazrb</tt> the <tt>-v</tt> flag.
|
47
|
+
|
48
|
+
The Jasmine tests are configured to report results in streaming XML
|
49
|
+
(JUnit format, more or less), which <tt>jazrb</tt> turns into the
|
50
|
+
familiar rspec format. The <tt>--xml</tt> flag
|
51
|
+
causes <tt>jazrb</tt> to display the raw XML output.
|
52
|
+
|
53
|
+
To run all the tests in the <tt>spec</tt> directory repeatedly you can
|
54
|
+
use watchr:
|
55
|
+
|
56
|
+
rake test
|
57
|
+
|
58
|
+
or
|
59
|
+
|
60
|
+
watchr jazrb.watchr
|
61
|
+
|
62
|
+
or even
|
63
|
+
|
64
|
+
./jazrb.watchr
|
65
|
+
|
66
|
+
See jazrb's own <tt>jazrb.watchr</tt> file and the
|
67
|
+
discussion on examples below.
|
27
68
|
|
28
|
-
|
69
|
+
You can also try using <tt>autojaz</tt> as
|
29
70
|
you would use <tt>autospec</tt>:
|
30
71
|
|
31
72
|
autojaz
|
32
73
|
|
33
|
-
You'll need to install the ZenTest gem if you don't have it
|
34
|
-
|
35
|
-
cannot be.
|
74
|
+
You'll need to install the ZenTest gem if you don't have it installed;
|
75
|
+
<tt>jazrb</tt> can be used without ZenTest installed, but
|
76
|
+
<tt>autojaz</tt> cannot be. Note that <tt>autojaz</tt> may be
|
77
|
+
deprecated in favor of <tt>watchr</tt>.
|
36
78
|
|
37
79
|
Screen shot at http://www.scrnshots.com/users/smparkes/screenshots/206033
|
38
80
|
|
81
|
+
== Examples
|
82
|
+
|
83
|
+
There are examples in <tt>examples/*</tt> and <tt>spec/examples/*</tt>. You can run the
|
84
|
+
tests with <tt>rake test</tt> which will run the watchr control file,
|
85
|
+
<tt>jazrb.watchr</tt>. (Watchr as a runner will probably replace
|
86
|
+
autojaz.) You'll need the smparkes-watchr gem.
|
87
|
+
|
88
|
+
Running <tt>jazrb.watchr</tt> (either with <tt>watchr jazrb.watchr</tt>
|
89
|
+
or as <tt>./jazrb.watchr</tt> will run all the
|
90
|
+
tests and then watch the file system for changes. When it sees a change,
|
91
|
+
it reruns the test. It knows how to find the HTML fixtures for specs
|
92
|
+
where they exist in the right place, or it just runs the JavaScript
|
93
|
+
spec itself. An example of the former is the pair
|
94
|
+
<tt>example/hello_world.html</tt> and
|
95
|
+
<tt>spec/example/hello_world_spec.js</tt>: jazrb will reload the HTML if either file is changed.
|
96
|
+
An example of the latter
|
97
|
+
is <tt>spec/example/plain_spec.js</tt>.
|
98
|
+
|
99
|
+
You can also load the individual HTML files in the browser to run the
|
100
|
+
tests there. For example, on a Mac, <tt>open
|
101
|
+
example/hello_world.html</tt>. (The idea is that for production, the
|
102
|
+
spec helper files are changed to not load the tests: that should be
|
103
|
+
the only change necessary. Or the <tt><script></tt> tag could be
|
104
|
+
ripped out.) Note that to run the tests from the filesystem in Firefox, you'll
|
105
|
+
need to set the <tt>security.fileuri.strict_origin_policy</tt> option
|
106
|
+
to true.
|
107
|
+
|
108
|
+
== Recent Changes
|
109
|
+
|
110
|
+
1. Add watchr support
|
111
|
+
|
112
|
+
1. Add example
|
113
|
+
|
114
|
+
1. Support multiple fixtures on the <tt>jazrb</tt> command. (Actually, this is entirely due to <tt>envjsrb</tt> supporting multiple fixtures. You need a recent build from github or an smparkes-envjs gem version of at least 0.0.5.)
|
115
|
+
|
116
|
+
== Things to do
|
117
|
+
|
118
|
+
1. Complete and test support for loading against an HTTP server.
|
119
|
+
|
120
|
+
1. Focus on failing tests until fixed, a la autotest.
|
121
|
+
|
122
|
+
|
39
123
|
== Copyright
|
40
124
|
|
41
125
|
Copyright (c) 2009 Steven Parkes. See LICENSE for details.
|
data/bin/jazrb
CHANGED
@@ -1,11 +1,168 @@
|
|
1
1
|
#!/usr/bin/env ruby
|
2
|
+
|
3
|
+
$VERBOSE = true
|
4
|
+
|
5
|
+
require 'jazrb/options'
|
6
|
+
|
2
7
|
ENV["JAZRB_JS_PATH"] = JAZ_DIR = File.expand_path(File.join(File.dirname(__FILE__), '..', 'lib', 'jazrb'))
|
3
8
|
INTRO = File.join(JAZ_DIR, "intro.js")
|
4
9
|
OUTRO = File.join(JAZ_DIR, "outro.js")
|
5
10
|
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
11
|
+
args = [ "envjsrb", INTRO ];
|
12
|
+
|
13
|
+
introd = true
|
14
|
+
outrod = true
|
15
|
+
|
16
|
+
$jazrb_args.each do |f|
|
17
|
+
|
18
|
+
if f =~ /\.x?html?$/ || f =~ %r(^https?://)
|
19
|
+
if introd && !outrod
|
20
|
+
args << OUTRO
|
21
|
+
args << "about:blank"
|
22
|
+
outrod = true
|
23
|
+
introd = false
|
24
|
+
end
|
25
|
+
if !introd
|
26
|
+
args << INTRO
|
27
|
+
end
|
28
|
+
args << f
|
29
|
+
introd = true
|
30
|
+
outrod = false
|
31
|
+
elsif f == "about:blank"
|
32
|
+
if introd && !outrod
|
33
|
+
args << OUTRO
|
34
|
+
outrod = true
|
35
|
+
introd = false
|
36
|
+
end
|
37
|
+
args << f
|
38
|
+
else
|
39
|
+
args << f
|
40
|
+
end
|
41
|
+
|
10
42
|
end
|
11
43
|
|
44
|
+
args << OUTRO
|
45
|
+
|
46
|
+
cmd = args.join(" ")
|
47
|
+
|
48
|
+
puts cmd if $jazrb_verbose
|
49
|
+
|
50
|
+
require 'eventmachine'
|
51
|
+
require 'nokogiri'
|
52
|
+
|
53
|
+
class Restart < Exception; end
|
54
|
+
|
55
|
+
def colour(text, colour_code)
|
56
|
+
# return text unless ENV['RSPEC_COLOR'] || (colour? & (autospec? || output_to_tty?))
|
57
|
+
"#{colour_code}#{text}\e[0m"
|
58
|
+
end
|
59
|
+
|
60
|
+
def green(text); colour(text, "\e[32m"); end
|
61
|
+
def red(text); colour(text, "\e[31m"); end
|
62
|
+
def yellow(text); colour(text, "\e[33m"); end
|
63
|
+
def blue(text); colour(text, "\e[34m"); end
|
64
|
+
|
65
|
+
$spec_info = {}
|
66
|
+
$spec_info[:specs] = []
|
67
|
+
$spec_info[:failures] = []
|
68
|
+
$spec_info[:pending] = []
|
69
|
+
|
70
|
+
class SAX < Nokogiri::XML::SAX::Document
|
71
|
+
|
72
|
+
def start_element name, attrs
|
73
|
+
# p attrs
|
74
|
+
attrs = Hash[*attrs]
|
75
|
+
# p attrs
|
76
|
+
case name
|
77
|
+
when "testsuites";
|
78
|
+
when "testsuite";
|
79
|
+
@testsuite_name = attrs["name"]
|
80
|
+
when "testcase";
|
81
|
+
$spec_info[:specs] << (tc = {})
|
82
|
+
tc[:name] = @testsuite_name
|
83
|
+
@testcase_failed = false
|
84
|
+
when "failure";
|
85
|
+
$spec_info[:failures] << (tc = $spec_info[:specs].last)
|
86
|
+
tc[:message] = attrs["message"]
|
87
|
+
@testcase_failed = true
|
88
|
+
else; raise "hell: #{name}"
|
89
|
+
end
|
90
|
+
end
|
91
|
+
|
92
|
+
def cdata_block string
|
93
|
+
if @testcase_failed
|
94
|
+
$spec_info[:failures].last[:stack] = string
|
95
|
+
end
|
96
|
+
end
|
97
|
+
|
98
|
+
def end_element name
|
99
|
+
case name
|
100
|
+
when "testsuites";
|
101
|
+
raise Restart
|
102
|
+
when "testsuite";
|
103
|
+
when "testcase";
|
104
|
+
if !$jazrb_xml
|
105
|
+
char = nil
|
106
|
+
if @testcase_failed
|
107
|
+
char = red("F")
|
108
|
+
else
|
109
|
+
char = green(".")
|
110
|
+
end
|
111
|
+
print char
|
112
|
+
$stdout.flush
|
113
|
+
end
|
114
|
+
when "failure";
|
115
|
+
else; raise "hell: #{name}"
|
116
|
+
end
|
117
|
+
end
|
118
|
+
end
|
119
|
+
|
120
|
+
module WriteToNokogiri
|
121
|
+
def post_init
|
122
|
+
@parser = Nokogiri::XML::SAX::PushParser.new( SAX.new )
|
123
|
+
end
|
124
|
+
def receive_data data
|
125
|
+
begin
|
126
|
+
if $jazrb_xml
|
127
|
+
puts data
|
128
|
+
$stdout.flush
|
129
|
+
end
|
130
|
+
@parser << data
|
131
|
+
rescue Restart
|
132
|
+
@parser = Nokogiri::XML::SAX::PushParser.new( SAX.new )
|
133
|
+
rescue Exception => e
|
134
|
+
$stderr.puts "Parser raised #{e} on #{data}"
|
135
|
+
exit 1
|
136
|
+
end
|
137
|
+
end
|
138
|
+
def unbind
|
139
|
+
EM.stop
|
140
|
+
end
|
141
|
+
end
|
142
|
+
|
143
|
+
date = Time.now
|
144
|
+
EM.run do
|
145
|
+
EM.popen cmd, WriteToNokogiri
|
146
|
+
end
|
147
|
+
puts
|
148
|
+
puts
|
149
|
+
if !$jazrb_xml
|
150
|
+
$spec_info[:failures].each_with_index do |failure,i|
|
151
|
+
print i+1,")\n"
|
152
|
+
print red("#{failure[:name]} FAILED\n")
|
153
|
+
print red(failure[:message]),"\n"
|
154
|
+
print failure[:stack],"\n"
|
155
|
+
end
|
156
|
+
puts "Finished in #{Time.now - date} seconds"
|
157
|
+
puts
|
158
|
+
msg = "#{$spec_info[:specs].length} examples, #{$spec_info[:failures].length} failures, #{$spec_info[:pending].length} pending"
|
159
|
+
if $spec_info[:failures].length > 0
|
160
|
+
msg = red(msg)
|
161
|
+
elsif $spec_info[:pending].length > 0
|
162
|
+
msg = yellow(msg)
|
163
|
+
else
|
164
|
+
msg = green(msg)
|
165
|
+
end
|
166
|
+
puts msg
|
167
|
+
end
|
168
|
+
exit $spec_info[:failures].length > 0 ? 1 : 0
|
data/doc/jasmine/files.html
CHANGED
@@ -214,6 +214,8 @@ ul.inheritsList
|
|
214
214
|
|
215
215
|
<li><a href="symbols/jasmine.util.html">jasmine.util</a></li>
|
216
216
|
|
217
|
+
<li><a href="symbols/jasmine.XMLReporter.html">jasmine.XMLReporter</a></li>
|
218
|
+
|
217
219
|
</ul>
|
218
220
|
<hr />
|
219
221
|
</div>
|
@@ -278,6 +280,18 @@ ul.inheritsList
|
|
278
280
|
|
279
281
|
|
280
282
|
|
283
|
+
</dl>
|
284
|
+
</div>
|
285
|
+
<hr />
|
286
|
+
|
287
|
+
<div>
|
288
|
+
<h2><a href="symbols/src/lib_XMLReporter.js.html">lib/XMLReporter.js</a></h2>
|
289
|
+
|
290
|
+
<dl>
|
291
|
+
|
292
|
+
|
293
|
+
|
294
|
+
|
281
295
|
</dl>
|
282
296
|
</div>
|
283
297
|
<hr />
|
@@ -286,7 +300,7 @@ ul.inheritsList
|
|
286
300
|
</div>
|
287
301
|
<div class="fineprint" style="clear:both">
|
288
302
|
|
289
|
-
Documentation generated by <a href="http://www.jsdoctoolkit.org/" target="_blankt">JsDoc Toolkit</a> 2.1.0 on
|
303
|
+
Documentation generated by <a href="http://www.jsdoctoolkit.org/" target="_blankt">JsDoc Toolkit</a> 2.1.0 on Thu Nov 05 2009 13:20:21 GMT-0800 (PST)
|
290
304
|
</div>
|
291
305
|
</body>
|
292
306
|
</html>
|
data/doc/jasmine/index.html
CHANGED
@@ -214,6 +214,8 @@ ul.inheritsList
|
|
214
214
|
|
215
215
|
<li><a href="symbols/jasmine.util.html">jasmine.util</a></li>
|
216
216
|
|
217
|
+
<li><a href="symbols/jasmine.XMLReporter.html">jasmine.XMLReporter</a></li>
|
218
|
+
|
217
219
|
</ul>
|
218
220
|
<hr />
|
219
221
|
</div>
|
@@ -312,11 +314,17 @@ ul.inheritsList
|
|
312
314
|
</div>
|
313
315
|
<hr />
|
314
316
|
|
317
|
+
<div>
|
318
|
+
<h2><a href="symbols/jasmine.XMLReporter.html">jasmine.XMLReporter</a></h2>
|
319
|
+
|
320
|
+
</div>
|
321
|
+
<hr />
|
322
|
+
|
315
323
|
|
316
324
|
</div>
|
317
325
|
<div class="fineprint" style="clear:both">
|
318
326
|
|
319
|
-
Documentation generated by <a href="http://www.jsdoctoolkit.org/" target="_blankt">JsDoc Toolkit</a> 2.1.0 on
|
327
|
+
Documentation generated by <a href="http://www.jsdoctoolkit.org/" target="_blankt">JsDoc Toolkit</a> 2.1.0 on Thu Nov 05 2009 13:20:21 GMT-0800 (PST)
|
320
328
|
</div>
|
321
329
|
</body>
|
322
330
|
</html>
|
@@ -219,6 +219,8 @@ ul.inheritsList
|
|
219
219
|
|
220
220
|
<li><a href="../symbols/jasmine.util.html">jasmine.util</a></li>
|
221
221
|
|
222
|
+
<li><a href="../symbols/jasmine.XMLReporter.html">jasmine.XMLReporter</a></li>
|
223
|
+
|
222
224
|
</ul>
|
223
225
|
<hr />
|
224
226
|
<!-- end publish.classesIndex -->
|
@@ -912,7 +914,7 @@ A convenience method that allows existing specs to be disabled temporarily durin
|
|
912
914
|
<!-- ============================== footer ================================= -->
|
913
915
|
<div class="fineprint" style="clear:both">
|
914
916
|
|
915
|
-
Documentation generated by <a href="http://www.jsdoctoolkit.org/" target="_blank">JsDoc Toolkit</a> 2.1.0 on
|
917
|
+
Documentation generated by <a href="http://www.jsdoctoolkit.org/" target="_blank">JsDoc Toolkit</a> 2.1.0 on Thu Nov 05 2009 13:20:20 GMT-0800 (PST)
|
916
918
|
</div>
|
917
919
|
</body>
|
918
920
|
</html>
|
@@ -219,6 +219,8 @@ ul.inheritsList
|
|
219
219
|
|
220
220
|
<li><a href="../symbols/jasmine.util.html">jasmine.util</a></li>
|
221
221
|
|
222
|
+
<li><a href="../symbols/jasmine.XMLReporter.html">jasmine.XMLReporter</a></li>
|
223
|
+
|
222
224
|
</ul>
|
223
225
|
<hr />
|
224
226
|
<!-- end publish.classesIndex -->
|
@@ -343,7 +345,7 @@ ul.inheritsList
|
|
343
345
|
<!-- ============================== footer ================================= -->
|
344
346
|
<div class="fineprint" style="clear:both">
|
345
347
|
|
346
|
-
Documentation generated by <a href="http://www.jsdoctoolkit.org/" target="_blank">JsDoc Toolkit</a> 2.1.0 on
|
348
|
+
Documentation generated by <a href="http://www.jsdoctoolkit.org/" target="_blank">JsDoc Toolkit</a> 2.1.0 on Thu Nov 05 2009 13:20:20 GMT-0800 (PST)
|
347
349
|
</div>
|
348
350
|
</body>
|
349
351
|
</html>
|
@@ -219,6 +219,8 @@ ul.inheritsList
|
|
219
219
|
|
220
220
|
<li><a href="../symbols/jasmine.util.html">jasmine.util</a></li>
|
221
221
|
|
222
|
+
<li><a href="../symbols/jasmine.XMLReporter.html">jasmine.XMLReporter</a></li>
|
223
|
+
|
222
224
|
</ul>
|
223
225
|
<hr />
|
224
226
|
<!-- end publish.classesIndex -->
|
@@ -511,7 +513,7 @@ ul.inheritsList
|
|
511
513
|
<!-- ============================== footer ================================= -->
|
512
514
|
<div class="fineprint" style="clear:both">
|
513
515
|
|
514
|
-
Documentation generated by <a href="http://www.jsdoctoolkit.org/" target="_blank">JsDoc Toolkit</a> 2.1.0 on
|
516
|
+
Documentation generated by <a href="http://www.jsdoctoolkit.org/" target="_blank">JsDoc Toolkit</a> 2.1.0 on Thu Nov 05 2009 13:20:20 GMT-0800 (PST)
|
515
517
|
</div>
|
516
518
|
</body>
|
517
519
|
</html>
|
@@ -219,6 +219,8 @@ ul.inheritsList
|
|
219
219
|
|
220
220
|
<li><a href="../symbols/jasmine.util.html">jasmine.util</a></li>
|
221
221
|
|
222
|
+
<li><a href="../symbols/jasmine.XMLReporter.html">jasmine.XMLReporter</a></li>
|
223
|
+
|
222
224
|
</ul>
|
223
225
|
<hr />
|
224
226
|
<!-- end publish.classesIndex -->
|
@@ -320,7 +322,7 @@ ul.inheritsList
|
|
320
322
|
<!-- ============================== footer ================================= -->
|
321
323
|
<div class="fineprint" style="clear:both">
|
322
324
|
|
323
|
-
Documentation generated by <a href="http://www.jsdoctoolkit.org/" target="_blank">JsDoc Toolkit</a> 2.1.0 on
|
325
|
+
Documentation generated by <a href="http://www.jsdoctoolkit.org/" target="_blank">JsDoc Toolkit</a> 2.1.0 on Thu Nov 05 2009 13:20:20 GMT-0800 (PST)
|
324
326
|
</div>
|
325
327
|
</body>
|
326
328
|
</html>
|
@@ -219,6 +219,8 @@ ul.inheritsList
|
|
219
219
|
|
220
220
|
<li><a href="../symbols/jasmine.util.html">jasmine.util</a></li>
|
221
221
|
|
222
|
+
<li><a href="../symbols/jasmine.XMLReporter.html">jasmine.XMLReporter</a></li>
|
223
|
+
|
222
224
|
</ul>
|
223
225
|
<hr />
|
224
226
|
<!-- end publish.classesIndex -->
|
@@ -320,7 +322,7 @@ ul.inheritsList
|
|
320
322
|
<!-- ============================== footer ================================= -->
|
321
323
|
<div class="fineprint" style="clear:both">
|
322
324
|
|
323
|
-
Documentation generated by <a href="http://www.jsdoctoolkit.org/" target="_blank">JsDoc Toolkit</a> 2.1.0 on
|
325
|
+
Documentation generated by <a href="http://www.jsdoctoolkit.org/" target="_blank">JsDoc Toolkit</a> 2.1.0 on Thu Nov 05 2009 13:20:20 GMT-0800 (PST)
|
324
326
|
</div>
|
325
327
|
</body>
|
326
328
|
</html>
|
@@ -219,6 +219,8 @@ ul.inheritsList
|
|
219
219
|
|
220
220
|
<li><a href="../symbols/jasmine.util.html">jasmine.util</a></li>
|
221
221
|
|
222
|
+
<li><a href="../symbols/jasmine.XMLReporter.html">jasmine.XMLReporter</a></li>
|
223
|
+
|
222
224
|
</ul>
|
223
225
|
<hr />
|
224
226
|
<!-- end publish.classesIndex -->
|
@@ -879,7 +881,7 @@ a pattern or a String.
|
|
879
881
|
<!-- ============================== footer ================================= -->
|
880
882
|
<div class="fineprint" style="clear:both">
|
881
883
|
|
882
|
-
Documentation generated by <a href="http://www.jsdoctoolkit.org/" target="_blank">JsDoc Toolkit</a> 2.1.0 on
|
884
|
+
Documentation generated by <a href="http://www.jsdoctoolkit.org/" target="_blank">JsDoc Toolkit</a> 2.1.0 on Thu Nov 05 2009 13:20:20 GMT-0800 (PST)
|
883
885
|
</div>
|
884
886
|
</body>
|
885
887
|
</html>
|
@@ -219,6 +219,8 @@ ul.inheritsList
|
|
219
219
|
|
220
220
|
<li><a href="../symbols/jasmine.util.html">jasmine.util</a></li>
|
221
221
|
|
222
|
+
<li><a href="../symbols/jasmine.XMLReporter.html">jasmine.XMLReporter</a></li>
|
223
|
+
|
222
224
|
</ul>
|
223
225
|
<hr />
|
224
226
|
<!-- end publish.classesIndex -->
|
@@ -320,7 +322,7 @@ ul.inheritsList
|
|
320
322
|
<!-- ============================== footer ================================= -->
|
321
323
|
<div class="fineprint" style="clear:both">
|
322
324
|
|
323
|
-
Documentation generated by <a href="http://www.jsdoctoolkit.org/" target="_blank">JsDoc Toolkit</a> 2.1.0 on
|
325
|
+
Documentation generated by <a href="http://www.jsdoctoolkit.org/" target="_blank">JsDoc Toolkit</a> 2.1.0 on Thu Nov 05 2009 13:20:20 GMT-0800 (PST)
|
324
326
|
</div>
|
325
327
|
</body>
|
326
328
|
</html>
|
@@ -219,6 +219,8 @@ ul.inheritsList
|
|
219
219
|
|
220
220
|
<li><a href="../symbols/jasmine.util.html">jasmine.util</a></li>
|
221
221
|
|
222
|
+
<li><a href="../symbols/jasmine.XMLReporter.html">jasmine.XMLReporter</a></li>
|
223
|
+
|
222
224
|
</ul>
|
223
225
|
<hr />
|
224
226
|
<!-- end publish.classesIndex -->
|
@@ -704,7 +706,7 @@ ul.inheritsList
|
|
704
706
|
<!-- ============================== footer ================================= -->
|
705
707
|
<div class="fineprint" style="clear:both">
|
706
708
|
|
707
|
-
Documentation generated by <a href="http://www.jsdoctoolkit.org/" target="_blank">JsDoc Toolkit</a> 2.1.0 on
|
709
|
+
Documentation generated by <a href="http://www.jsdoctoolkit.org/" target="_blank">JsDoc Toolkit</a> 2.1.0 on Thu Nov 05 2009 13:20:20 GMT-0800 (PST)
|
708
710
|
</div>
|
709
711
|
</body>
|
710
712
|
</html>
|
@@ -219,6 +219,8 @@ ul.inheritsList
|
|
219
219
|
|
220
220
|
<li><a href="../symbols/jasmine.util.html">jasmine.util</a></li>
|
221
221
|
|
222
|
+
<li><a href="../symbols/jasmine.XMLReporter.html">jasmine.XMLReporter</a></li>
|
223
|
+
|
222
224
|
</ul>
|
223
225
|
<hr />
|
224
226
|
<!-- end publish.classesIndex -->
|
@@ -320,7 +322,7 @@ ul.inheritsList
|
|
320
322
|
<!-- ============================== footer ================================= -->
|
321
323
|
<div class="fineprint" style="clear:both">
|
322
324
|
|
323
|
-
Documentation generated by <a href="http://www.jsdoctoolkit.org/" target="_blank">JsDoc Toolkit</a> 2.1.0 on
|
325
|
+
Documentation generated by <a href="http://www.jsdoctoolkit.org/" target="_blank">JsDoc Toolkit</a> 2.1.0 on Thu Nov 05 2009 13:20:21 GMT-0800 (PST)
|
324
326
|
</div>
|
325
327
|
</body>
|
326
328
|
</html>
|
@@ -219,6 +219,8 @@ ul.inheritsList
|
|
219
219
|
|
220
220
|
<li><a href="../symbols/jasmine.util.html">jasmine.util</a></li>
|
221
221
|
|
222
|
+
<li><a href="../symbols/jasmine.XMLReporter.html">jasmine.XMLReporter</a></li>
|
223
|
+
|
222
224
|
</ul>
|
223
225
|
<hr />
|
224
226
|
<!-- end publish.classesIndex -->
|
@@ -331,7 +333,7 @@ ul.inheritsList
|
|
331
333
|
<!-- ============================== footer ================================= -->
|
332
334
|
<div class="fineprint" style="clear:both">
|
333
335
|
|
334
|
-
Documentation generated by <a href="http://www.jsdoctoolkit.org/" target="_blank">JsDoc Toolkit</a> 2.1.0 on
|
336
|
+
Documentation generated by <a href="http://www.jsdoctoolkit.org/" target="_blank">JsDoc Toolkit</a> 2.1.0 on Thu Nov 05 2009 13:20:21 GMT-0800 (PST)
|
335
337
|
</div>
|
336
338
|
</body>
|
337
339
|
</html>
|
@@ -219,6 +219,8 @@ ul.inheritsList
|
|
219
219
|
|
220
220
|
<li><a href="../symbols/jasmine.util.html">jasmine.util</a></li>
|
221
221
|
|
222
|
+
<li><a href="../symbols/jasmine.XMLReporter.html">jasmine.XMLReporter</a></li>
|
223
|
+
|
222
224
|
</ul>
|
223
225
|
<hr />
|
224
226
|
<!-- end publish.classesIndex -->
|
@@ -400,7 +402,7 @@ ul.inheritsList
|
|
400
402
|
<!-- ============================== footer ================================= -->
|
401
403
|
<div class="fineprint" style="clear:both">
|
402
404
|
|
403
|
-
Documentation generated by <a href="http://www.jsdoctoolkit.org/" target="_blank">JsDoc Toolkit</a> 2.1.0 on
|
405
|
+
Documentation generated by <a href="http://www.jsdoctoolkit.org/" target="_blank">JsDoc Toolkit</a> 2.1.0 on Thu Nov 05 2009 13:20:21 GMT-0800 (PST)
|
404
406
|
</div>
|
405
407
|
</body>
|
406
408
|
</html>
|
@@ -219,6 +219,8 @@ ul.inheritsList
|
|
219
219
|
|
220
220
|
<li><a href="../symbols/jasmine.util.html">jasmine.util</a></li>
|
221
221
|
|
222
|
+
<li><a href="../symbols/jasmine.XMLReporter.html">jasmine.XMLReporter</a></li>
|
223
|
+
|
222
224
|
</ul>
|
223
225
|
<hr />
|
224
226
|
<!-- end publish.classesIndex -->
|
@@ -849,7 +851,7 @@ expect(foo.bar.callCount).toEqual(0);</pre>
|
|
849
851
|
<!-- ============================== footer ================================= -->
|
850
852
|
<div class="fineprint" style="clear:both">
|
851
853
|
|
852
|
-
Documentation generated by <a href="http://www.jsdoctoolkit.org/" target="_blank">JsDoc Toolkit</a> 2.1.0 on
|
854
|
+
Documentation generated by <a href="http://www.jsdoctoolkit.org/" target="_blank">JsDoc Toolkit</a> 2.1.0 on Thu Nov 05 2009 13:20:21 GMT-0800 (PST)
|
853
855
|
</div>
|
854
856
|
</body>
|
855
857
|
</html>
|
@@ -219,6 +219,8 @@ ul.inheritsList
|
|
219
219
|
|
220
220
|
<li><a href="../symbols/jasmine.util.html">jasmine.util</a></li>
|
221
221
|
|
222
|
+
<li><a href="../symbols/jasmine.XMLReporter.html">jasmine.XMLReporter</a></li>
|
223
|
+
|
222
224
|
</ul>
|
223
225
|
<hr />
|
224
226
|
<!-- end publish.classesIndex -->
|
@@ -349,7 +351,7 @@ ul.inheritsList
|
|
349
351
|
<!-- ============================== footer ================================= -->
|
350
352
|
<div class="fineprint" style="clear:both">
|
351
353
|
|
352
|
-
Documentation generated by <a href="http://www.jsdoctoolkit.org/" target="_blank">JsDoc Toolkit</a> 2.1.0 on
|
354
|
+
Documentation generated by <a href="http://www.jsdoctoolkit.org/" target="_blank">JsDoc Toolkit</a> 2.1.0 on Thu Nov 05 2009 13:20:21 GMT-0800 (PST)
|
353
355
|
</div>
|
354
356
|
</body>
|
355
357
|
</html>
|