smparkes-jazrb 0.0.3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (41) hide show
  1. data/LICENSE +20 -0
  2. data/README.rdoc +41 -0
  3. data/bin/autojaz +4 -0
  4. data/bin/jazrb +11 -0
  5. data/doc/jasmine/files.html +292 -0
  6. data/doc/jasmine/index.html +322 -0
  7. data/doc/jasmine/symbols/_global_.html +918 -0
  8. data/doc/jasmine/symbols/jasmine.Block.html +349 -0
  9. data/doc/jasmine/symbols/jasmine.Env.html +517 -0
  10. data/doc/jasmine/symbols/jasmine.EnvjsReporter.html +326 -0
  11. data/doc/jasmine/symbols/jasmine.JsApiReporter.html +326 -0
  12. data/doc/jasmine/symbols/jasmine.Matchers.html +885 -0
  13. data/doc/jasmine/symbols/jasmine.MultiReporter.html +326 -0
  14. data/doc/jasmine/symbols/jasmine.NestedResults.html +710 -0
  15. data/doc/jasmine/symbols/jasmine.Reporter.html +326 -0
  16. data/doc/jasmine/symbols/jasmine.Runner.html +337 -0
  17. data/doc/jasmine/symbols/jasmine.Spec.html +406 -0
  18. data/doc/jasmine/symbols/jasmine.Spy.html +855 -0
  19. data/doc/jasmine/symbols/jasmine.Suite.html +355 -0
  20. data/doc/jasmine/symbols/jasmine.html +770 -0
  21. data/doc/jasmine/symbols/jasmine.util.html +326 -0
  22. data/doc/jasmine/symbols/src/lib_EnvjsReporter.js.html +149 -0
  23. data/doc/jasmine/symbols/src/lib_TrivialReporter.js.html +127 -0
  24. data/doc/jasmine/symbols/src/lib_consolex.js.html +35 -0
  25. data/doc/jasmine/symbols/src/lib_jasmine-0.10.0.js.html +2302 -0
  26. data/doc/jasmine/symbols/src/lib_jasmine-0.9.0.js.html +2212 -0
  27. data/doc/jasmine/symbols/src/lib_json2.js.html +486 -0
  28. data/lib/autotest/discover.rb +3 -0
  29. data/lib/autotest/jazrb.rb +55 -0
  30. data/lib/jazrb/intro.js +18 -0
  31. data/lib/jazrb/jasmine/EnvjsReporter.js +141 -0
  32. data/lib/jazrb/jasmine/TrivialReporter.js +119 -0
  33. data/lib/jazrb/jasmine/consolex.js +28 -0
  34. data/lib/jazrb/jasmine/jasmine-0.10.0.js +2294 -0
  35. data/lib/jazrb/jasmine/jasmine.js +2294 -0
  36. data/lib/jazrb/jasmine/json2.js +478 -0
  37. data/lib/jazrb/outro.js +3 -0
  38. data/lib/jazrb.rb +0 -0
  39. data/test/jazrb_test.rb +7 -0
  40. data/test/test_helper.rb +10 -0
  41. metadata +116 -0
