opal 0.11.0.rc1 → 0.11.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (493) hide show
  1. checksums.yaml +4 -4
  2. data/.jshintrc +1 -1
  3. data/.travis.yml +14 -2
  4. data/CHANGELOG.md +30 -5
  5. data/HACKING.md +2 -2
  6. data/README.md +4 -5
  7. data/appveyor.yml +3 -4
  8. data/bin +1 -0
  9. data/docs/headless_chrome.md +105 -0
  10. data/docs/rspec.md +2 -19
  11. data/{bin → exe}/opal +0 -0
  12. data/{bin → exe}/opal-build +0 -0
  13. data/{bin → exe}/opal-mspec +0 -0
  14. data/{bin → exe}/opal-repl +0 -0
  15. data/lib/opal.rb +1 -0
  16. data/lib/opal/ast/builder.rb +0 -4
  17. data/lib/opal/builder.rb +69 -15
  18. data/lib/opal/builder_processors.rb +8 -7
  19. data/lib/opal/cli.rb +1 -1
  20. data/lib/opal/cli_options.rb +1 -1
  21. data/lib/opal/cli_runners.rb +1 -1
  22. data/lib/opal/cli_runners/applescript.rb +0 -1
  23. data/lib/opal/cli_runners/chrome.js +135 -0
  24. data/lib/opal/cli_runners/chrome.rb +100 -0
  25. data/lib/opal/cli_runners/nashorn.rb +0 -1
  26. data/lib/opal/cli_runners/node_modules/.bin/chrome-remote-interface +1 -0
  27. data/lib/opal/cli_runners/node_modules/chrome-remote-interface/LICENSE +18 -0
  28. data/lib/opal/cli_runners/node_modules/chrome-remote-interface/README.md +843 -0
  29. data/lib/opal/cli_runners/node_modules/chrome-remote-interface/bin/client.js +326 -0
  30. data/lib/opal/cli_runners/node_modules/chrome-remote-interface/chrome-remote-interface.js +11 -0
  31. data/lib/opal/cli_runners/node_modules/chrome-remote-interface/index.js +39 -0
  32. data/lib/opal/cli_runners/node_modules/chrome-remote-interface/lib/api.js +84 -0
  33. data/lib/opal/cli_runners/node_modules/chrome-remote-interface/lib/chrome.js +289 -0
  34. data/lib/opal/cli_runners/node_modules/chrome-remote-interface/lib/defaults.js +4 -0
  35. data/lib/opal/cli_runners/node_modules/chrome-remote-interface/lib/devtools.js +245 -0
  36. data/lib/opal/cli_runners/node_modules/chrome-remote-interface/lib/external-request.js +23 -0
  37. data/lib/opal/cli_runners/node_modules/chrome-remote-interface/lib/protocol.json +13303 -0
  38. data/lib/opal/cli_runners/node_modules/chrome-remote-interface/lib/websocket-wrapper.js +32 -0
  39. data/lib/opal/cli_runners/node_modules/chrome-remote-interface/package.json +128 -0
  40. data/lib/opal/cli_runners/node_modules/chrome-remote-interface/webpack.config.js +55 -0
  41. data/lib/opal/cli_runners/node_modules/commander/Readme.md +195 -0
  42. data/lib/opal/cli_runners/node_modules/commander/index.js +851 -0
  43. data/lib/opal/cli_runners/node_modules/commander/package.json +92 -0
  44. data/lib/opal/cli_runners/node_modules/ultron/LICENSE +22 -0
  45. data/lib/opal/cli_runners/node_modules/ultron/index.js +138 -0
  46. data/lib/opal/cli_runners/node_modules/ultron/package.json +112 -0
  47. data/lib/opal/cli_runners/node_modules/ws/LICENSE +21 -0
  48. data/lib/opal/cli_runners/node_modules/ws/README.md +259 -0
  49. data/lib/opal/cli_runners/node_modules/ws/SECURITY.md +33 -0
  50. data/lib/opal/cli_runners/node_modules/ws/index.js +15 -0
  51. data/lib/opal/cli_runners/node_modules/ws/lib/BufferUtil.fallback.js +56 -0
  52. data/lib/opal/cli_runners/node_modules/ws/lib/BufferUtil.js +15 -0
  53. data/lib/opal/cli_runners/node_modules/ws/lib/ErrorCodes.js +28 -0
  54. data/lib/opal/cli_runners/node_modules/ws/lib/EventTarget.js +158 -0
  55. data/lib/opal/cli_runners/node_modules/ws/lib/Extensions.js +69 -0
  56. data/lib/opal/cli_runners/node_modules/ws/lib/PerMessageDeflate.js +339 -0
  57. data/lib/opal/cli_runners/node_modules/ws/lib/Receiver.js +520 -0
  58. data/lib/opal/cli_runners/node_modules/ws/lib/Sender.js +438 -0
  59. data/lib/opal/cli_runners/node_modules/ws/lib/Validation.fallback.js +9 -0
  60. data/lib/opal/cli_runners/node_modules/ws/lib/Validation.js +17 -0
  61. data/lib/opal/cli_runners/node_modules/ws/lib/WebSocket.js +705 -0
  62. data/lib/opal/cli_runners/node_modules/ws/lib/WebSocketServer.js +336 -0
  63. data/lib/opal/cli_runners/node_modules/ws/package.json +122 -0
  64. data/lib/opal/cli_runners/nodejs.rb +0 -1
  65. data/lib/opal/cli_runners/package.json +5 -0
  66. data/lib/opal/cli_runners/server.rb +0 -1
  67. data/lib/opal/compiler.rb +8 -18
  68. data/lib/opal/deprecations.rb +1 -1
  69. data/lib/opal/eof_content.rb +36 -0
  70. data/lib/opal/nodes.rb +0 -1
  71. data/lib/opal/nodes/args/kwarg.rb +8 -6
  72. data/lib/opal/nodes/args/kwoptarg.rb +12 -6
  73. data/lib/opal/nodes/call.rb +3 -2
  74. data/lib/opal/nodes/call_special.rb +10 -1
  75. data/lib/opal/nodes/definitions.rb +5 -3
  76. data/lib/opal/nodes/helpers.rb +4 -8
  77. data/lib/opal/nodes/literal.rb +13 -1
  78. data/lib/opal/nodes/logic.rb +19 -32
  79. data/lib/opal/nodes/node_with_args.rb +1 -1
  80. data/lib/opal/nodes/scope.rb +1 -0
  81. data/lib/opal/nodes/super.rb +0 -4
  82. data/lib/opal/nodes/variables.rb +11 -0
  83. data/lib/opal/parser.rb +24 -19
  84. data/lib/opal/path_reader.rb +17 -4
  85. data/lib/opal/rewriter.rb +5 -1
  86. data/lib/opal/rewriters/base.rb +37 -34
  87. data/lib/opal/rewriters/binary_operator_assignment.rb +0 -3
  88. data/lib/opal/rewriters/for_rewriter.rb +93 -0
  89. data/lib/opal/rewriters/hashes/key_duplicates_rewriter.rb +58 -0
  90. data/lib/opal/rewriters/js_reserved_words.rb +5 -8
  91. data/lib/opal/rewriters/logical_operator_assignment.rb +0 -1
  92. data/lib/opal/simple_server.rb +1 -0
  93. data/lib/opal/util.rb +1 -1
  94. data/lib/opal/version.rb +1 -1
  95. data/opal.gemspec +32 -30
  96. data/opal/corelib/array.rb +53 -30
  97. data/opal/corelib/boolean.rb +11 -3
  98. data/opal/corelib/comparable.rb +16 -0
  99. data/opal/corelib/constants.rb +3 -3
  100. data/opal/corelib/enumerable.rb +48 -1
  101. data/opal/corelib/file.rb +54 -11
  102. data/opal/corelib/hash.rb +98 -0
  103. data/opal/corelib/io.rb +2 -2
  104. data/opal/corelib/kernel.rb +28 -11
  105. data/opal/corelib/marshal/read_buffer.rb +288 -150
  106. data/opal/corelib/marshal/write_buffer.rb +27 -2
  107. data/opal/corelib/nil.rb +11 -3
  108. data/opal/corelib/number.rb +90 -20
  109. data/opal/corelib/numeric.rb +3 -3
  110. data/opal/corelib/random.rb +1 -1
  111. data/opal/corelib/range.rb +22 -22
  112. data/opal/corelib/regexp.rb +45 -4
  113. data/opal/corelib/runtime.js +25 -9
  114. data/opal/corelib/string.rb +1 -1
  115. data/opal/corelib/string/encoding.rb +21 -29
  116. data/opal/corelib/string/inheritance.rb +1 -1
  117. data/opal/corelib/struct.rb +0 -5
  118. data/opal/corelib/time.rb +1 -1
  119. data/stdlib/buffer/array.rb +4 -2
  120. data/stdlib/date.rb +46 -12
  121. data/stdlib/headless_chrome.rb +11 -0
  122. data/stdlib/nodejs/file.rb +36 -11
  123. data/stdlib/nodejs/io.rb +8 -0
  124. data/stdlib/nodejs/stacktrace.rb +116 -100
  125. data/stdlib/opal-builder.rb +1 -0
  126. data/stdlib/opal-platform.rb +6 -6
  127. data/stdlib/opal/platform.rb +2 -2
  128. data/stdlib/rbconfig.rb +1 -1
  129. data/stdlib/securerandom.rb +1 -1
  130. data/tasks/testing.rake +58 -26
  131. data/tasks/testing/opal_rspec_smoketest.Gemfile +5 -12
  132. metadata +64 -733
  133. data/lib/opal/cli_runners/phantom.js +0 -69
  134. data/lib/opal/cli_runners/phantomjs.rb +0 -29
  135. data/lib/opal/hike_path_finder.rb +0 -19
  136. data/lib/opal/nodes/for.rb +0 -75
  137. data/spec/README.md +0 -10
  138. data/spec/filters/bugs/array.rb +0 -16
  139. data/spec/filters/bugs/basicobject.rb +0 -13
  140. data/spec/filters/bugs/bigdecimal.rb +0 -146
  141. data/spec/filters/bugs/class.rb +0 -11
  142. data/spec/filters/bugs/comparable.rb +0 -5
  143. data/spec/filters/bugs/complex.rb +0 -3
  144. data/spec/filters/bugs/date.rb +0 -94
  145. data/spec/filters/bugs/enumerable.rb +0 -43
  146. data/spec/filters/bugs/enumerator.rb +0 -40
  147. data/spec/filters/bugs/exception.rb +0 -72
  148. data/spec/filters/bugs/file.rb +0 -8
  149. data/spec/filters/bugs/float.rb +0 -39
  150. data/spec/filters/bugs/hash.rb +0 -15
  151. data/spec/filters/bugs/inheritance.rb +0 -5
  152. data/spec/filters/bugs/integer.rb +0 -30
  153. data/spec/filters/bugs/io.rb +0 -8
  154. data/spec/filters/bugs/kernel.rb +0 -168
  155. data/spec/filters/bugs/language.rb +0 -190
  156. data/spec/filters/bugs/marshal.rb +0 -41
  157. data/spec/filters/bugs/method.rb +0 -60
  158. data/spec/filters/bugs/module.rb +0 -158
  159. data/spec/filters/bugs/numeric.rb +0 -8
  160. data/spec/filters/bugs/pathname.rb +0 -7
  161. data/spec/filters/bugs/proc.rb +0 -37
  162. data/spec/filters/bugs/random.rb +0 -7
  163. data/spec/filters/bugs/range.rb +0 -36
  164. data/spec/filters/bugs/rational.rb +0 -4
  165. data/spec/filters/bugs/regexp.rb +0 -158
  166. data/spec/filters/bugs/set.rb +0 -41
  167. data/spec/filters/bugs/singleton.rb +0 -6
  168. data/spec/filters/bugs/string.rb +0 -98
  169. data/spec/filters/bugs/stringscanner.rb +0 -71
  170. data/spec/filters/bugs/struct.rb +0 -4
  171. data/spec/filters/bugs/time.rb +0 -35
  172. data/spec/filters/bugs/unboundmethod.rb +0 -17
  173. data/spec/filters/unsupported/array.rb +0 -167
  174. data/spec/filters/unsupported/basicobject.rb +0 -14
  175. data/spec/filters/unsupported/bignum.rb +0 -55
  176. data/spec/filters/unsupported/class.rb +0 -4
  177. data/spec/filters/unsupported/delegator.rb +0 -5
  178. data/spec/filters/unsupported/enumerable.rb +0 -11
  179. data/spec/filters/unsupported/enumerator.rb +0 -13
  180. data/spec/filters/unsupported/file.rb +0 -4
  181. data/spec/filters/unsupported/fixnum.rb +0 -14
  182. data/spec/filters/unsupported/float.rb +0 -46
  183. data/spec/filters/unsupported/freeze.rb +0 -75
  184. data/spec/filters/unsupported/hash.rb +0 -43
  185. data/spec/filters/unsupported/integer.rb +0 -3
  186. data/spec/filters/unsupported/kernel.rb +0 -32
  187. data/spec/filters/unsupported/language.rb +0 -22
  188. data/spec/filters/unsupported/marshal.rb +0 -46
  189. data/spec/filters/unsupported/matchdata.rb +0 -33
  190. data/spec/filters/unsupported/math.rb +0 -3
  191. data/spec/filters/unsupported/pathname.rb +0 -3
  192. data/spec/filters/unsupported/privacy.rb +0 -279
  193. data/spec/filters/unsupported/proc.rb +0 -3
  194. data/spec/filters/unsupported/random.rb +0 -4
  195. data/spec/filters/unsupported/range.rb +0 -7
  196. data/spec/filters/unsupported/regexp.rb +0 -69
  197. data/spec/filters/unsupported/set.rb +0 -4
  198. data/spec/filters/unsupported/singleton.rb +0 -6
  199. data/spec/filters/unsupported/string.rb +0 -546
  200. data/spec/filters/unsupported/struct.rb +0 -6
  201. data/spec/filters/unsupported/symbol.rb +0 -20
  202. data/spec/filters/unsupported/taint.rb +0 -30
  203. data/spec/filters/unsupported/thread.rb +0 -7
  204. data/spec/filters/unsupported/time.rb +0 -202
  205. data/spec/lib/builder_processors_spec.rb +0 -27
  206. data/spec/lib/builder_spec.rb +0 -89
  207. data/spec/lib/cli_runners/phantomjs_spec.rb +0 -39
  208. data/spec/lib/cli_spec.rb +0 -240
  209. data/spec/lib/compiler/call_spec.rb +0 -732
  210. data/spec/lib/compiler_spec.rb +0 -294
  211. data/spec/lib/config_spec.rb +0 -110
  212. data/spec/lib/dependency_resolver_spec.rb +0 -40
  213. data/spec/lib/deprecations_spec.rb +0 -16
  214. data/spec/lib/fixtures/complex_sprockets.js.rb.erb +0 -4
  215. data/spec/lib/fixtures/file_with_directives.js +0 -2
  216. data/spec/lib/fixtures/jst_file.js.jst +0 -1
  217. data/spec/lib/fixtures/no_requires.rb +0 -1
  218. data/spec/lib/fixtures/opal_file.rb +0 -2
  219. data/spec/lib/fixtures/require_tree_test.rb +0 -3
  220. data/spec/lib/fixtures/required_file.js +0 -1
  221. data/spec/lib/fixtures/required_tree_test/required_file1.rb +0 -1
  222. data/spec/lib/fixtures/required_tree_test/required_file2.rb +0 -1
  223. data/spec/lib/fixtures/requires.rb +0 -7
  224. data/spec/lib/fixtures/source_location_test.rb +0 -7
  225. data/spec/lib/fixtures/source_map.rb +0 -1
  226. data/spec/lib/fixtures/source_map/subfolder/other_file.rb +0 -1
  227. data/spec/lib/fixtures/sprockets_file.js.rb +0 -3
  228. data/spec/lib/fixtures/sprockets_require_tree_test.rb +0 -3
  229. data/spec/lib/hike_path_finder_spec.rb +0 -23
  230. data/spec/lib/path_reader_spec.rb +0 -36
  231. data/spec/lib/paths_spec.rb +0 -18
  232. data/spec/lib/rewriters/binary_operator_assignment_spec.rb +0 -151
  233. data/spec/lib/rewriters/block_to_iter_spec.rb +0 -28
  234. data/spec/lib/rewriters/dot_js_syntax_spec.rb +0 -108
  235. data/spec/lib/rewriters/explicit_writer_return_spec.rb +0 -186
  236. data/spec/lib/rewriters/js_reserved_words_spec.rb +0 -116
  237. data/spec/lib/rewriters/logical_operator_assignment_spec.rb +0 -202
  238. data/spec/lib/rewriters/opal_engine_check_spec.rb +0 -82
  239. data/spec/lib/rewriters/rubyspec/filters_rewriter_spec.rb +0 -53
  240. data/spec/lib/shared/path_finder_shared.rb +0 -19
  241. data/spec/lib/shared/path_reader_shared.rb +0 -31
  242. data/spec/lib/simple_server_spec.rb +0 -54
  243. data/spec/lib/spec_helper.rb +0 -100
  244. data/spec/mspec-opal/formatters.rb +0 -236
  245. data/spec/mspec-opal/runner.rb +0 -173
  246. data/spec/opal/compiler/irb_spec.rb +0 -44
  247. data/spec/opal/core/arity_spec.rb +0 -142
  248. data/spec/opal/core/array/intersection_spec.rb +0 -38
  249. data/spec/opal/core/array/minus_spec.rb +0 -38
  250. data/spec/opal/core/array/select_spec.rb +0 -14
  251. data/spec/opal/core/array/set_range_to_array_spec.rb +0 -7
  252. data/spec/opal/core/array/union_spec.rb +0 -38
  253. data/spec/opal/core/array/uniq_spec.rb +0 -49
  254. data/spec/opal/core/date_spec.rb +0 -191
  255. data/spec/opal/core/enumerable/all_break_spec.rb +0 -5
  256. data/spec/opal/core/enumerable/any_break_spec.rb +0 -5
  257. data/spec/opal/core/enumerable/collect_break_spec.rb +0 -13
  258. data/spec/opal/core/enumerable/count_break_spec.rb +0 -5
  259. data/spec/opal/core/enumerable/detect_break_spec.rb +0 -5
  260. data/spec/opal/core/enumerable/drop_while_break_spec.rb +0 -5
  261. data/spec/opal/core/enumerable/each_slice_break.rb +0 -6
  262. data/spec/opal/core/enumerable/each_with_index_break_spec.rb +0 -5
  263. data/spec/opal/core/enumerable/each_with_object_break_spec.rb +0 -5
  264. data/spec/opal/core/enumerable/find_all_break_spec.rb +0 -5
  265. data/spec/opal/core/enumerable/find_index_break_spec.rb +0 -5
  266. data/spec/opal/core/enumerable/grep_break_spec.rb +0 -5
  267. data/spec/opal/core/enumerable/max_break_spec.rb +0 -5
  268. data/spec/opal/core/enumerable/max_by_break_spec.rb +0 -5
  269. data/spec/opal/core/enumerable/min_break_spec.rb +0 -5
  270. data/spec/opal/core/enumerable/min_by_break_spec.rb +0 -5
  271. data/spec/opal/core/enumerable/none_break_spec.rb +0 -5
  272. data/spec/opal/core/enumerable/one_break_spec.rb +0 -5
  273. data/spec/opal/core/enumerable/reduce_break_spec.rb +0 -5
  274. data/spec/opal/core/enumerable/take_while_break_spec.rb +0 -5
  275. data/spec/opal/core/enumerator/with_index_spec.rb +0 -6
  276. data/spec/opal/core/exception_spec.rb +0 -30
  277. data/spec/opal/core/fixtures/class.rb +0 -124
  278. data/spec/opal/core/fixtures/class_variables.rb +0 -0
  279. data/spec/opal/core/fixtures/constants.rb +0 -33
  280. data/spec/opal/core/fixtures/require_tree_files/file 1.rb +0 -1
  281. data/spec/opal/core/fixtures/require_tree_files/file 2.rb +0 -1
  282. data/spec/opal/core/fixtures/require_tree_files/file 3.rb +0 -1
  283. data/spec/opal/core/fixtures/require_tree_files/file 4.rb +0 -1
  284. data/spec/opal/core/fixtures/require_tree_files/file 5.rb +0 -1
  285. data/spec/opal/core/fixtures/require_tree_files/nested/nested 1.rb +0 -1
  286. data/spec/opal/core/fixtures/require_tree_files/nested/nested 2.rb +0 -1
  287. data/spec/opal/core/fixtures/require_tree_files/other/other 1.rb +0 -1
  288. data/spec/opal/core/fixtures/require_tree_with_dot/file 1.rb +0 -1
  289. data/spec/opal/core/fixtures/require_tree_with_dot/file 2.rb +0 -1
  290. data/spec/opal/core/fixtures/require_tree_with_dot/file 3.rb +0 -1
  291. data/spec/opal/core/fixtures/require_tree_with_dot/index.rb +0 -3
  292. data/spec/opal/core/hash/has_value_spec.rb +0 -13
  293. data/spec/opal/core/hash/internals_spec.rb +0 -332
  294. data/spec/opal/core/helpers_spec.rb +0 -14
  295. data/spec/opal/core/kernel/Array_spec.rb +0 -10
  296. data/spec/opal/core/kernel/at_exit_spec.rb +0 -70
  297. data/spec/opal/core/kernel/block_given_spec.rb +0 -30
  298. data/spec/opal/core/kernel/class_spec.rb +0 -6
  299. data/spec/opal/core/kernel/define_singleton_method_spec.rb +0 -21
  300. data/spec/opal/core/kernel/equal_value_spec.rb +0 -12
  301. data/spec/opal/core/kernel/extend_spec.rb +0 -21
  302. data/spec/opal/core/kernel/format_spec.rb +0 -122
  303. data/spec/opal/core/kernel/freeze_spec.rb +0 -15
  304. data/spec/opal/core/kernel/instance_eval_spec.rb +0 -28
  305. data/spec/opal/core/kernel/instance_variable_defined_spec.rb +0 -15
  306. data/spec/opal/core/kernel/instance_variable_get_spec.rb +0 -14
  307. data/spec/opal/core/kernel/instance_variable_set_spec.rb +0 -10
  308. data/spec/opal/core/kernel/instance_variables_spec.rb +0 -110
  309. data/spec/opal/core/kernel/loop_spec.rb +0 -23
  310. data/spec/opal/core/kernel/match_spec.rb +0 -5
  311. data/spec/opal/core/kernel/method_spec.rb +0 -31
  312. data/spec/opal/core/kernel/methods_spec.rb +0 -25
  313. data/spec/opal/core/kernel/nil_spec.rb +0 -7
  314. data/spec/opal/core/kernel/p_spec.rb +0 -15
  315. data/spec/opal/core/kernel/printf_spec.rb +0 -11
  316. data/spec/opal/core/kernel/proc_spec.rb +0 -13
  317. data/spec/opal/core/kernel/raise_spec.rb +0 -13
  318. data/spec/opal/core/kernel/rand_spec.rb +0 -19
  319. data/spec/opal/core/kernel/require_tree_spec.rb +0 -18
  320. data/spec/opal/core/kernel/respond_to_spec.rb +0 -44
  321. data/spec/opal/core/kernel/send_spec.rb +0 -56
  322. data/spec/opal/core/kernel/sprintf_spec.rb +0 -5
  323. data/spec/opal/core/language/arguments/mlhs_arg_spec.rb +0 -19
  324. data/spec/opal/core/language/class_spec.rb +0 -55
  325. data/spec/opal/core/language/constant_lookup_spec.rb +0 -38
  326. data/spec/opal/core/language/equal_spec.rb +0 -8
  327. data/spec/opal/core/language/fixtures/array.rb +0 -11
  328. data/spec/opal/core/language/fixtures/block.rb +0 -57
  329. data/spec/opal/core/language/fixtures/break.rb +0 -240
  330. data/spec/opal/core/language/fixtures/ensure.rb +0 -72
  331. data/spec/opal/core/language/fixtures/literal_lambda.rb +0 -7
  332. data/spec/opal/core/language/fixtures/metaclass.rb +0 -33
  333. data/spec/opal/core/language/fixtures/module.rb +0 -24
  334. data/spec/opal/core/language/fixtures/next.rb +0 -128
  335. data/spec/opal/core/language/fixtures/return.rb +0 -118
  336. data/spec/opal/core/language/fixtures/send.rb +0 -111
  337. data/spec/opal/core/language/fixtures/send_1.9.rb +0 -22
  338. data/spec/opal/core/language/fixtures/super.rb +0 -308
  339. data/spec/opal/core/language/fixtures/variables.rb +0 -58
  340. data/spec/opal/core/language/fixtures/yield.rb +0 -28
  341. data/spec/opal/core/language/heredoc_spec.rb +0 -42
  342. data/spec/opal/core/language/keyword_arguments_spec.rb +0 -11
  343. data/spec/opal/core/language/predefined_spec.rb +0 -138
  344. data/spec/opal/core/language/regexp_spec.rb +0 -20
  345. data/spec/opal/core/language/rescue_spec.rb +0 -18
  346. data/spec/opal/core/language/safe_navigator_spec.rb +0 -7
  347. data/spec/opal/core/language/send_spec.rb +0 -222
  348. data/spec/opal/core/language/string_spec.rb +0 -44
  349. data/spec/opal/core/language/ternary_operator_spec.rb +0 -20
  350. data/spec/opal/core/language/versions/array_1.9.rb +0 -39
  351. data/spec/opal/core/language/versions/block_1.9.rb +0 -0
  352. data/spec/opal/core/language/versions/break_1.9.rb +0 -0
  353. data/spec/opal/core/language/versions/case_1.9.rb +0 -20
  354. data/spec/opal/core/language/versions/def_2_0_spec.rb +0 -58
  355. data/spec/opal/core/language/versions/hash_1_9_spec.rb +0 -23
  356. data/spec/opal/core/language/versions/literal_lambda_1.9.rb +0 -143
  357. data/spec/opal/core/language/versions/not_1.9.rb +0 -22
  358. data/spec/opal/core/language/versions/send_1.9.rb +0 -241
  359. data/spec/opal/core/language/versions/symbol_1.9.rb +0 -15
  360. data/spec/opal/core/language/versions/variables_1.9.rb +0 -8
  361. data/spec/opal/core/language_spec.rb +0 -77
  362. data/spec/opal/core/marshal/dump_spec.rb +0 -53
  363. data/spec/opal/core/marshal/load_spec.rb +0 -7
  364. data/spec/opal/core/method/to_proc_spec.rb +0 -28
  365. data/spec/opal/core/module/alias_method_spec.rb +0 -28
  366. data/spec/opal/core/module/ancestors_spec.rb +0 -11
  367. data/spec/opal/core/module/append_features_spec.rb +0 -14
  368. data/spec/opal/core/module/attr_accessor_spec.rb +0 -26
  369. data/spec/opal/core/module/const_defined_spec.rb +0 -84
  370. data/spec/opal/core/module/const_get_spec.rb +0 -85
  371. data/spec/opal/core/module/const_missing_spec.rb +0 -17
  372. data/spec/opal/core/module/const_set_spec.rb +0 -64
  373. data/spec/opal/core/module/constants_spec.rb +0 -49
  374. data/spec/opal/core/module/fixtures/classes.rb +0 -444
  375. data/spec/opal/core/module/method_defined_spec.rb +0 -48
  376. data/spec/opal/core/module/method_lookup_spec.rb +0 -13
  377. data/spec/opal/core/module/module_function_spec.rb +0 -25
  378. data/spec/opal/core/module/name_spec.rb +0 -41
  379. data/spec/opal/core/module/public_method_defined_spec.rb +0 -18
  380. data/spec/opal/core/module/remove_const_spec.rb +0 -22
  381. data/spec/opal/core/module/undef_method_spec.rb +0 -66
  382. data/spec/opal/core/numeric/bit_and_spec.rb +0 -7
  383. data/spec/opal/core/numeric/bit_or_spec.rb +0 -8
  384. data/spec/opal/core/numeric/bit_xor_spec.rb +0 -6
  385. data/spec/opal/core/numeric/ceil_spec.rb +0 -8
  386. data/spec/opal/core/numeric/chr_spec.rb +0 -8
  387. data/spec/opal/core/numeric/comparison_spec.rb +0 -24
  388. data/spec/opal/core/numeric/complement_spec.rb +0 -8
  389. data/spec/opal/core/numeric/divide_spec.rb +0 -10
  390. data/spec/opal/core/numeric/eql_spec.rb +0 -9
  391. data/spec/opal/core/numeric/exponent_spec.rb +0 -33
  392. data/spec/opal/core/numeric/floor_spec.rb +0 -8
  393. data/spec/opal/core/numeric/gt_spec.rb +0 -11
  394. data/spec/opal/core/numeric/gte_spec.rb +0 -12
  395. data/spec/opal/core/numeric/integer_spec.rb +0 -9
  396. data/spec/opal/core/numeric/left_shift_spec.rb +0 -21
  397. data/spec/opal/core/numeric/lt_spec.rb +0 -11
  398. data/spec/opal/core/numeric/lte_spec.rb +0 -12
  399. data/spec/opal/core/numeric/minus_spec.rb +0 -8
  400. data/spec/opal/core/numeric/modulo_spec.rb +0 -19
  401. data/spec/opal/core/numeric/multiply_spec.rb +0 -9
  402. data/spec/opal/core/numeric/next_spec.rb +0 -9
  403. data/spec/opal/core/numeric/ord_spec.rb +0 -9
  404. data/spec/opal/core/numeric/plus_spec.rb +0 -8
  405. data/spec/opal/core/numeric/pred_spec.rb +0 -7
  406. data/spec/opal/core/numeric/right_shift_spec.rb +0 -25
  407. data/spec/opal/core/numeric/step_spec.rb +0 -11
  408. data/spec/opal/core/numeric/succ_spec.rb +0 -9
  409. data/spec/opal/core/numeric/times_spec.rb +0 -36
  410. data/spec/opal/core/numeric/to_f_spec.rb +0 -7
  411. data/spec/opal/core/numeric/to_i_spec.rb +0 -7
  412. data/spec/opal/core/numeric/to_json_spec.rb +0 -8
  413. data/spec/opal/core/numeric/to_s_spec.rb +0 -26
  414. data/spec/opal/core/numeric/uminus_spec.rb +0 -9
  415. data/spec/opal/core/numeric/upto_spec.rb +0 -19
  416. data/spec/opal/core/numeric/zero_spec.rb +0 -7
  417. data/spec/opal/core/object_id_spec.rb +0 -56
  418. data/spec/opal/core/proc/call_spec.rb +0 -21
  419. data/spec/opal/core/proc/element_reference_spec.rb +0 -21
  420. data/spec/opal/core/proc/proc_tricks_spec.rb +0 -7
  421. data/spec/opal/core/runtime/begin_spec.rb +0 -39
  422. data/spec/opal/core/runtime/block_spec.rb +0 -23
  423. data/spec/opal/core/runtime/bridged_classes_spec.rb +0 -123
  424. data/spec/opal/core/runtime/constants_spec.rb +0 -13
  425. data/spec/opal/core/runtime/donate_spec.rb +0 -53
  426. data/spec/opal/core/runtime/eval_spec.rb +0 -5
  427. data/spec/opal/core/runtime/is_a_spec.rb +0 -36
  428. data/spec/opal/core/runtime/main_methods_spec.rb +0 -27
  429. data/spec/opal/core/runtime/method_missing_spec.rb +0 -68
  430. data/spec/opal/core/runtime/method_spec.rb +0 -31
  431. data/spec/opal/core/runtime/operator_call_spec.rb +0 -13
  432. data/spec/opal/core/runtime/paren_spec.rb +0 -14
  433. data/spec/opal/core/runtime/rescue_spec.rb +0 -106
  434. data/spec/opal/core/runtime/return_spec.rb +0 -38
  435. data/spec/opal/core/runtime/singleton_class_spec.rb +0 -13
  436. data/spec/opal/core/runtime/super_spec.rb +0 -223
  437. data/spec/opal/core/runtime/truthy_spec.rb +0 -63
  438. data/spec/opal/core/runtime/variables_spec.rb +0 -20
  439. data/spec/opal/core/runtime_spec.rb +0 -58
  440. data/spec/opal/core/source_map_spec.rb +0 -49
  441. data/spec/opal/core/string_spec.rb +0 -32
  442. data/spec/opal/core/time_spec.rb +0 -38
  443. data/spec/opal/javascript_api_spec.rb +0 -16
  444. data/spec/opal/stdlib/erb/erb_spec.rb +0 -30
  445. data/spec/opal/stdlib/erb/inline_block.opalerb +0 -3
  446. data/spec/opal/stdlib/erb/quoted.opalerb +0 -1
  447. data/spec/opal/stdlib/erb/simple.opalerb +0 -1
  448. data/spec/opal/stdlib/js_spec.rb +0 -66
  449. data/spec/opal/stdlib/json/ext_spec.rb +0 -48
  450. data/spec/opal/stdlib/json/parse_spec.rb +0 -37
  451. data/spec/opal/stdlib/native/alias_native_spec.rb +0 -27
  452. data/spec/opal/stdlib/native/array_spec.rb +0 -11
  453. data/spec/opal/stdlib/native/each_spec.rb +0 -13
  454. data/spec/opal/stdlib/native/element_reference_spec.rb +0 -16
  455. data/spec/opal/stdlib/native/exposure_spec.rb +0 -33
  456. data/spec/opal/stdlib/native/ext_spec.rb +0 -19
  457. data/spec/opal/stdlib/native/hash_spec.rb +0 -67
  458. data/spec/opal/stdlib/native/initialize_spec.rb +0 -17
  459. data/spec/opal/stdlib/native/method_missing_spec.rb +0 -51
  460. data/spec/opal/stdlib/native/native_alias_spec.rb +0 -19
  461. data/spec/opal/stdlib/native/native_class_spec.rb +0 -18
  462. data/spec/opal/stdlib/native/native_module_spec.rb +0 -13
  463. data/spec/opal/stdlib/native/native_reader_spec.rb +0 -22
  464. data/spec/opal/stdlib/native/native_writer_spec.rb +0 -30
  465. data/spec/opal/stdlib/native/new_spec.rb +0 -92
  466. data/spec/opal/stdlib/native/struct_spec.rb +0 -12
  467. data/spec/opal/stdlib/promise/always_spec.rb +0 -49
  468. data/spec/opal/stdlib/promise/error_spec.rb +0 -15
  469. data/spec/opal/stdlib/promise/rescue_spec.rb +0 -53
  470. data/spec/opal/stdlib/promise/then_spec.rb +0 -79
  471. data/spec/opal/stdlib/promise/trace_spec.rb +0 -51
  472. data/spec/opal/stdlib/promise/value_spec.rb +0 -15
  473. data/spec/opal/stdlib/promise/when_spec.rb +0 -34
  474. data/spec/opal/stdlib/source_map_spec.rb +0 -8
  475. data/spec/opal/stdlib/strscan/scan_spec.rb +0 -11
  476. data/spec/opal/stdlib/template/paths_spec.rb +0 -10
  477. data/spec/opal/stdlib/thread/mutex_spec.rb +0 -40
  478. data/spec/opal/stdlib/thread/thread_queue_spec.rb +0 -32
  479. data/spec/opal/stdlib/thread/thread_spec.rb +0 -60
  480. data/spec/ruby_specs +0 -122
  481. data/spec/spec_helper.rb +0 -27
  482. data/spec/support/match_helpers.rb +0 -57
  483. data/spec/support/mspec_rspec_adapter.rb +0 -33
  484. data/spec/support/rewriters_helper.rb +0 -24
  485. data/stdlib/phantomjs.rb +0 -17
  486. data/tasks/testing/sprockets-phantomjs.js +0 -54
  487. data/test/nodejs/fixtures/hello.rb +0 -1
  488. data/test/nodejs/test_dir.rb +0 -17
  489. data/test/nodejs/test_file.rb +0 -87
  490. data/test/nodejs/test_io.rb +0 -18
  491. data/test/nodejs/test_opal_builder.rb +0 -12
  492. data/test/opal/test_keyword.rb +0 -590
  493. data/test/opal/unsupported_and_bugs.rb +0 -39
