alloy-js-test-san 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (91) hide show
  1. data/README.rdoc +83 -0
  2. data/Rakefile +27 -0
  3. data/VERSION.yml +4 -0
  4. data/bin/jstest +10 -0
  5. data/lib/js_test_san/runner.rb +70 -0
  6. data/lib/js_test_san/test.rb +17 -0
  7. data/lib/js_test_san/test_case.rb +103 -0
  8. data/lib/js_test_san.rb +2 -0
  9. data/test/fixtures/a_unit_test.html +27 -0
  10. data/test/fixtures/a_unit_test.js +22 -0
  11. data/test/regression/prototype/unit/ajax_test.html +29 -0
  12. data/test/regression/prototype/unit/array_test.html +28 -0
  13. data/test/regression/prototype/unit/assets/prototype.js +4900 -0
  14. data/test/regression/prototype/unit/assets/unittest.css +50 -0
  15. data/test/regression/prototype/unit/assets/unittest.js +615 -0
  16. data/test/regression/prototype/unit/assets/unittest_transport.js +1 -0
  17. data/test/regression/prototype/unit/base_test.html +27 -0
  18. data/test/regression/prototype/unit/class_test.html +27 -0
  19. data/test/regression/prototype/unit/date_test.html +27 -0
  20. data/test/regression/prototype/unit/dom_test.html +304 -0
  21. data/test/regression/prototype/unit/element_mixins_test.html +30 -0
  22. data/test/regression/prototype/unit/enumerable_test.html +35 -0
  23. data/test/regression/prototype/unit/event_test.html +31 -0
  24. data/test/regression/prototype/unit/fixtures/ajax.html +2 -0
  25. data/test/regression/prototype/unit/fixtures/ajax.js +42 -0
  26. data/test/regression/prototype/unit/fixtures/array.html +1 -0
  27. data/test/regression/prototype/unit/fixtures/class.js +83 -0
  28. data/test/regression/prototype/unit/fixtures/content.html +1 -0
  29. data/test/regression/prototype/unit/fixtures/data.json +1 -0
  30. data/test/regression/prototype/unit/fixtures/dom.css +84 -0
  31. data/test/regression/prototype/unit/fixtures/dom.html +278 -0
  32. data/test/regression/prototype/unit/fixtures/dom.js +17 -0
  33. data/test/regression/prototype/unit/fixtures/element_mixins.html +4 -0
  34. data/test/regression/prototype/unit/fixtures/element_mixins.js +2 -0
  35. data/test/regression/prototype/unit/fixtures/empty.html +0 -0
  36. data/test/regression/prototype/unit/fixtures/empty.js +1 -0
  37. data/test/regression/prototype/unit/fixtures/enumerable.html +8 -0
  38. data/test/regression/prototype/unit/fixtures/enumerable.js +23 -0
  39. data/test/regression/prototype/unit/fixtures/event.html +4 -0
  40. data/test/regression/prototype/unit/fixtures/form.html +108 -0
  41. data/test/regression/prototype/unit/fixtures/function.js +13 -0
  42. data/test/regression/prototype/unit/fixtures/hash.js +25 -0
  43. data/test/regression/prototype/unit/fixtures/hello.js +1 -0
  44. data/test/regression/prototype/unit/fixtures/logo.gif +0 -0
  45. data/test/regression/prototype/unit/fixtures/object.html +6 -0
  46. data/test/regression/prototype/unit/fixtures/object.js +7 -0
  47. data/test/regression/prototype/unit/fixtures/position.html +9 -0
  48. data/test/regression/prototype/unit/fixtures/selector.html +71 -0
  49. data/test/regression/prototype/unit/fixtures/string.js +8 -0
  50. data/test/regression/prototype/unit/fixtures/unittest.html +18 -0
  51. data/test/regression/prototype/unit/form_test.html +135 -0
  52. data/test/regression/prototype/unit/function_test.html +27 -0
  53. data/test/regression/prototype/unit/hash_test.html +27 -0
  54. data/test/regression/prototype/unit/number_test.html +27 -0
  55. data/test/regression/prototype/unit/object_test.html +32 -0
  56. data/test/regression/prototype/unit/periodical_executer_test.html +27 -0
  57. data/test/regression/prototype/unit/position_test.html +36 -0
  58. data/test/regression/prototype/unit/prototype_test.html +27 -0
  59. data/test/regression/prototype/unit/range_test.html +27 -0
  60. data/test/regression/prototype/unit/regexp_test.html +27 -0
  61. data/test/regression/prototype/unit/selector_test.html +98 -0
  62. data/test/regression/prototype/unit/string_test.html +27 -0
  63. data/test/regression/prototype/unit/tests/ajax_test.js +379 -0
  64. data/test/regression/prototype/unit/tests/array_test.js +186 -0
  65. data/test/regression/prototype/unit/tests/base_test.js +43 -0
  66. data/test/regression/prototype/unit/tests/class_test.js +136 -0
  67. data/test/regression/prototype/unit/tests/date_test.js +5 -0
  68. data/test/regression/prototype/unit/tests/dom_test.js +1493 -0
  69. data/test/regression/prototype/unit/tests/element_mixins_test.js +32 -0
  70. data/test/regression/prototype/unit/tests/enumerable_test.js +271 -0
  71. data/test/regression/prototype/unit/tests/event_test.js +235 -0
  72. data/test/regression/prototype/unit/tests/form_test.js +382 -0
  73. data/test/regression/prototype/unit/tests/function_test.js +133 -0
  74. data/test/regression/prototype/unit/tests/hash_test.js +178 -0
  75. data/test/regression/prototype/unit/tests/number_test.js +44 -0
  76. data/test/regression/prototype/unit/tests/object_test.js +180 -0
  77. data/test/regression/prototype/unit/tests/periodical_executer_test.js +15 -0
  78. data/test/regression/prototype/unit/tests/position_test.js +44 -0
  79. data/test/regression/prototype/unit/tests/prototype_test.js +43 -0
  80. data/test/regression/prototype/unit/tests/range_test.js +58 -0
  81. data/test/regression/prototype/unit/tests/regexp_test.js +42 -0
  82. data/test/regression/prototype/unit/tests/selector_test.js +408 -0
  83. data/test/regression/prototype/unit/tests/string_test.js +548 -0
  84. data/test/regression/prototype/unit/tests/unittest_test.js +148 -0
  85. data/test/regression/prototype/unit/unittest_test.html +45 -0
  86. data/test/regression/prototype/upstream +1 -0
  87. data/test/test_helper.rb +20 -0
  88. data/test/unit/runner_test.rb +165 -0
  89. data/test/unit/test_case_test.rb +167 -0
  90. data/test/unit/test_test.rb +24 -0
  91. metadata +145 -0
