Fingertips-headless-squirrel 0.2.0
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 +53 -0
- data/Rakefile +49 -0
- data/VERSION.yml +4 -0
- data/bin/jstest +10 -0
- data/lib/headless_squirrel/runner.rb +70 -0
- data/lib/headless_squirrel/test.rb +17 -0
- data/lib/headless_squirrel/test_case.rb +121 -0
- data/lib/headless_squirrel.rb +2 -0
- data/test/fixtures/a_unit_test.html +27 -0
- data/test/fixtures/a_unit_test.js +22 -0
- data/test/regression/prototype/unit/ajax_test.html +29 -0
- data/test/regression/prototype/unit/array_test.html +28 -0
- data/test/regression/prototype/unit/assets/prototype.js +4900 -0
- data/test/regression/prototype/unit/assets/unittest.css +50 -0
- data/test/regression/prototype/unit/assets/unittest.js +615 -0
- data/test/regression/prototype/unit/assets/unittest_transport.js +1 -0
- data/test/regression/prototype/unit/base_test.html +27 -0
- data/test/regression/prototype/unit/class_test.html +27 -0
- data/test/regression/prototype/unit/date_test.html +27 -0
- data/test/regression/prototype/unit/dom_test.html +304 -0
- data/test/regression/prototype/unit/element_mixins_test.html +30 -0
- data/test/regression/prototype/unit/enumerable_test.html +35 -0
- data/test/regression/prototype/unit/event_test.html +31 -0
- data/test/regression/prototype/unit/fixtures/ajax.html +2 -0
- data/test/regression/prototype/unit/fixtures/ajax.js +42 -0
- data/test/regression/prototype/unit/fixtures/array.html +1 -0
- data/test/regression/prototype/unit/fixtures/class.js +83 -0
- data/test/regression/prototype/unit/fixtures/content.html +1 -0
- data/test/regression/prototype/unit/fixtures/data.json +1 -0
- data/test/regression/prototype/unit/fixtures/dom.css +84 -0
- data/test/regression/prototype/unit/fixtures/dom.html +278 -0
- data/test/regression/prototype/unit/fixtures/dom.js +17 -0
- data/test/regression/prototype/unit/fixtures/element_mixins.html +4 -0
- data/test/regression/prototype/unit/fixtures/element_mixins.js +2 -0
- data/test/regression/prototype/unit/fixtures/empty.html +0 -0
- data/test/regression/prototype/unit/fixtures/empty.js +1 -0
- data/test/regression/prototype/unit/fixtures/enumerable.html +8 -0
- data/test/regression/prototype/unit/fixtures/enumerable.js +23 -0
- data/test/regression/prototype/unit/fixtures/event.html +4 -0
- data/test/regression/prototype/unit/fixtures/form.html +108 -0
- data/test/regression/prototype/unit/fixtures/function.js +13 -0
- data/test/regression/prototype/unit/fixtures/hash.js +25 -0
- data/test/regression/prototype/unit/fixtures/hello.js +1 -0
- data/test/regression/prototype/unit/fixtures/logo.gif +0 -0
- data/test/regression/prototype/unit/fixtures/object.html +6 -0
- data/test/regression/prototype/unit/fixtures/object.js +7 -0
- data/test/regression/prototype/unit/fixtures/position.html +9 -0
- data/test/regression/prototype/unit/fixtures/selector.html +71 -0
- data/test/regression/prototype/unit/fixtures/string.js +8 -0
- data/test/regression/prototype/unit/fixtures/unittest.html +18 -0
- data/test/regression/prototype/unit/form_test.html +135 -0
- data/test/regression/prototype/unit/function_test.html +27 -0
- data/test/regression/prototype/unit/hash_test.html +27 -0
- data/test/regression/prototype/unit/number_test.html +27 -0
- data/test/regression/prototype/unit/object_test.html +32 -0
- data/test/regression/prototype/unit/periodical_executer_test.html +27 -0
- data/test/regression/prototype/unit/position_test.html +36 -0
- data/test/regression/prototype/unit/prototype_test.html +27 -0
- data/test/regression/prototype/unit/range_test.html +27 -0
- data/test/regression/prototype/unit/regexp_test.html +27 -0
- data/test/regression/prototype/unit/selector_test.html +98 -0
- data/test/regression/prototype/unit/string_test.html +27 -0
- data/test/regression/prototype/unit/tests/ajax_test.js +379 -0
- data/test/regression/prototype/unit/tests/array_test.js +186 -0
- data/test/regression/prototype/unit/tests/base_test.js +43 -0
- data/test/regression/prototype/unit/tests/class_test.js +136 -0
- data/test/regression/prototype/unit/tests/date_test.js +5 -0
- data/test/regression/prototype/unit/tests/dom_test.js +1493 -0
- data/test/regression/prototype/unit/tests/element_mixins_test.js +32 -0
- data/test/regression/prototype/unit/tests/enumerable_test.js +271 -0
- data/test/regression/prototype/unit/tests/event_test.js +235 -0
- data/test/regression/prototype/unit/tests/form_test.js +382 -0
- data/test/regression/prototype/unit/tests/function_test.js +133 -0
- data/test/regression/prototype/unit/tests/hash_test.js +178 -0
- data/test/regression/prototype/unit/tests/number_test.js +44 -0
- data/test/regression/prototype/unit/tests/object_test.js +180 -0
- data/test/regression/prototype/unit/tests/periodical_executer_test.js +15 -0
- data/test/regression/prototype/unit/tests/position_test.js +44 -0
- data/test/regression/prototype/unit/tests/prototype_test.js +43 -0
- data/test/regression/prototype/unit/tests/range_test.js +58 -0
- data/test/regression/prototype/unit/tests/regexp_test.js +42 -0
- data/test/regression/prototype/unit/tests/selector_test.js +408 -0
- data/test/regression/prototype/unit/tests/string_test.js +548 -0
- data/test/regression/prototype/unit/tests/unittest_test.js +148 -0
- data/test/regression/prototype/unit/unittest_test.html +45 -0
- data/test/regression/prototype/upstream +1 -0
- data/test/regression/scriptaculous/src/builder.js +134 -0
- data/test/regression/scriptaculous/src/controls.js +963 -0
- data/test/regression/scriptaculous/src/dragdrop.js +973 -0
- data/test/regression/scriptaculous/src/effects.js +1122 -0
- data/test/regression/scriptaculous/src/javascripttest.rb +203 -0
- data/test/regression/scriptaculous/src/scriptaculous.js +66 -0
- data/test/regression/scriptaculous/src/slider.js +273 -0
- data/test/regression/scriptaculous/src/sound.js +57 -0
- data/test/regression/scriptaculous/src/unittest.js +566 -0
- data/test/regression/scriptaculous/unit/_ajax_inplaceeditor_ipce_alt_text.html +1 -0
- data/test/regression/scriptaculous/unit/_ajax_inplaceeditor_ipce_collection.js +1 -0
- data/test/regression/scriptaculous/unit/_ajax_inplaceeditor_result.html +1 -0
- data/test/regression/scriptaculous/unit/_ajax_inplaceeditor_result2.html +1 -0
- data/test/regression/scriptaculous/unit/_ajax_inplaceeditor_tagged.html +1 -0
- data/test/regression/scriptaculous/unit/_ajax_inplaceeditor_text.html +1 -0
- data/test/regression/scriptaculous/unit/_ajax_updater_result.html +20 -0
- data/test/regression/scriptaculous/unit/_autocomplete_result.html +11 -0
- data/test/regression/scriptaculous/unit/_autocomplete_result_nobr.html +1 -0
- data/test/regression/scriptaculous/unit/ajax_autocompleter_test.html +243 -0
- data/test/regression/scriptaculous/unit/ajax_inplaceeditor_test.html +895 -0
- data/test/regression/scriptaculous/unit/builder_test.html +262 -0
- data/test/regression/scriptaculous/unit/dragdrop_test.html +131 -0
- data/test/regression/scriptaculous/unit/effects_test.html +547 -0
- data/test/regression/scriptaculous/unit/element_test.html +116 -0
- data/test/regression/scriptaculous/unit/icon.png +0 -0
- data/test/regression/scriptaculous/unit/index.html +70 -0
- data/test/regression/scriptaculous/unit/loading_test.html +41 -0
- data/test/regression/scriptaculous/unit/position_clone_test.html +312 -0
- data/test/regression/scriptaculous/unit/slider_test.html +437 -0
- data/test/regression/scriptaculous/unit/sortable_test.html +205 -0
- data/test/regression/scriptaculous/unit/string_test.html +71 -0
- data/test/regression/scriptaculous/unit/unittest_test.html +154 -0
- data/test/regression/scriptaculous/upstream +1 -0
- data/test/test_helper.rb +20 -0
- data/test/unit/runner_test.rb +165 -0
- data/test/unit/test_case_test.rb +168 -0
- data/test/unit/test_test.rb +24 -0
- metadata +179 -0
metadata
ADDED
@@ -0,0 +1,179 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: Fingertips-headless-squirrel
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.2.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Eloy Duran
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
|
12
|
+
date: 2009-04-14 00:00:00 -07:00
|
13
|
+
default_executable: jstest
|
14
|
+
dependencies: []
|
15
|
+
|
16
|
+
description: A OS X command line tool to run JavaScript (Prototype) unit tests from the comfort of your terminal.
|
17
|
+
email: eloy.de.enige@gmail.com
|
18
|
+
executables:
|
19
|
+
- jstest
|
20
|
+
extensions: []
|
21
|
+
|
22
|
+
extra_rdoc_files:
|
23
|
+
- README.rdoc
|
24
|
+
files:
|
25
|
+
- README.rdoc
|
26
|
+
- Rakefile
|
27
|
+
- VERSION.yml
|
28
|
+
- bin/jstest
|
29
|
+
- lib/headless_squirrel.rb
|
30
|
+
- lib/headless_squirrel/runner.rb
|
31
|
+
- lib/headless_squirrel/test.rb
|
32
|
+
- lib/headless_squirrel/test_case.rb
|
33
|
+
- test/fixtures/a_unit_test.html
|
34
|
+
- test/fixtures/a_unit_test.js
|
35
|
+
- test/regression/prototype/unit/ajax_test.html
|
36
|
+
- test/regression/prototype/unit/array_test.html
|
37
|
+
- test/regression/prototype/unit/assets/prototype.js
|
38
|
+
- test/regression/prototype/unit/assets/unittest.css
|
39
|
+
- test/regression/prototype/unit/assets/unittest.js
|
40
|
+
- test/regression/prototype/unit/assets/unittest_transport.js
|
41
|
+
- test/regression/prototype/unit/base_test.html
|
42
|
+
- test/regression/prototype/unit/class_test.html
|
43
|
+
- test/regression/prototype/unit/date_test.html
|
44
|
+
- test/regression/prototype/unit/dom_test.html
|
45
|
+
- test/regression/prototype/unit/element_mixins_test.html
|
46
|
+
- test/regression/prototype/unit/enumerable_test.html
|
47
|
+
- test/regression/prototype/unit/event_test.html
|
48
|
+
- test/regression/prototype/unit/fixtures/ajax.html
|
49
|
+
- test/regression/prototype/unit/fixtures/ajax.js
|
50
|
+
- test/regression/prototype/unit/fixtures/array.html
|
51
|
+
- test/regression/prototype/unit/fixtures/class.js
|
52
|
+
- test/regression/prototype/unit/fixtures/content.html
|
53
|
+
- test/regression/prototype/unit/fixtures/data.json
|
54
|
+
- test/regression/prototype/unit/fixtures/dom.css
|
55
|
+
- test/regression/prototype/unit/fixtures/dom.html
|
56
|
+
- test/regression/prototype/unit/fixtures/dom.js
|
57
|
+
- test/regression/prototype/unit/fixtures/element_mixins.html
|
58
|
+
- test/regression/prototype/unit/fixtures/element_mixins.js
|
59
|
+
- test/regression/prototype/unit/fixtures/empty.html
|
60
|
+
- test/regression/prototype/unit/fixtures/empty.js
|
61
|
+
- test/regression/prototype/unit/fixtures/enumerable.html
|
62
|
+
- test/regression/prototype/unit/fixtures/enumerable.js
|
63
|
+
- test/regression/prototype/unit/fixtures/event.html
|
64
|
+
- test/regression/prototype/unit/fixtures/form.html
|
65
|
+
- test/regression/prototype/unit/fixtures/function.js
|
66
|
+
- test/regression/prototype/unit/fixtures/hash.js
|
67
|
+
- test/regression/prototype/unit/fixtures/hello.js
|
68
|
+
- test/regression/prototype/unit/fixtures/logo.gif
|
69
|
+
- test/regression/prototype/unit/fixtures/object.html
|
70
|
+
- test/regression/prototype/unit/fixtures/object.js
|
71
|
+
- test/regression/prototype/unit/fixtures/position.html
|
72
|
+
- test/regression/prototype/unit/fixtures/selector.html
|
73
|
+
- test/regression/prototype/unit/fixtures/string.js
|
74
|
+
- test/regression/prototype/unit/fixtures/unittest.html
|
75
|
+
- test/regression/prototype/unit/form_test.html
|
76
|
+
- test/regression/prototype/unit/function_test.html
|
77
|
+
- test/regression/prototype/unit/hash_test.html
|
78
|
+
- test/regression/prototype/unit/number_test.html
|
79
|
+
- test/regression/prototype/unit/object_test.html
|
80
|
+
- test/regression/prototype/unit/periodical_executer_test.html
|
81
|
+
- test/regression/prototype/unit/position_test.html
|
82
|
+
- test/regression/prototype/unit/prototype_test.html
|
83
|
+
- test/regression/prototype/unit/range_test.html
|
84
|
+
- test/regression/prototype/unit/regexp_test.html
|
85
|
+
- test/regression/prototype/unit/selector_test.html
|
86
|
+
- test/regression/prototype/unit/string_test.html
|
87
|
+
- test/regression/prototype/unit/tests/ajax_test.js
|
88
|
+
- test/regression/prototype/unit/tests/array_test.js
|
89
|
+
- test/regression/prototype/unit/tests/base_test.js
|
90
|
+
- test/regression/prototype/unit/tests/class_test.js
|
91
|
+
- test/regression/prototype/unit/tests/date_test.js
|
92
|
+
- test/regression/prototype/unit/tests/dom_test.js
|
93
|
+
- test/regression/prototype/unit/tests/element_mixins_test.js
|
94
|
+
- test/regression/prototype/unit/tests/enumerable_test.js
|
95
|
+
- test/regression/prototype/unit/tests/event_test.js
|
96
|
+
- test/regression/prototype/unit/tests/form_test.js
|
97
|
+
- test/regression/prototype/unit/tests/function_test.js
|
98
|
+
- test/regression/prototype/unit/tests/hash_test.js
|
99
|
+
- test/regression/prototype/unit/tests/number_test.js
|
100
|
+
- test/regression/prototype/unit/tests/object_test.js
|
101
|
+
- test/regression/prototype/unit/tests/periodical_executer_test.js
|
102
|
+
- test/regression/prototype/unit/tests/position_test.js
|
103
|
+
- test/regression/prototype/unit/tests/prototype_test.js
|
104
|
+
- test/regression/prototype/unit/tests/range_test.js
|
105
|
+
- test/regression/prototype/unit/tests/regexp_test.js
|
106
|
+
- test/regression/prototype/unit/tests/selector_test.js
|
107
|
+
- test/regression/prototype/unit/tests/string_test.js
|
108
|
+
- test/regression/prototype/unit/tests/unittest_test.js
|
109
|
+
- test/regression/prototype/unit/unittest_test.html
|
110
|
+
- test/regression/prototype/upstream
|
111
|
+
- test/regression/scriptaculous/src/builder.js
|
112
|
+
- test/regression/scriptaculous/src/controls.js
|
113
|
+
- test/regression/scriptaculous/src/dragdrop.js
|
114
|
+
- test/regression/scriptaculous/src/effects.js
|
115
|
+
- test/regression/scriptaculous/src/javascripttest.rb
|
116
|
+
- test/regression/scriptaculous/src/scriptaculous.js
|
117
|
+
- test/regression/scriptaculous/src/slider.js
|
118
|
+
- test/regression/scriptaculous/src/sound.js
|
119
|
+
- test/regression/scriptaculous/src/unittest.js
|
120
|
+
- test/regression/scriptaculous/unit/_ajax_inplaceeditor_ipce_alt_text.html
|
121
|
+
- test/regression/scriptaculous/unit/_ajax_inplaceeditor_ipce_collection.js
|
122
|
+
- test/regression/scriptaculous/unit/_ajax_inplaceeditor_result.html
|
123
|
+
- test/regression/scriptaculous/unit/_ajax_inplaceeditor_result2.html
|
124
|
+
- test/regression/scriptaculous/unit/_ajax_inplaceeditor_tagged.html
|
125
|
+
- test/regression/scriptaculous/unit/_ajax_inplaceeditor_text.html
|
126
|
+
- test/regression/scriptaculous/unit/_ajax_updater_result.html
|
127
|
+
- test/regression/scriptaculous/unit/_autocomplete_result.html
|
128
|
+
- test/regression/scriptaculous/unit/_autocomplete_result_nobr.html
|
129
|
+
- test/regression/scriptaculous/unit/ajax_autocompleter_test.html
|
130
|
+
- test/regression/scriptaculous/unit/ajax_inplaceeditor_test.html
|
131
|
+
- test/regression/scriptaculous/unit/builder_test.html
|
132
|
+
- test/regression/scriptaculous/unit/dragdrop_test.html
|
133
|
+
- test/regression/scriptaculous/unit/effects_test.html
|
134
|
+
- test/regression/scriptaculous/unit/element_test.html
|
135
|
+
- test/regression/scriptaculous/unit/icon.png
|
136
|
+
- test/regression/scriptaculous/unit/index.html
|
137
|
+
- test/regression/scriptaculous/unit/loading_test.html
|
138
|
+
- test/regression/scriptaculous/unit/position_clone_test.html
|
139
|
+
- test/regression/scriptaculous/unit/slider_test.html
|
140
|
+
- test/regression/scriptaculous/unit/sortable_test.html
|
141
|
+
- test/regression/scriptaculous/unit/string_test.html
|
142
|
+
- test/regression/scriptaculous/unit/unittest_test.html
|
143
|
+
- test/regression/scriptaculous/upstream
|
144
|
+
- test/test_helper.rb
|
145
|
+
- test/unit/runner_test.rb
|
146
|
+
- test/unit/test_case_test.rb
|
147
|
+
- test/unit/test_test.rb
|
148
|
+
has_rdoc: true
|
149
|
+
homepage: http://github.com/Fingertips/headless-squirrel/tree/master
|
150
|
+
post_install_message:
|
151
|
+
rdoc_options:
|
152
|
+
- --charset=UTF-8
|
153
|
+
require_paths:
|
154
|
+
- lib
|
155
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
156
|
+
requirements:
|
157
|
+
- - ">="
|
158
|
+
- !ruby/object:Gem::Version
|
159
|
+
version: "0"
|
160
|
+
version:
|
161
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
162
|
+
requirements:
|
163
|
+
- - ">="
|
164
|
+
- !ruby/object:Gem::Version
|
165
|
+
version: "0"
|
166
|
+
version:
|
167
|
+
requirements: []
|
168
|
+
|
169
|
+
rubyforge_project:
|
170
|
+
rubygems_version: 1.2.0
|
171
|
+
signing_key:
|
172
|
+
specification_version: 2
|
173
|
+
summary: A command-line JavaScript test runner for the Mac.
|
174
|
+
test_files:
|
175
|
+
- test/regression/scriptaculous/src/javascripttest.rb
|
176
|
+
- test/test_helper.rb
|
177
|
+
- test/unit/runner_test.rb
|
178
|
+
- test/unit/test_case_test.rb
|
179
|
+
- test/unit/test_test.rb
|