@@ -1,41 +0,0 @@
1
- opal_filter "Set" do
2
- fails "Set#& raises an ArgumentError when passed a non-Enumerable"
3
- fails "Set#& returns a new Set containing only elements shared by self and the passed Enumerable"
4
- fails "Set#^ raises an ArgumentError when passed a non-Enumerable"
5
- fails "Set#^ returns a new Set containing elements that are not in both self and the passed Enumberable"
6
- fails "Set#== does not depend on the order of nested Sets"
7
- fails "Set#== returns true when the passed Object is a Set and self and the Object contain the same elements"
8
- fails "Set#divide divides self into a set of subsets based on the blocks return values"
9
- fails "Set#divide when passed a block with an arity of 2 divides self into a set of subsets based on the blocks return values"
10
- fails "Set#divide when passed a block with an arity of 2 yields each two Object to the block"
11
- fails "Set#divide yields each Object to the block"
12
- fails "Set#flatten raises an ArgumentError when self is recursive"
13
- fails "Set#flatten returns a copy of self with each included Set flattened"
14
- fails "Set#flatten! flattens self"
15
- fails "Set#flatten! raises an ArgumentError when self is recursive"
16
- fails "Set#flatten! returns nil when self was not modified"
17
- fails "Set#flatten! returns self when self was modified"
18
- fails "Set#flatten_merge flattens the passed Set and merges it into self"
19
- fails "Set#flatten_merge raises an ArgumentError when trying to flatten a recursive Set"
20
- fails "Set#hash is static"
21
- fails "Set#inspect correctly handles self-references"
22
- fails "Set#intersection raises an ArgumentError when passed a non-Enumerable"
23
- fails "Set#intersection returns a new Set containing only elements shared by self and the passed Enumerable"
24
- fails "Set#keep_if keeps every element from self for which the passed block returns true"
25
- fails "Set#keep_if returns an Enumerator when passed no block"
26
- fails "Set#keep_if returns self"
27
- fails "Set#keep_if yields every element of self"
28
- fails "Set#merge raises an ArgumentError when passed a non-Enumerable"
29
- fails "Set#pretty_print passes the 'pretty print' representation of self to the pretty print writer"
30
- fails "Set#pretty_print_cycle passes the 'pretty print' representation of a self-referencing Set to the pretty print writer"
31
- fails "Set#reject! deletes every element from self for which the passed block returns true"
32
- fails "Set#reject! returns an Enumerator when passed no block"
33
- fails "Set#reject! returns nil when self was not modified"
34
- fails "Set#reject! returns self when self was modified"
35
- fails "Set#reject! yields every element of self"
36
- fails "Set#select! keeps every element from self for which the passed block returns true"
37
- fails "Set#select! returns an Enumerator when passed no block"
38
- fails "Set#select! returns nil when self was not modified"
39
- fails "Set#select! returns self when self was modified"
40
- fails "Set#select! yields every element of self"
41
- end
@@ -1,6 +0,0 @@
1
- opal_filter "Singleton" do
2
- fails "Singleton.instance returns an instance of the singleton's clone"
3
- fails "Singleton.instance returns the same instance for multiple class to instance on clones"
4
- fails "Singleton._load returns the singleton instance for anything passed in to subclass"
5
- fails "Singleton._load returns the singleton instance for anything passed in"
6
- end
@@ -1,98 +0,0 @@
1
- opal_filter "String" do
2
- fails "String#% supports inspect formats using %p" # Expected "{\"capture\"=>1}" to equal "{:capture=>1}"
3
- fails "String#bytes agrees with #unpack('C*')"
4
- fails "String#bytes yields each byte to a block if one is given, returning self"
5
- fails "String#dump includes .force_encoding(name) if the encoding isn't ASCII compatible"
6
- fails "String#dump returns a string with # not escaped when followed by any other character"
7
- fails "String#dump returns a string with \" and \\ escaped with a backslash"
8
- fails "String#dump returns a string with \\#<char> when # is followed by $, @, {"
9
- fails "String#dump returns a string with lower-case alpha characters unescaped"
10
- fails "String#dump returns a string with multi-byte UTF-8 characters replaced by \\u{} notation with lower-case hex digits"
11
- fails "String#dump returns a string with non-printing ASCII characters replaced by \\x notation"
12
- fails "String#dump returns a string with non-printing single-byte UTF-8 characters replaced by \\x notation"
13
- fails "String#dump returns a string with numeric characters unescaped"
14
- fails "String#dump returns a string with printable non-alphanumeric characters unescaped"
15
- fails "String#dump returns a string with special characters replaced with \\<char> notation"
16
- fails "String#dump returns a string with upper-case alpha characters unescaped"
17
- fails "String#dump returns a subclass instance"
18
- fails "String#each_byte keeps iterating from the old position (to new string end) when self changes"
19
- fails "String#each_byte passes each byte in self to the given block"
20
- fails "String#each_byte when no block is given returned enumerator size should return the bytesize of the string"
21
- fails "String#each_byte when no block is given returns an enumerator"
22
- fails "String#getbyte counts from the end of the String if given a negative argument"
23
- fails "String#getbyte interprets bytes relative to the String's encoding"
24
- fails "String#getbyte mirrors the output of #bytes"
25
- fails "String#getbyte raises a TypeError unless its argument can be coerced into an Integer"
26
- fails "String#getbyte regards a multi-byte character as having multiple bytes"
27
- fails "String#getbyte regards the empty String as containing no bytes"
28
- fails "String#getbyte returns an Integer between 0 and 255"
29
- fails "String#getbyte returns an Integer if given a valid index"
30
- fails "String#getbyte returns nil for out-of-bound indexes"
31
- fails "String#getbyte starts indexing at 0"
32
- fails "String#prepend raises a RuntimeError when self is frozen" # NoMethodError: undefined method `prepend' for "hello":String
33
- fails "String#scan with pattern and block passes block arguments as individual arguments when blocks are provided" # Expected ["a", "b", "c"] to equal "a"
34
- fails "String#split with Regexp includes all captures in the result array" # if OPAL_PLATFORM == 'phantomjs'
35
- fails "String#sub with pattern, replacement returns a copy of self when no modification is made"
36
- fails "String#to_c returns a Complex object"
37
- fails "String#to_c returns a complex number with 0 as the real part, 0 as the imaginary part for unrecognised Strings"
38
- fails "String#to_c understands 'a+bi' to mean a complex number with 'a' as the real part, 'b' as the imaginary"
39
- fails "String#to_c understands 'a-bi' to mean a complex number with 'a' as the real part, '-b' as the imaginary"
40
- fails "String#to_c understands a '-i' by itself as denoting a complex number with an imaginary part of -1"
41
- fails "String#to_c understands a negative integer followed by 'i' to mean that negative integer is the imaginary part"
42
- fails "String#to_c understands an 'i' by itself as denoting a complex number with an imaginary part of 1"
43
- fails "String#to_c understands an integer followed by 'i' to mean that integer is the imaginary part"
44
- fails "String#to_c understands floats (a.b) for the imaginary part"
45
- fails "String#to_c understands floats (a.b) for the real part"
46
- fails "String#to_c understands fractions (numerator/denominator) for the imaginary part"
47
- fails "String#to_c understands fractions (numerator/denominator) for the real part"
48
- fails "String#to_c understands integers"
49
- fails "String#to_c understands negative floats (-a.b) for the imaginary part"
50
- fails "String#to_c understands negative floats (-a.b) for the real part"
51
- fails "String#to_c understands negative fractions (-numerator/denominator) for the imaginary part"
52
- fails "String#to_c understands negative fractions (-numerator/denominator) for the real part"
53
- fails "String#to_c understands negative integers"
54
- fails "String#to_c understands negative scientific notation for the imaginary part"
55
- fails "String#to_c understands negative scientific notation for the real and imaginary part in the same String"
56
- fails "String#to_c understands negative scientific notation for the real part"
57
- fails "String#to_c understands scientific notation for the imaginary part"
58
- fails "String#to_c understands scientific notation for the real and imaginary part in the same String"
59
- fails "String#to_c understands scientific notation for the real part"
60
- fails "String#to_r does not ignore arbitrary, non-numeric leading characters"
61
- fails "String#to_r does not treat a leading period without a numeric prefix as a decimal point"
62
- fails "String#to_r ignores leading spaces"
63
- fails "String#to_r ignores trailing characters"
64
- fails "String#to_r ignores underscores between numbers"
65
- fails "String#to_r returns (0/1) for Strings it can't parse"
66
- fails "String#to_r returns (0/1) for the empty String"
67
- fails "String#to_r returns (n/1) for a String starting with a decimal _n_"
68
- fails "String#to_r returns a Rational object"
69
- fails "String#to_r treats leading hypens as minus signs"
70
- fails "String#to_r understands a forward slash as separating the numerator from the denominator"
71
- fails "String#to_r understands decimal points"
72
- fails "String#unicode_normalize defaults to the nfc normalization form if no forms are specified"
73
- fails "String#unicode_normalize normalizes code points in the string according to the form that is specified"
74
- fails "String#unicode_normalize raises an ArgumentError if the specified form is invalid"
75
- fails "String#unicode_normalize raises an Encoding::CompatibilityError if string is not in an unicode encoding"
76
- fails "String#unicode_normalize returns normalized form of string by default 03D3 (ϓ) GREEK UPSILON WITH ACUTE AND HOOK SYMBOL"
77
- fails "String#unicode_normalize returns normalized form of string by default 03D4 (ϔ) GREEK UPSILON WITH DIAERESIS AND HOOK SYMBOL"
78
- fails "String#unicode_normalize returns normalized form of string by default 1E9B (ẛ) LATIN SMALL LETTER LONG S WITH DOT ABOVE"
79
- fails "String#unicode_normalize! modifies original string (nfc)"
80
- fails "String#unicode_normalize! modifies self in place (nfd)"
81
- fails "String#unicode_normalize! modifies self in place (nfkc)"
82
- fails "String#unicode_normalize! modifies self in place (nfkd)"
83
- fails "String#unicode_normalize! normalizes code points and modifies the receiving string"
84
- fails "String#unicode_normalize! raises an ArgumentError if the specified form is invalid"
85
- fails "String#unicode_normalize! raises an Encoding::CompatibilityError if the string is not in an unicode encoding"
86
- fails "String#unicode_normalized? defaults to the nfc normalization form if no forms are specified"
87
- fails "String#unicode_normalized? raises an ArgumentError if the specified form is invalid"
88
- fails "String#unicode_normalized? raises an Encoding::CompatibilityError if the string is not in an unicode encoding"
89
- fails "String#unicode_normalized? returns false if string is not in the supplied normalization form"
90
- fails "String#unicode_normalized? returns true if str is in Unicode normalization form (nfc)"
91
- fails "String#unicode_normalized? returns true if str is in Unicode normalization form (nfd)"
92
- fails "String#unicode_normalized? returns true if str is in Unicode normalization form (nfkc)"
93
- fails "String#unicode_normalized? returns true if str is in Unicode normalization form (nfkd)"
94
- fails "String#unicode_normalized? returns true if string does not contain any unicode codepoints"
95
- fails "String#unicode_normalized? returns true if string is empty"
96
- fails "String#unicode_normalized? returns true if string is in the specified normalization form"
97
- fails "String.new accepts an encoding argument"
98
- end
@@ -1,71 +0,0 @@
1
- opal_filter "StringScanner" do
2
- fails "StringScanner#<< concatenates the given argument to self and returns self"
3
- fails "StringScanner#<< raises a TypeError if the given argument can't be converted to a String"
4
- fails "StringScanner#<< when passed a Fixnum doesn't call to_int on the argument"
5
- fails "StringScanner#<< when passed a Fixnum raises a TypeError"
6
- fails "StringScanner#[] calls to_int on the given index"
7
- fails "StringScanner#[] raises a IndexError when there's no named capture"
8
- fails "StringScanner#[] raises a TypeError if the given index is nil"
9
- fails "StringScanner#[] raises a TypeError when a Range is as argument"
10
- fails "StringScanner#[] returns named capture"
11
- fails "StringScanner#clear set the scan pointer to the end of the string and clear matching data."
12
- fails "StringScanner#clear warns in verbose mode that the method is obsolete"
13
- fails "StringScanner#concat concatenates the given argument to self and returns self"
14
- fails "StringScanner#concat raises a TypeError if the given argument can't be converted to a String"
15
- fails "StringScanner#concat when passed a Fixnum doesn't call to_int on the argument"
16
- fails "StringScanner#concat when passed a Fixnum raises a TypeError"
17
- fails "StringScanner#dup copies previous match state"
18
- fails "StringScanner#empty? returns false if the scan pointer is not at the end of the string" # NoMethodError: undefined method `empty?' for #<StringScanner:0x726>
19
- fails "StringScanner#empty? returns true if the scan pointer is at the end of the string" # NoMethodError: undefined method `empty?' for #<StringScanner:0x72a>
20
- fails "StringScanner#empty? warns in verbose mode that the method is obsolete"
21
- fails "StringScanner#getbyte is not multi-byte character sensitive"
22
- fails "StringScanner#getbyte returns an instance of String when passed a String subclass"
23
- fails "StringScanner#getbyte returns nil at the end of the string"
24
- fails "StringScanner#getbyte scans one byte and returns it"
25
- fails "StringScanner#getbyte warns in verbose mode that the method is obsolete"
26
- fails "StringScanner#getch is multi-byte character sensitive"
27
- fails "StringScanner#getch returns an instance of String when passed a String subclass"
28
- fails "StringScanner#initialize converts the argument into a string using #to_str"
29
- fails "StringScanner#inspect returns a string that represents the StringScanner object"
30
- fails "StringScanner#matched returns an instance of String when passed a String subclass"
31
- fails "StringScanner#matched returns the last matched string"
32
- fails "StringScanner#matched? returns false if there's no match"
33
- fails "StringScanner#matched? returns true if the last match was successful"
34
- fails "StringScanner#peek raises a ArgumentError when the passed argument is negative"
35
- fails "StringScanner#peek raises a RangeError when the passed argument is a Bignum"
36
- fails "StringScanner#peek returns an instance of String when passed a String subclass"
37
- fails "StringScanner#peep raises a ArgumentError when the passed argument is negative"
38
- fails "StringScanner#peep raises a RangeError when the passed argument is a Bignum"
39
- fails "StringScanner#peep returns an empty string when the passed argument is zero"
40
- fails "StringScanner#peep returns an instance of String when passed a String subclass"
41
- fails "StringScanner#peep returns at most the specified number of characters from the current position"
42
- fails "StringScanner#peep warns in verbose mode that the method is obsolete"
43
- fails "StringScanner#pointer returns 0 in the reset position"
44
- fails "StringScanner#pointer returns the length of the string in the terminate position"
45
- fails "StringScanner#pointer returns the position of the scan pointer"
46
- fails "StringScanner#pointer= modify the scan pointer"
47
- fails "StringScanner#pointer= positions from the end if the argument is negative"
48
- fails "StringScanner#pointer= raises a RangeError if position too far backward"
49
- fails "StringScanner#pointer= raises a RangeError when the passed argument is out of range"
50
- fails "StringScanner#pos returns the position of the scan pointer"
51
- fails "StringScanner#pos= raises a RangeError if position too far backward"
52
- fails "StringScanner#pos= raises a RangeError when the passed argument is out of range"
53
- fails "StringScanner#restsize is equivalent to rest.size"
54
- fails "StringScanner#restsize returns the length of the rest of the string" # NoMethodError: undefined method `restsize' for #<StringScanner:0x4a4>
55
- fails "StringScanner#restsize warns in verbose mode that the method is obsolete"
56
- fails "StringScanner#scan raises a TypeError if pattern isn't a Regexp"
57
- fails "StringScanner#scan_full returns the matched string if the third argument is true and advances the scan pointer if the second argument is true"
58
- fails "StringScanner#scan_full returns the matched string if the third argument is true"
59
- fails "StringScanner#scan_full returns the number of bytes advanced and advances the scan pointer if the second argument is true"
60
- fails "StringScanner#scan_full returns the number of bytes advanced"
61
- fails "StringScanner#search_full returns the matched string if the third argument is true and advances the scan pointer if the second argument is true"
62
- fails "StringScanner#search_full returns the matched string if the third argument is true"
63
- fails "StringScanner#search_full returns the number of bytes advanced and advances the scan pointer if the second argument is true"
64
- fails "StringScanner#search_full returns the number of bytes advanced"
65
- fails "StringScanner#string returns the string being scanned"
66
- fails "StringScanner#string= changes the string being scanned to the argument and resets the scanner"
67
- fails "StringScanner#string= converts the argument into a string using #to_str"
68
- fails "StringScanner#unscan raises a ScanError when the previous match had failed"
69
- fails "StringScanner#unscan set the scan pointer to the previous position"
70
- fails "StringScanner.must_C_version returns self"
71
- end
@@ -1,4 +0,0 @@
1
- opal_filter "Struct" do
2
- fails "Struct#hash returns the same fixnum for structs with the same content"
3
- fails "Struct-based class#dup retains an included module in the ancestor chain for the struct's singleton class"
4
- end
@@ -1,35 +0,0 @@
1
- opal_filter "Time" do
2
- fails "Time#dup returns a clone of Time instance"
3
- fails "Time#getlocal raises ArgumentError if the String argument is not in an ASCII-compatible encoding"
4
- fails "Time#inspect formats the fixed offset time following the pattern 'yyyy-MM-dd HH:mm:ss +/-HHMM'"
5
- fails "Time#inspect formats the local time following the pattern 'yyyy-MM-dd HH:mm:ss Z'" # Expected "2000-01-01 20:15:01 +1200" to equal "2000-01-01 20:15:01 +0100"
6
- fails "Time#localtime raises ArgumentError if the String argument is not in an ASCII-compatible encoding"
7
- fails "Time#round copies own timezone to the returning value"
8
- fails "Time#round defaults to rounding to 0 places"
9
- fails "Time#round returns an instance of Time, even if #round is called on a subclass"
10
- fails "Time#round rounds to 0 decimal places with an explicit argument"
11
- fails "Time#round rounds to 7 decimal places with an explicit argument"
12
- fails "Time#strftime returns the timezone with %Z" # Exception: Cannot read property 'join' of null
13
- fails "Time#strftime rounds an offset to the nearest second when formatting with %z"
14
- fails "Time#strftime should be able to print the commercial year with leading zeroes"
15
- fails "Time#strftime should be able to print the commercial year with only two digits"
16
- fails "Time#strftime should be able to print the julian day with leading zeroes"
17
- fails "Time#strftime should be able to show the commercial week day"
18
- fails "Time#strftime should be able to show the number of seconds since the unix epoch" # fails under FIJI et al TZs
19
- fails "Time#strftime should be able to show the timezone if available"
20
- fails "Time#strftime should be able to show the timezone of the date with a : separator"
21
- fails "Time#strftime should be able to show the week number with the week starting on Sunday (%U) and Monday (%W)"
22
- fails "Time#strftime with %N formats the microseconds of the second with %6N"
23
- fails "Time#strftime with %N formats the milliseconds of the second with %3N"
24
- fails "Time#strftime with %N formats the nanoseconds of the second with %9N"
25
- fails "Time#strftime with %N formats the nanoseconds of the second with %N"
26
- fails "Time#strftime with %N formats the picoseconds of the second with %12N"
27
- fails "Time#to_f returns the float number of seconds + usecs since the epoch"
28
- fails "Time#to_s formats the fixed offset time following the pattern 'yyyy-MM-dd HH:mm:ss +/-HHMM'"
29
- fails "Time#to_s formats the local time following the pattern 'yyyy-MM-dd HH:mm:ss Z'" # Expected "2000-01-01 20:15:01 +1200" to equal "2000-01-01 20:15:01 +0100"
30
- fails "Time#yday returns an integer representing the day of the year, 1..366" # Expected 117 to equal 116
31
- fails "Time#zone Encoding.default_internal is set returns an ASCII string"
32
- fails "Time#zone defaults to UTC when bad zones given" # Expected 3600 to equal 0
33
- fails "Time.at passed Numeric passed BigDecimal doesn't round input value"
34
- fails "Time.at passed Numeric roundtrips a Rational produced by #to_r"
35
- end
@@ -1,17 +0,0 @@
1
- opal_filter "UnboundMethod" do
2
- fails "UnboundMethod#== returns true if both are aliases for a third method"
3
- fails "UnboundMethod#== returns true if either is an alias for the other"
4
- fails "UnboundMethod#== returns true if objects refer to the same method"
5
- fails "UnboundMethod#== returns true if same method is extracted from the same subclass"
6
- fails "UnboundMethod#arity for a Method generated by respond_to_missing? returns -1"
7
- fails "UnboundMethod#bind returns Method returned for obj is equal to one directly returned by obj.method" # Expected #<Method: UnboundMethodSpecs::Methods#foo (defined in UnboundMethodSpecs::Methods in ruby/core/unboundmethod/fixtures/classes.rb:30)> to equal #<Method: UnboundMethodSpecs::Methods#foo (defined in UnboundMethodSpecs::Methods in ruby/core/unboundmethod/fixtures/classes.rb:30)>
8
- fails "UnboundMethod#clone returns a copy of the UnboundMethod"
9
- fails "UnboundMethod#hash returns the same value for builtin methods that are eql?"
10
- fails "UnboundMethod#hash returns the same value for user methods that are eql?"
11
- fails "UnboundMethod#source_location works for define_method methods"
12
- fails "UnboundMethod#source_location works for define_singleton_method methods"
13
- fails "UnboundMethod#super_method returns nil when the parent's method is removed"
14
- fails "UnboundMethod#super_method returns nil when there's no super method in the parent"
15
- fails "UnboundMethod#super_method returns the method that would be called by super in the method"
16
- fails "UnboundMethod#to_s the String shows the method name, Module defined in and Module extracted from"
17
- end
@@ -1,167 +0,0 @@
1
- opal_unsupported_filter "Array" do
2
- fails "Array#* with a string with a tainted separator does not taint the result if the array has only one element"
3
- fails "Array#* with a string with a tainted separator does not taint the result if the array is empty"
4
- fails "Array#* with a string with a tainted separator taints the result if the array has two or more elements"
5
- fails "Array#* with a string with an untrusted separator does not untrust the result if the array has only one element"
6
- fails "Array#* with a string with an untrusted separator does not untrust the result if the array is empty"
7
- fails "Array#* with a string with an untrusted separator untrusts the result if the array has two or more elements"
8
- fails "Array#* with an integer copies the taint status of the original array even if the array is empty"
9
- fails "Array#* with an integer copies the taint status of the original array even if the passed count is 0"
10
- fails "Array#* with an integer copies the taint status of the original array if the passed count is not 0"
11
- fails "Array#* with an integer copies the untrusted status of the original array even if the array is empty"
12
- fails "Array#* with an integer copies the untrusted status of the original array even if the passed count is 0"
13
- fails "Array#* with an integer copies the untrusted status of the original array if the passed count is not 0"
14
- fails "Array#+ does not get infected even if an original array is tainted"
15
- fails "Array#+ does not infected even if an original array is untrusted"
16
- fails "Array#<< raises a RuntimeError on a frozen array"
17
- fails "Array#clear keeps tainted status"
18
- fails "Array#clear keeps untrusted status"
19
- fails "Array#clear raises a RuntimeError on a frozen array"
20
- fails "Array#clone copies frozen status from the original"
21
- fails "Array#clone copies taint status from the original"
22
- fails "Array#clone copies untrusted status from the original"
23
- fails "Array#collect does not copy tainted status"
24
- fails "Array#collect does not copy untrusted status"
25
- fails "Array#collect! keeps tainted status"
26
- fails "Array#collect! keeps untrusted status"
27
- fails "Array#collect! when frozen raises a RuntimeError when calling #each on the returned Enumerator when empty"
28
- fails "Array#collect! when frozen raises a RuntimeError when calling #each on the returned Enumerator"
29
- fails "Array#collect! when frozen raises a RuntimeError when empty"
30
- fails "Array#collect! when frozen raises a RuntimeError"
31
- fails "Array#compact does not keep tainted status even if all elements are removed"
32
- fails "Array#compact does not keep untrusted status even if all elements are removed"
33
- fails "Array#compact! keeps tainted status even if all elements are removed"
34
- fails "Array#compact! keeps untrusted status even if all elements are removed"
35
- fails "Array#compact! raises a RuntimeError on a frozen array"
36
- fails "Array#concat is not infected by the other"
37
- fails "Array#concat is not infected untrustedness by the other"
38
- fails "Array#concat keeps tainted status"
39
- fails "Array#concat keeps the tainted status of elements"
40
- fails "Array#concat keeps the untrusted status of elements"
41
- fails "Array#concat keeps untrusted status"
42
- fails "Array#concat raises a RuntimeError when Array is frozen and modification occurs"
43
- fails "Array#concat raises a RuntimeError when Array is frozen and no modification occurs"
44
- fails "Array#delete keeps tainted status"
45
- fails "Array#delete keeps untrusted status"
46
- fails "Array#delete raises a RuntimeError on a frozen array"
47
- fails "Array#delete_at keeps tainted status"
48
- fails "Array#delete_at keeps untrusted status"
49
- fails "Array#delete_at raises a RuntimeError on a frozen array"
50
- fails "Array#delete_if keeps tainted status"
51
- fails "Array#delete_if keeps untrusted status"
52
- fails "Array#delete_if raises a RuntimeError on a frozen array"
53
- fails "Array#delete_if raises a RuntimeError on an empty frozen array"
54
- fails "Array#delete_if returns an Enumerator if no block given, and the array is frozen"
55
- fails "Array#dup copies taint status from the original"
56
- fails "Array#dup copies untrusted status from the original"
57
- fails "Array#eql? returns false if any corresponding elements are not #eql?"
58
- fails "Array#fill does not replicate the filler"
59
- fails "Array#fill raises a RuntimeError on a frozen array"
60
- fails "Array#fill raises a RuntimeError on an empty frozen array"
61
- fails "Array#fill with (filler, index, length) raises an ArgumentError or RangeError for too-large sizes"
62
- fails "Array#first raises a RangeError when count is a Bignum"
63
- fails "Array#flatten returns a tainted array if self is tainted"
64
- fails "Array#flatten returns an untrusted array if self is untrusted"
65
- fails "Array#flatten! raises a RuntimeError on frozen arrays when the array is modified"
66
- fails "Array#flatten! raises a RuntimeError on frozen arrays when the array would not be modified"
67
- fails "Array#frozen? returns false for an array being sorted by #sort"
68
- fails "Array#frozen? returns true if array is frozen"
69
- fails "Array#hash returns the same fixnum for arrays with the same content"
70
- fails "Array#hash calls to_int on result of calling hash on each element"
71
- fails "Array#initialize is private"
72
- fails "Array#initialize raises a RuntimeError on frozen arrays"
73
- fails "Array#insert raises a RuntimeError on frozen arrays when the array is modified"
74
- fails "Array#insert raises a RuntimeError on frozen arrays when the array would not be modified"
75
- fails "Array#inspect does not taint the result if the Array is tainted but empty"
76
- fails "Array#inspect does not untrust the result if the Array is untrusted but empty"
77
- fails "Array#inspect represents a recursive element with '[...]'"
78
- fails "Array#inspect taints the result if an element is tainted"
79
- fails "Array#inspect taints the result if the Array is non-empty and tainted"
80
- fails "Array#inspect untrusts the result if an element is untrusted"
81
- fails "Array#inspect untrusts the result if the Array is untrusted"
82
- fails "Array#inspect with encoding raises if inspected result is not default external encoding"
83
- fails "Array#inspect with encoding returns a US-ASCII string for an empty Array"
84
- fails "Array#inspect with encoding use the default external encoding if it is ascii compatible"
85
- fails "Array#inspect with encoding use US-ASCII encoding if the default external encoding is not ascii compatible"
86
- fails "Array#join does not taint the result if the Array is tainted but empty"
87
- fails "Array#join does not untrust the result if the Array is untrusted but empty"
88
- fails "Array#join fails for arrays with incompatibly-encoded strings"
89
- fails "Array#join returns a US-ASCII string for an empty Array"
90
- fails "Array#join taints the result if the Array is tainted and non-empty"
91
- fails "Array#join taints the result if the result of coercing an element is tainted"
92
- fails "Array#join untrusts the result if the Array is untrusted and non-empty"
93
- fails "Array#join untrusts the result if the result of coercing an element is untrusted"
94
- fails "Array#join uses the first encoding when other strings are compatible"
95
- fails "Array#join uses the widest common encoding when other strings are incompatible"
96
- fails "Array#join with a tainted separator does not taint the result if the array has only one element"
97
- fails "Array#join with a tainted separator does not taint the result if the array is empty"
98
- fails "Array#join with a tainted separator taints the result if the array has two or more elements"
99
- fails "Array#join with an untrusted separator does not untrust the result if the array has only one element"
100
- fails "Array#join with an untrusted separator does not untrust the result if the array is empty"
101
- fails "Array#join with an untrusted separator untrusts the result if the array has two or more elements"
102
- fails "Array#keep_if on frozen objects returns an Enumerator if no block is given"
103
- fails "Array#keep_if on frozen objects with falsy block keeps elements after any exception"
104
- fails "Array#keep_if on frozen objects with falsy block raises a RuntimeError"
105
- fails "Array#keep_if on frozen objects with truthy block keeps elements after any exception"
106
- fails "Array#keep_if on frozen objects with truthy block raises a RuntimeError"
107
- fails "Array#map does not copy tainted status"
108
- fails "Array#map does not copy untrusted status"
109
- fails "Array#map! keeps tainted status"
110
- fails "Array#map! keeps untrusted status"
111
- fails "Array#map! when frozen raises a RuntimeError when calling #each on the returned Enumerator when empty"
112
- fails "Array#map! when frozen raises a RuntimeError when calling #each on the returned Enumerator"
113
- fails "Array#map! when frozen raises a RuntimeError when empty"
114
- fails "Array#map! when frozen raises a RuntimeError"
115
- fails "Array#pop keeps taint status"
116
- fails "Array#pop keeps untrusted status"
117
- fails "Array#pop passed a number n as an argument keeps taint status"
118
- fails "Array#pop passed a number n as an argument keeps untrusted status"
119
- fails "Array#pop passed a number n as an argument raises a RuntimeError on a frozen array"
120
- fails "Array#pop passed a number n as an argument returns a trusted array even if the array is untrusted"
121
- fails "Array#pop passed a number n as an argument returns an untainted array even if the array is tainted"
122
- fails "Array#pop raises a RuntimeError on a frozen array"
123
- fails "Array#pop raises a RuntimeError on an empty frozen array"
124
- fails "Array#push raises a RuntimeError on a frozen array"
125
- fails "Array#reject! raises a RuntimeError on a frozen array"
126
- fails "Array#reject! raises a RuntimeError on an empty frozen array"
127
- fails "Array#reject! returns an Enumerator if no block given, and the array is frozen"
128
- fails "Array#replace raises a RuntimeError on a frozen array"
129
- fails "Array#reverse! raises a RuntimeError on a frozen array"
130
- fails "Array#select! on frozen objects with falsy block keeps elements after any exception"
131
- fails "Array#select! on frozen objects with falsy block raises a RuntimeError"
132
- fails "Array#select! on frozen objects with truthy block keeps elements after any exception"
133
- fails "Array#select! on frozen objects with truthy block raises a RuntimeError"
134
- fails "Array#shift passed a number n as an argument keeps taint status"
135
- fails "Array#shift passed a number n as an argument returns an untainted array even if the array is tainted"
136
- fails "Array#shift raises a RuntimeError on a frozen array"
137
- fails "Array#shift raises a RuntimeError on an empty frozen array"
138
- fails "Array#shuffle! raises a RuntimeError on a frozen array"
139
- fails "Array#slice raises a RangeError when the length is out of range of Fixnum"
140
- fails "Array#slice raises a RangeError when the start index is out of range of Fixnum"
141
- fails "Array#slice! raises a RuntimeError on a frozen array"
142
- fails "Array#sort! raises a RuntimeError on a frozen array"
143
- fails "Array#to_s does not taint the result if the Array is tainted but empty"
144
- fails "Array#to_s does not untrust the result if the Array is untrusted but empty"
145
- fails "Array#to_s represents a recursive element with '[...]'"
146
- fails "Array#to_s taints the result if an element is tainted"
147
- fails "Array#to_s taints the result if the Array is non-empty and tainted"
148
- fails "Array#to_s untrusts the result if an element is untrusted"
149
- fails "Array#to_s untrusts the result if the Array is untrusted"
150
- fails "Array#to_s with encoding raises if inspected result is not default external encoding"
151
- fails "Array#to_s with encoding returns a US-ASCII string for an empty Array"
152
- fails "Array#to_s with encoding use the default external encoding if it is ascii compatible"
153
- fails "Array#to_s with encoding use US-ASCII encoding if the default external encoding is not ascii compatible"
154
- fails "Array#uniq compares elements with matching hash codes with #eql?" #RubySpec uses taint, which is not supported on Opal.
155
- fails "Array#uniq uses eql? semantics" #RubySpec expects 1.0 and 1 to be seen as different, which is not supported on Opal.
156
- fails "Array#uniq! doesn't yield to the block on a frozen array"
157
- fails "Array#uniq! raises a RuntimeError on a frozen array when the array is modified"
158
- fails "Array#uniq! raises a RuntimeError on a frozen array when the array would not be modified"
159
- fails "Array#unshift raises a RuntimeError on a frozen array when the array is modified"
160
- fails "Array#unshift raises a RuntimeError on a frozen array when the array would not be modified"
161
- fails "Array#[] raises a RangeError when the length is out of range of Fixnum"
162
- fails "Array#[] raises a RangeError when the start index is out of range of Fixnum"
163
- fails "Array#[]= checks frozen before attempting to coerce arguments"
164
- fails "Array#[]= raises a RuntimeError on a frozen array"
165
- fails "Array#inspect with encoding does not raise if inspected result is not default external encoding" # NoMethodError: undefined method `encode!' for "\"utf_16be あ\"":String
166
- fails "Array#to_s with encoding does not raise if inspected result is not default external encoding" # NoMethodError: undefined method `encode!' for "\"utf_16be あ\"":String
167
- end