data/LICENSE ADDED
@@ -0,0 +1,20 @@
1
+ Copyright (c) 2009 Steven Parkes
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining
4
+ a copy of this software and associated documentation files (the
5
+ "Software"), to deal in the Software without restriction, including
6
+ without limitation the rights to use, copy, modify, merge, publish,
7
+ distribute, sublicense, and/or sell copies of the Software, and to
8
+ permit persons to whom the Software is furnished to do so, subject to
9
+ the following conditions:
10
+
11
+ The above copyright notice and this permission notice shall be
12
+ included in all copies or substantial portions of the Software.
13
+
14
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
17
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
18
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
19
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
20
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/README.rdoc ADDED
@@ -0,0 +1,41 @@
1
+ = jazrb
2
+
3
+ Jazrb provides support for running JavaScript specs written using the
4
+ Jasmine JavaScript BDD framework under <tt>env.js</tt>. It includes
5
+ support for running via autotest using the <tt>autojaz</tt>
6
+ command.
7
+
8
+ == Install
9
+
10
+ You can install the gem via <tt>gem install smparkes-jazrb</tt>. If
11
+ you want install from github (http://github.com/smparkes/jazrb),
12
+ you'll need to checkout the Jasmine submodule (<tt>git submodule update --init</tt>) and also need to make sure you have the prerequisites listed in the gemspec in the Rakefile.
13
+
14
+ == Use
15
+
16
+ From the root of a project, i.e., the parent of the <tt>spec</tt>
17
+ directory, you can use the <tt>jazrb</tt> command as you would the
18
+ rspec <tt>spec</tt> command, e.g.,
19
+
20
+ jazrb spec/foo_spec.js spec/bar_spec.js
21
+
22
+ You can also execute an HTML spec via jazrb:
23
+
24
+ jazrb spec/foo_spec.html
25
+
26
+ The HTML fixture must load the necessary test files. Currently, only one fixture can be run per <tt>jazrb</tt> command.
27
+
28
+ To run all the tests in the <tt>spec</tt> directory repeatedly, use <tt>autojaz</tt> as
29
+ you would use <tt>autospec</tt>:
30
+
31
+ autojaz
32
+
33
+ You'll need to install the ZenTest gem if you don't have it
34
+ installed; <tt>jazrb</tt> can be used without ZenTest installed, but <tt>autojaz</tt>
35
+ cannot be. autojaz does not (and currently cannot) load HTML fixtures.
36
+
37
+ Screen shot at http://www.scrnshots.com/users/smparkes/screenshots/206033
38
+
39
+ == Copyright
40
+
41
+ Copyright (c) 2009 Steven Parkes. See LICENSE for details.
data/bin/autojaz ADDED
@@ -0,0 +1,4 @@
1
+ #!/usr/bin/env ruby
2
+ ENV['JAZRB'] = 'true' # allows autotest to discover jazrb
3
+ ENV['AUTOTEST'] = 'true' # allows autotest to run w/ color on linux
4
+ system (RUBY_PLATFORM =~ /mswin|mingw/ ? 'autotest.bat' : 'autotest'), *ARGV
data/bin/jazrb ADDED
@@ -0,0 +1,11 @@
1
+ #!/usr/bin/env ruby
2
+ ENV["JAZRB_JS_PATH"] = JAZ_DIR = File.expand_path(File.join(File.dirname(__FILE__), '..', 'lib', 'jazrb'))
3
+ INTRO = File.join(JAZ_DIR, "intro.js")
4
+ OUTRO = File.join(JAZ_DIR, "outro.js")
5
+
6
+ if ARGV.detect { |f| f =~ /\.x?html?$/ }
7
+ system "envjsrb #{ARGV.join(" ")}"
8
+ else
9
+ system "envjsrb #{INTRO} #{ARGV.join(" ")} #{OUTRO}"
10
+ end
11
+
@@ -0,0 +1,292 @@
1
+ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
2
+ "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
3
+ <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
4
+ <head>
5
+ <meta http-equiv="content-type" content="text/html; charset=utf-8"" />
6
+
7
+ <title>JsDoc Reference - File Index</title>
8
+ <meta name="generator" content="JsDoc Toolkit" />
9
+
10
+ <style type="text/css">
11
+ /* default.css */
12
+ body
13
+ {
14
+ font: 12px "Lucida Grande", Tahoma, Arial, Helvetica, sans-serif;
15
+ width: 800px;
16
+ }
17
+
18
+ .header
19
+ {
20
+ clear: both;
21
+ background-color: #ccc;
22
+ padding: 8px;
23
+ }
24
+
25
+ h1
26
+ {
27
+ font-size: 150%;
28
+ font-weight: bold;
29
+ padding: 0;
30
+ margin: 1em 0 0 .3em;
31
+ }
32
+
33
+ hr
34
+ {
35
+ border: none 0;
36
+ border-top: 1px solid #7F8FB1;
37
+ height: 1px;
38
+ }
39
+
40
+ pre.code
41
+ {
42
+ display: block;
43
+ padding: 8px;
44
+ border: 1px dashed #ccc;
45
+ }
46
+
47
+ #index
48
+ {
49
+ margin-top: 24px;
50
+ float: left;
51
+ width: 160px;
52
+ position: absolute;
53
+ left: 8px;
54
+ background-color: #F3F3F3;
55
+ padding: 8px;
56
+ }
57
+
58
+ #content
59
+ {
60
+ margin-left: 190px;
61
+ width: 600px;
62
+ }
63
+
64
+ .classList
65
+ {
66
+ list-style-type: none;
67
+ padding: 0;
68
+ margin: 0 0 0 8px;
69
+ font-family: arial, sans-serif;
70
+ font-size: 1em;
71
+ overflow: auto;
72
+ }
73
+
74
+ .classList li
75
+ {
76
+ padding: 0;
77
+ margin: 0 0 8px 0;
78
+ }
79
+
80
+ .summaryTable { width: 100%; }
81
+
82
+ h1.classTitle
83
+ {
84
+ font-size:170%;
85
+ line-height:130%;
86
+ }
87
+
88
+ h2 { font-size: 110%; }
89
+ caption, div.sectionTitle
90
+ {
91
+ background-color: #7F8FB1;
92
+ color: #fff;
93
+ font-size:130%;
94
+ text-align: left;
95
+ padding: 2px 6px 2px 6px;
96
+ border: 1px #7F8FB1 solid;
97
+ }
98
+
99
+ div.sectionTitle { margin-bottom: 8px; }
100
+ .summaryTable thead { display: none; }
101
+
102
+ .summaryTable td
103
+ {
104
+ vertical-align: top;
105
+ padding: 4px;
106
+ border-bottom: 1px #7F8FB1 solid;
107
+ border-right: 1px #7F8FB1 solid;
108
+ }
109
+
110
+ /*col#summaryAttributes {}*/
111
+ .summaryTable td.attributes
112
+ {
113
+ border-left: 1px #7F8FB1 solid;
114
+ width: 140px;
115
+ text-align: right;
116
+ }
117
+
118
+ td.attributes, .fixedFont
119
+ {
120
+ line-height: 15px;
121
+ color: #002EBE;
122
+ font-family: "Courier New",Courier,monospace;
123
+ font-size: 13px;
124
+ }
125
+
126
+ .summaryTable td.nameDescription
127
+ {
128
+ text-align: left;
129
+ font-size: 13px;
130
+ line-height: 15px;
131
+ }
132
+
133
+ .summaryTable td.nameDescription, .description
134
+ {
135
+ line-height: 15px;
136
+ padding: 4px;
137
+ padding-left: 4px;
138
+ }
139
+
140
+ .summaryTable { margin-bottom: 8px; }
141
+
142
+ ul.inheritsList
143
+ {
144
+ list-style: square;
145
+ margin-left: 20px;
146
+ padding-left: 0;
147
+ }
148
+
149
+ .detailList {
150
+ margin-left: 20px;
151
+ line-height: 15px;
152
+ }
153
+ .detailList dt { margin-left: 20px; }
154
+
155
+ .detailList .heading
156
+ {
157
+ font-weight: bold;
158
+ padding-bottom: 6px;
159
+ margin-left: 0;
160
+ }
161
+
162
+ .light, td.attributes, .light a:link, .light a:visited
163
+ {
164
+ color: #777;
165
+ font-style: italic;
166
+ }
167
+
168
+ .fineprint
169
+ {
170
+ text-align: right;
171
+ font-size: 10px;
172
+ }
173
+ </style>
174
+ </head>
175
+
176
+ <body>
177
+ <div id="header">
178
+ </div>
179
+
180
+ <div id="index">
181
+ <div align="center"><a href="index.html">Class Index</a>
182
+ | <a href="files.html">File Index</a></div>
183
+ <hr />
184
+ <h2>Classes</h2>
185
+ <ul class="classList">
186
+
187
+ <li><i><a href="symbols/_global_.html">_global_</a></i></li>
188
+
189
+ <li><a href="symbols/jasmine.html">jasmine</a></li>
190
+
191
+ <li><a href="symbols/jasmine.Block.html">jasmine.Block</a></li>
192
+
193
+ <li><a href="symbols/jasmine.Env.html">jasmine.Env</a></li>
194
+
195
+ <li><a href="symbols/jasmine.EnvjsReporter.html">jasmine.EnvjsReporter</a></li>
196
+
197
+ <li><a href="symbols/jasmine.JsApiReporter.html">jasmine.JsApiReporter</a></li>
198
+
199
+ <li><a href="symbols/jasmine.Matchers.html">jasmine.Matchers</a></li>
200
+
201
+ <li><a href="symbols/jasmine.MultiReporter.html">jasmine.MultiReporter</a></li>
202
+
203
+ <li><a href="symbols/jasmine.NestedResults.html">jasmine.NestedResults</a></li>
204
+
205
+ <li><a href="symbols/jasmine.Reporter.html">jasmine.Reporter</a></li>
206
+
207
+ <li><a href="symbols/jasmine.Runner.html">jasmine.Runner</a></li>
208
+
209
+ <li><a href="symbols/jasmine.Spec.html">jasmine.Spec</a></li>
210
+
211
+ <li><a href="symbols/jasmine.Spy.html">jasmine.Spy</a></li>
212
+
213
+ <li><a href="symbols/jasmine.Suite.html">jasmine.Suite</a></li>
214
+
215
+ <li><a href="symbols/jasmine.util.html">jasmine.util</a></li>
216
+
217
+ </ul>
218
+ <hr />
219
+ </div>
220
+
221
+ <div id="content">
222
+ <h1 class="classTitle">File Index</h1>
223
+
224
+
225
+ <div>
226
+ <h2><a href="symbols/src/lib_consolex.js.html">lib/consolex.js</a></h2>
227
+
228
+ <dl>
229
+
230
+
231
+
232
+
233
+ </dl>
234
+ </div>
235
+ <hr />
236
+
237
+ <div>
238
+ <h2><a href="symbols/src/lib_EnvjsReporter.js.html">lib/EnvjsReporter.js</a></h2>
239
+
240
+ <dl>
241
+
242
+
243
+
244
+
245
+ </dl>
246
+ </div>
247
+ <hr />
248
+
249
+ <div>
250
+ <h2><a href="symbols/src/lib_jasmine-0.10.0.js.html">lib/jasmine-0.10.0.js</a></h2>
251
+
252
+ <dl>
253
+
254
+
255
+
256
+
257
+ </dl>
258
+ </div>
259
+ <hr />
260
+
261
+ <div>
262
+ <h2><a href="symbols/src/lib_json2.js.html">lib/json2.js</a></h2>
263
+
264
+ <dl>
265
+
266
+
267
+
268
+
269
+ </dl>
270
+ </div>
271
+ <hr />
272
+
273
+ <div>
274
+ <h2><a href="symbols/src/lib_TrivialReporter.js.html">lib/TrivialReporter.js</a></h2>
275
+
276
+ <dl>
277
+
278
+
279
+
280
+
281
+ </dl>
282
+ </div>
283
+ <hr />
284
+
285
+
286
+ </div>
287
+ <div class="fineprint" style="clear:both">
288
+
289
+ Documentation generated by <a href="http://www.jsdoctoolkit.org/" target="_blankt">JsDoc Toolkit</a> 2.1.0 on Mon Nov 02 2009 16:15:59 GMT-0800 (PST)
290
+ </div>
291
+ </body>
292
+ </html>
@@ -0,0 +1,322 @@
1
+ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
2
+ "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
3
+ <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
4
+ <head>
5
+ <meta http-equiv="content-type" content="text/html; charset=utf-8"" />
6
+
7
+ <title>JsDoc Reference - Index</title>
8
+ <meta name="generator" content="JsDoc Toolkit" />
9
+
10
+ <style type="text/css">
11
+ /* default.css */
12
+ body
13
+ {
14
+ font: 12px "Lucida Grande", Tahoma, Arial, Helvetica, sans-serif;
15
+ width: 800px;
16
+ }
17
+
18
+ .header
19
+ {
20
+ clear: both;
21
+ background-color: #ccc;
22
+ padding: 8px;
23
+ }
24
+
25
+ h1
26
+ {
27
+ font-size: 150%;
28
+ font-weight: bold;
29
+ padding: 0;
30
+ margin: 1em 0 0 .3em;
31
+ }
32
+
33
+ hr
34
+ {
35
+ border: none 0;
36
+ border-top: 1px solid #7F8FB1;
37
+ height: 1px;
38
+ }
39
+
40
+ pre.code
41
+ {
42
+ display: block;
43
+ padding: 8px;
44
+ border: 1px dashed #ccc;
45
+ }
46
+
47
+ #index
48
+ {
49
+ margin-top: 24px;
50
+ float: left;
51
+ width: 160px;
52
+ position: absolute;
53
+ left: 8px;
54
+ background-color: #F3F3F3;
55
+ padding: 8px;
56
+ }
57
+
58
+ #content
59
+ {
60
+ margin-left: 190px;
61
+ width: 600px;
62
+ }
63
+
64
+ .classList
65
+ {
66
+ list-style-type: none;
67
+ padding: 0;
68
+ margin: 0 0 0 8px;
69
+ font-family: arial, sans-serif;
70
+ font-size: 1em;
71
+ overflow: auto;
72
+ }
73
+
74
+ .classList li
75
+ {
76
+ padding: 0;
77
+ margin: 0 0 8px 0;
78
+ }
79
+
80
+ .summaryTable { width: 100%; }
81
+
82
+ h1.classTitle
83
+ {
84
+ font-size:170%;
85
+ line-height:130%;
86
+ }
87
+
88
+ h2 { font-size: 110%; }
89
+ caption, div.sectionTitle
90
+ {
91
+ background-color: #7F8FB1;
92
+ color: #fff;
93
+ font-size:130%;
94
+ text-align: left;
95
+ padding: 2px 6px 2px 6px;
96
+ border: 1px #7F8FB1 solid;
97
+ }
98
+
99
+ div.sectionTitle { margin-bottom: 8px; }
100
+ .summaryTable thead { display: none; }
101
+
102
+ .summaryTable td
103
+ {
104
+ vertical-align: top;
105
+ padding: 4px;
106
+ border-bottom: 1px #7F8FB1 solid;
107
+ border-right: 1px #7F8FB1 solid;
108
+ }
109
+
110
+ /*col#summaryAttributes {}*/
111
+ .summaryTable td.attributes
112
+ {
113
+ border-left: 1px #7F8FB1 solid;
114
+ width: 140px;
115
+ text-align: right;
116
+ }
117
+
118
+ td.attributes, .fixedFont
119
+ {
120
+ line-height: 15px;
121
+ color: #002EBE;
122
+ font-family: "Courier New",Courier,monospace;
123
+ font-size: 13px;
124
+ }
125
+
126
+ .summaryTable td.nameDescription
127
+ {
128
+ text-align: left;
129
+ font-size: 13px;
130
+ line-height: 15px;
131
+ }
132
+
133
+ .summaryTable td.nameDescription, .description
134
+ {
135
+ line-height: 15px;
136
+ padding: 4px;
137
+ padding-left: 4px;
138
+ }
139
+
140
+ .summaryTable { margin-bottom: 8px; }
141
+
142
+ ul.inheritsList
143
+ {
144
+ list-style: square;
145
+ margin-left: 20px;
146
+ padding-left: 0;
147
+ }
148
+
149
+ .detailList {
150
+ margin-left: 20px;
151
+ line-height: 15px;
152
+ }
153
+ .detailList dt { margin-left: 20px; }
154
+
155
+ .detailList .heading
156
+ {
157
+ font-weight: bold;
158
+ padding-bottom: 6px;
159
+ margin-left: 0;
160
+ }
161
+
162
+ .light, td.attributes, .light a:link, .light a:visited
163
+ {
164
+ color: #777;
165
+ font-style: italic;
166
+ }
167
+
168
+ .fineprint
169
+ {
170
+ text-align: right;
171
+ font-size: 10px;
172
+ }
173
+ </style>
174
+ </head>
175
+
176
+ <body>
177
+ <div id="header">
178
+ </div>
179
+
180
+ <div id="index">
181
+ <div align="center"><a href="index.html">Class Index</a>
182
+ | <a href="files.html">File Index</a></div>
183
+ <hr />
184
+ <h2>Classes</h2>
185
+ <ul class="classList">
186
+
187
+ <li><i><a href="symbols/_global_.html">_global_</a></i></li>
188
+
189
+ <li><a href="symbols/jasmine.html">jasmine</a></li>
190
+
191
+ <li><a href="symbols/jasmine.Block.html">jasmine.Block</a></li>
192
+
193
+ <li><a href="symbols/jasmine.Env.html">jasmine.Env</a></li>
194
+
195
+ <li><a href="symbols/jasmine.EnvjsReporter.html">jasmine.EnvjsReporter</a></li>
196
+
197
+ <li><a href="symbols/jasmine.JsApiReporter.html">jasmine.JsApiReporter</a></li>
198
+
199
+ <li><a href="symbols/jasmine.Matchers.html">jasmine.Matchers</a></li>
200
+
201
+ <li><a href="symbols/jasmine.MultiReporter.html">jasmine.MultiReporter</a></li>
202
+
203
+ <li><a href="symbols/jasmine.NestedResults.html">jasmine.NestedResults</a></li>
204
+
205
+ <li><a href="symbols/jasmine.Reporter.html">jasmine.Reporter</a></li>
206
+
207
+ <li><a href="symbols/jasmine.Runner.html">jasmine.Runner</a></li>
208
+
209
+ <li><a href="symbols/jasmine.Spec.html">jasmine.Spec</a></li>
210
+
211
+ <li><a href="symbols/jasmine.Spy.html">jasmine.Spy</a></li>
212
+
213
+ <li><a href="symbols/jasmine.Suite.html">jasmine.Suite</a></li>
214
+
215
+ <li><a href="symbols/jasmine.util.html">jasmine.util</a></li>
216
+
217
+ </ul>
218
+ <hr />
219
+ </div>
220
+
221
+ <div id="content">
222
+ <h1 class="classTitle">Class Index</h1>
223
+
224
+
225
+ <div>
226
+ <h2><a href="symbols/_global_.html">_global_</a></h2>
227
+
228
+ </div>
229
+ <hr />
230
+
231
+ <div>
232
+ <h2><a href="symbols/jasmine.html">jasmine</a></h2>
233
+
234
+ </div>
235
+ <hr />
236
+
237
+ <div>
238
+ <h2><a href="symbols/jasmine.Block.html">jasmine.Block</a></h2>
239
+
240
+ </div>
241
+ <hr />
242
+
243
+ <div>
244
+ <h2><a href="symbols/jasmine.Env.html">jasmine.Env</a></h2>
245
+
246
+ </div>
247
+ <hr />
248
+
249
+ <div>
250
+ <h2><a href="symbols/jasmine.EnvjsReporter.html">jasmine.EnvjsReporter</a></h2>
251
+
252
+ </div>
253
+ <hr />
254
+
255
+ <div>
256
+ <h2><a href="symbols/jasmine.JsApiReporter.html">jasmine.JsApiReporter</a></h2>
257
+
258
+ </div>
259
+ <hr />
260
+
261
+ <div>
262
+ <h2><a href="symbols/jasmine.Matchers.html">jasmine.Matchers</a></h2>
263
+
264
+ </div>
265
+ <hr />
266
+
267
+ <div>
268
+ <h2><a href="symbols/jasmine.MultiReporter.html">jasmine.MultiReporter</a></h2>
269
+
270
+ </div>
271
+ <hr />
272
+
273
+ <div>
274
+ <h2><a href="symbols/jasmine.NestedResults.html">jasmine.NestedResults</a></h2>
275
+
276
+ </div>
277
+ <hr />
278
+
279
+ <div>
280
+ <h2><a href="symbols/jasmine.Reporter.html">jasmine.Reporter</a></h2>
281
+
282
+ </div>
283
+ <hr />
284
+
285
+ <div>
286
+ <h2><a href="symbols/jasmine.Runner.html">jasmine.Runner</a></h2>
287
+
288
+ </div>
289
+ <hr />
290
+
291
+ <div>
292
+ <h2><a href="symbols/jasmine.Spec.html">jasmine.Spec</a></h2>
293
+
294
+ </div>
295
+ <hr />
296
+
297
+ <div>
298
+ <h2><a href="symbols/jasmine.Spy.html">jasmine.Spy</a></h2>
299
+
300
+ </div>
301
+ <hr />
302
+
303
+ <div>
304
+ <h2><a href="symbols/jasmine.Suite.html">jasmine.Suite</a></h2>
305
+
306
+ </div>
307
+ <hr />
308
+
309
+ <div>
310
+ <h2><a href="symbols/jasmine.util.html">jasmine.util</a></h2>
311
+
312
+ </div>
313
+ <hr />
314
+
315
+
316
+ </div>
317
+ <div class="fineprint" style="clear:both">
318
+
319
+ Documentation generated by <a href="http://www.jsdoctoolkit.org/" target="_blankt">JsDoc Toolkit</a> 2.1.0 on Mon Nov 02 2009 16:15:59 GMT-0800 (PST)
320
+ </div>
321
+ </body>
322
+ </html>