metadata ADDED
@@ -0,0 +1,145 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: alloy-js-test-san
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Eloy Duran
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+
12
+ date: 2009-04-12 00:00:00 -07:00
13
+ default_executable: jstest
14
+ dependencies: []
15
+
16
+ description: A JavaScript test runner which runs from the comfort of the terminal. OS X only.
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/js_test_san.rb
30
+ - lib/js_test_san/runner.rb
31
+ - lib/js_test_san/test.rb
32
+ - lib/js_test_san/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/test_helper.rb
112
+ - test/unit/runner_test.rb
113
+ - test/unit/test_case_test.rb
114
+ - test/unit/test_test.rb
115
+ has_rdoc: true
116
+ homepage: http://github.com/alloy/js-test-san/tree/master
117
+ post_install_message:
118
+ rdoc_options:
119
+ - --charset=UTF-8
120
+ require_paths:
121
+ - lib
122
+ required_ruby_version: !ruby/object:Gem::Requirement
123
+ requirements:
124
+ - - ">="
125
+ - !ruby/object:Gem::Version
126
+ version: "0"
127
+ version:
128
+ required_rubygems_version: !ruby/object:Gem::Requirement
129
+ requirements:
130
+ - - ">="
131
+ - !ruby/object:Gem::Version
132
+ version: "0"
133
+ version:
134
+ requirements: []
135
+
136
+ rubyforge_project:
137
+ rubygems_version: 1.2.0
138
+ signing_key:
139
+ specification_version: 2
140
+ summary: A JavaScript test runner which runs from the comfort of the terminal. OS X only.
141
+ test_files:
142
+ - test/test_helper.rb
143
+ - test/unit/runner_test.rb
144
+ - test/unit/test_case_test.rb
145
+ - test/unit/test_test.rb