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,69 +0,0 @@
1
- var page = require('webpage').create();
2
- var fs = require('fs');
3
- var system = require('system');
4
-
5
- page.onConsoleMessage = function(msg) {
6
- system.stdout.write(msg);
7
- };
8
-
9
- var opal_code = system.stdin.read();
10
-
11
- /*
12
- * Exit phantom instance "safely" see - https://github.com/ariya/phantomjs/issues/12697
13
- * https://github.com/nobuoka/gulp-qunit/commit/d242aff9b79de7543d956e294b2ee36eda4bac6c
14
- */
15
- function phantom_exit(code) {
16
- page.close();
17
- setTimeout(function () { phantom.exit(code); }, 0);
18
- }
19
-
20
- page.onCallback = function(data) {
21
- switch (data[0]) {
22
- case 'exit':
23
- var status = data[1] || 0;
24
- phantom_exit(status);
25
- case 'stdout':
26
- system.stdout.write(data[1] || '');
27
- break;
28
- case 'stderr':
29
- system.stderr.write(data[1] || '');
30
- break;
31
- case 'env':
32
- return JSON.stringify(system.env);
33
- case 'argv':
34
- return JSON.stringify(system.args.slice(1));
35
- default:
36
- console.error('Unknown callback data: ', data);
37
- }
38
- };
39
-
40
- page.onError = function(msg, trace) {
41
- trace = (trace && trace.length) ? trace : [];
42
-
43
- var format_trace = function(trace) {
44
- var file = trace.file || trace.sourceURL,
45
- line = trace.line,
46
- method = trace['function'];
47
- method = method ? "`"+method+"'" : '~unknown~';
48
- return file+': '+line+':in '+method;
49
- };
50
-
51
- var msgStack = [format_trace(trace[0])+': '+msg];
52
-
53
- trace.slice(1).forEach(function(t) {
54
- msgStack.push(" from "+format_trace(t));
55
- });
56
-
57
- system.stderr.write(msgStack.join('\n')+'\n');
58
- phantom_exit(1);
59
- };
60
-
61
- page.onInitialized = function() {
62
- page.evaluate('function(code) {window.eval(code)}', opal_code)
63
- };
64
-
65
- page.setContent("<!doctype html>\n"+
66
- "<html>"+
67
- "<head><meta charset='utf-8'/></head><body>"+
68
- "</body></html>",
69
- 'http://www.example.com');
@@ -1,29 +0,0 @@
1
- # frozen_string_literal: true
2
- require 'shellwords'
3
-
4
- module Opal
5
- module CliRunners
6
- class Phantomjs
7
- SCRIPT_PATH = File.expand_path('../phantom.js', __FILE__)
8
-
9
- def initialize(options)
10
- @output = options.fetch(:output, $stdout)
11
- end
12
- attr_reader :output, :exit_status
13
-
14
- def run(code, argv)
15
- phantomjs_command = [
16
- 'phantomjs',
17
- SCRIPT_PATH.shellescape,
18
- *argv.map(&:shellescape)
19
- ].join(' ')
20
-
21
- IO.popen(phantomjs_command, 'w', out: output) do |io|
22
- io.write(code)
23
- end
24
-
25
- @exit_status = $?.exitstatus
26
- end
27
- end
28
- end
29
- end
@@ -1,19 +0,0 @@
1
- # frozen_string_literal: true
2
- require 'hike'
3
- require 'pathname'
4
-
5
- module Opal
6
- class HikePathFinder < Hike::Trail
7
- def initialize(paths = Opal.paths)
8
- super()
9
- append_paths(*paths)
10
- append_extensions '.js', '.js.rb', '.rb', '.opalerb'
11
- end
12
-
13
- def find path
14
- pathname = Pathname(path)
15
- return path if pathname.absolute? and pathname.exist?
16
- super
17
- end
18
- end
19
- end
@@ -1,75 +0,0 @@
1
- # frozen_string_literal: true
2
- require 'opal/nodes/base'
3
-
4
- module Opal
5
- module Nodes
6
- class ForNode < Base
7
- handle :for
8
-
9
- children :arg, :value, :body_sexp
10
-
11
- def compile
12
- # All variables that are used for iterating
13
- # must be available outside of the for loop
14
- plain_arg_names.each do |arg_name|
15
- add_local arg_name
16
- end
17
-
18
- with_temp do |loop_var|
19
- if arg.type == :mlhs
20
- masgn_source_sexp = s(:js_tmp, loop_var)
21
- assign = s(:masgn, arg, masgn_source_sexp)
22
- else
23
- assign = arg << s(:js_tmp, loop_var)
24
- end
25
-
26
- if body_sexp
27
- assign = s(:begin, assign, body_sexp)
28
- end
29
-
30
- locals_in_for_body.each do |lvar|
31
- add_local lvar
32
- end
33
-
34
- # block_sexp is a sexp of our for loop
35
- # converted to "value.each { |arg| body_sexp }"
36
- block_sexp = s(:send, value, :each,
37
- s(:iter, s(:args, s(:arg, loop_var)), assign)
38
- )
39
- push expr(block_sexp)
40
- end
41
- end
42
-
43
- def plain_arg_names(node = arg)
44
- case node.type
45
- when :lvasgn
46
- node.children
47
- when :mlhs
48
- node.children.flat_map { |mlhs_arg| plain_arg_names(mlhs_arg) }
49
- else
50
- []
51
- end
52
- end
53
-
54
- class LocalsFinder < ::Parser::AST::Processor
55
- attr_reader :lvasgns
56
-
57
- def initialize
58
- @lvasgns = Set.new
59
- end
60
-
61
- def on_lvasgn(node)
62
- name, _value = *node
63
- self.lvasgns << name
64
- super
65
- end
66
- end
67
-
68
- def locals_in_for_body
69
- finder = LocalsFinder.new
70
- finder.process(body_sexp)
71
- finder.lvasgns.to_a
72
- end
73
- end
74
- end
75
- end
@@ -1,10 +0,0 @@
1
- # Opal specs overview
2
-
3
- * **ruby** the Ruby Spec Suite examples (submodule)
4
- * **ruby_specs** (file) a whitelist of the Ruby Spec Suite files to be ran
5
- * **filters** The list of the Ruby Spec Suite examples that are either bugs or unsupported
6
- * **opal** opal additions/special behaviour in the runtime/corelib
7
- * **lib** specs for opal lib (parser, lexer, grammar, compiler etc)
8
- * **mspec** the MSpec library that runs the ruby spec
9
- * **mspec-opal** Opal specific patches to the MSpec library
10
- * **support** misc. utilities
@@ -1,16 +0,0 @@
1
- opal_filter "Array" do
2
- fails "Array#delete_if updates the receiver after all blocks"
3
- fails "Array#flatten does not call #to_ary on elements beyond the given level"
4
- fails "Array#flatten performs respond_to? and method_missing-aware checks when coercing elements to array"
5
- fails "Array#flatten with a non-Array object in the Array calls #method_missing if defined"
6
- fails "Array#join raises a NoMethodError if an element does not respond to #to_str, #to_ary, or #to_s"
7
- fails "Array#keep_if updates the receiver after all blocks"
8
- fails "Array#partition returns in the left array values for which the block evaluates to true"
9
- fails "Array#rassoc calls elem == obj on the second element of each contained array"
10
- fails "Array#rassoc does not check the last element in each contained but speficically the second"
11
- fails "Array#reject! updates the receiver after all blocks"
12
- fails "Array#select returns a new array of elements for which block is true"
13
- fails "Array#select! updates the receiver after all blocks"
14
- fails "Array#uniq! properly handles recursive arrays"
15
- fails "Array#zip fills nil when the given enumereator is shorter than self"
16
- end
@@ -1,13 +0,0 @@
1
- opal_filter "BasicObject" do
2
- fails "BasicObject raises NoMethodError for nonexistent methods after #method_missing is removed"
3
- fails "BasicObject#initialize does not accept arguments"
4
- fails "BasicObject#instance_eval raises a TypeError when defining methods on an immediate"
5
- fails "BasicObject#instance_eval raises a TypeError when defining methods on numerics"
6
- fails "BasicObject#instance_eval evaluates string with given filename and linenumber"
7
- fails "BasicObject#instance_exec binds the block's binding self to the receiver"
8
- fails "BasicObject#instance_exec raises a LocalJumpError unless given a block"
9
- fails "BasicObject#instance_exec raises a TypeError when defining methods on an immediate"
10
- fails "BasicObject#instance_exec raises a TypeError when defining methods on numerics"
11
- fails "BasicObject#method_missing for an instance sets the receiver of the raised NoMethodError"
12
- fails "BasicObject#method_missing for an instance sets the receiver of the raised NoMethodError"
13
- end
@@ -1,146 +0,0 @@
1
- opal_filter "BigDecimal" do
2
- fails "BigDecimal#% returns NaN if NaN is involved"
3
- fails "BigDecimal#% returns NaN if the dividend is Infinity"
4
- fails "BigDecimal#% returns self modulo other"
5
- fails "BigDecimal#% returns the dividend if the divisor is Infinity"
6
- fails "BigDecimal#** 0 to power of 0 is 1"
7
- fails "BigDecimal#** 0 to powers < 0 is Infinity"
8
- fails "BigDecimal#** other powers of 0 are 0"
9
- fails "BigDecimal#** powers of 1 equal 1"
10
- fails "BigDecimal#** powers of self"
11
- fails "BigDecimal#** returns 0.0 if self is infinite and argument is negative"
12
- fails "BigDecimal#** returns NaN if self is NaN"
13
- fails "BigDecimal#** returns infinite if self is infinite and argument is positive"
14
- fails "BigDecimal#-@ properly handles special values"
15
- fails "BigDecimal#/ returns a / b" #fails a single assertion: @one.send(@method, BigDecimal('-2E5555'), *@object).should == BigDecimal('-0.5E-5555')
16
- fails "BigDecimal#< properly handles infinity values" #fails only with mock object
17
- fails "BigDecimal#<= properly handles infinity values" #fails only with mock object
18
- fails "BigDecimal#<=> returns -1 if a < b" #fails only with mock object
19
- fails "BigDecimal#<=> returns 1 if a > b" #fails only with mock object
20
- fails "BigDecimal#> properly handles infinity values" #fails only with mock object
21
- fails "BigDecimal#>= properly handles infinity values" #fails only with mock object
22
- fails "BigDecimal#ceil returns the smallest integer greater or equal to self, if n is unspecified"
23
- fails "BigDecimal#ceil sets n digits left of the decimal point to 0, if given n < 0"
24
- fails "BigDecimal#coerce returns [other, self] both as BigDecimal"
25
- fails "BigDecimal#div returns a / b with optional precision" #fails the case of > 20 decimal places for to_s('F')
26
- fails "BigDecimal#div with precision set to 0 returns a / b" #fails a single assertion: @one.send(@method, BigDecimal('-2E5555'), *@object).should == BigDecimal('-0.5E-5555')
27
- fails "BigDecimal#divmod array contains quotient and modulus as BigDecimal"
28
- fails "BigDecimal#divmod can be reversed with * and +" # Expected 0 to equal -1
29
- fails "BigDecimal#divmod returns an array of Infinity and NaN if the dividend is Infinity"
30
- fails "BigDecimal#divmod returns an array of two NaNs if NaN is involved"
31
- fails "BigDecimal#divmod returns an array of zero and the dividend if the divisor is Infinity"
32
- fails "BigDecimal#exponent is n if number can be represented as 0.xxx*10**n"
33
- fails "BigDecimal#exponent returns 0 if self is 0"
34
- fails "BigDecimal#exponent returns an Integer"
35
- fails "BigDecimal#fix correctly handles special values"
36
- fails "BigDecimal#fix does not allow any arguments"
37
- fails "BigDecimal#fix returns 0 if the absolute value is < 1"
38
- fails "BigDecimal#fix returns a BigDecimal"
39
- fails "BigDecimal#fix returns the integer part of the absolute value"
40
- fails "BigDecimal#floor raise exception, if self is special value"
41
- fails "BigDecimal#floor returns n digits right of the decimal point if given n > 0"
42
- fails "BigDecimal#floor returns the greatest integer smaller or equal to self"
43
- fails "BigDecimal#floor sets n digits left of the decimal point to 0, if given n < 0"
44
- fails "BigDecimal#frac correctly handles special values"
45
- fails "BigDecimal#frac returns 0 if the value is 0"
46
- fails "BigDecimal#frac returns 0 if the value is an integer"
47
- fails "BigDecimal#frac returns a BigDecimal"
48
- fails "BigDecimal#frac returns the fractional part of the absolute value"
49
- fails "BigDecimal#inspect encloses information in angle brackets"
50
- fails "BigDecimal#inspect is comma separated list of three items"
51
- fails "BigDecimal#inspect last part is number of significant digits"
52
- fails "BigDecimal#inspect looks like this"
53
- fails "BigDecimal#inspect returns String starting with #"
54
- fails "BigDecimal#inspect value after first comma is value as string"
55
- fails "BigDecimal#mod_part_of_divmod returns NaN if NaN is involved"
56
- fails "BigDecimal#mod_part_of_divmod returns NaN if the dividend is Infinity"
57
- fails "BigDecimal#mod_part_of_divmod returns self modulo other"
58
- fails "BigDecimal#mod_part_of_divmod returns the dividend if the divisor is Infinity"
59
- fails "BigDecimal#power 0 to power of 0 is 1"
60
- fails "BigDecimal#power 0 to powers < 0 is Infinity"
61
- fails "BigDecimal#power other powers of 0 are 0"
62
- fails "BigDecimal#power powers of 1 equal 1"
63
- fails "BigDecimal#power powers of self"
64
- fails "BigDecimal#power returns 0.0 if self is infinite and argument is negative"
65
- fails "BigDecimal#power returns NaN if self is NaN"
66
- fails "BigDecimal#power returns infinite if self is infinite and argument is positive"
67
- fails "BigDecimal#precs returns Integers as array values"
68
- fails "BigDecimal#precs returns array of two values"
69
- fails "BigDecimal#precs returns the current value of significant digits as the first value"
70
- fails "BigDecimal#precs returns the maximum number of significant digits as the second value"
71
- fails "BigDecimal#quo returns a / b" #fails a single assertion: @one.send(@method, BigDecimal('-2E5555'), *@object).should == BigDecimal('-0.5E-5555')
72
- fails "BigDecimal#remainder coerces arguments to BigDecimal if possible"
73
- fails "BigDecimal#remainder it equals modulo, if both values are of same sign"
74
- fails "BigDecimal#remainder means self-arg*(self/arg).truncate"
75
- fails "BigDecimal#remainder raises TypeError if the argument cannot be coerced to BigDecimal"
76
- fails "BigDecimal#remainder returns NaN if Infinity is involved"
77
- fails "BigDecimal#remainder returns NaN if NaN is involved"
78
- fails "BigDecimal#remainder returns NaN used with zero"
79
- fails "BigDecimal#remainder returns zero if used on zero"
80
- fails "BigDecimal#round BigDecimal::ROUND_CEILING rounds values towards +infinity"
81
- fails "BigDecimal#round BigDecimal::ROUND_DOWN rounds values towards zero"
82
- fails "BigDecimal#round BigDecimal::ROUND_FLOOR rounds values towards -infinity"
83
- fails "BigDecimal#round BigDecimal::ROUND_HALF_DOWN rounds values > 5 up, otherwise down"
84
- fails "BigDecimal#round BigDecimal::ROUND_HALF_EVEN rounds values > 5 up, < 5 down and == 5 towards even neighbor"
85
- fails "BigDecimal#round BigDecimal::ROUND_HALF_UP rounds values >= 5 up, otherwise down"
86
- fails "BigDecimal#round BigDecimal::ROUND_UP rounds values away from zero"
87
- fails "BigDecimal#round uses default rounding method unless given"
88
- fails "BigDecimal#sign returns negative value if BigDecimal less than 0"
89
- fails "BigDecimal#sign returns positive value if BigDecimal greater than 0"
90
- fails "BigDecimal#split first value: -1 for numbers < 0" # NoMethodError: undefined method `split' for 3.14159265358979323846264338327950288419716939937510582097494459230781640628620899862803482534211706798214808651328230664709384460955058223172535940812848111745028410270193852110555964462294895493038196442881097566593014782083152134043
91
- fails "BigDecimal#split first value: 0 if BigDecimal is NaN" # NoMethodError: undefined method `split' for 3.14159265358979323846264338327950288419716939937510582097494459230781640628620899862803482534211706798214808651328230664709384460955058223172535940812848111745028410270193852110555964462294895493038196442881097566593014782083152134043
92
- fails "BigDecimal#split first value: 1 for numbers > 0" # NoMethodError: undefined method `split' for 3.14159265358979323846264338327950288419716939937510582097494459230781640628620899862803482534211706798214808651328230664709384460955058223172535940812848111745028410270193852110555964462294895493038196442881097566593014782083152134043
93
- fails "BigDecimal#split fourth value: the exponent" # NoMethodError: undefined method `split' for 3.14159265358979323846264338327950288419716939937510582097494459230781640628620899862803482534211706798214808651328230664709384460955058223172535940812848111745028410270193852110555964462294895493038196442881097566593014782083152134043
94
- fails "BigDecimal#split second value: a string with the significant digits" # NoMethodError: undefined method `split' for 3.14159265358979323846264338327950288419716939937510582097494459230781640628620899862803482534211706798214808651328230664709384460955058223172535940812848111745028410270193852110555964462294895493038196442881097566593014782083152134043
95
- fails "BigDecimal#split splits BigDecimal in an array with four values"
96
- fails "BigDecimal#split third value: the base (currently always ten)" # NoMethodError: undefined method `split' for 3.14159265358979323846264338327950288419716939937510582097494459230781640628620899862803482534211706798214808651328230664709384460955058223172535940812848111745028410270193852110555964462294895493038196442881097566593014782083152134043
97
- fails "BigDecimal#sqrt raises ArgumentError if 2 arguments are given"
98
- fails "BigDecimal#sqrt raises ArgumentError if a negative number is given"
99
- fails "BigDecimal#sqrt raises ArgumentError when no argument is given"
100
- fails "BigDecimal#sqrt raises FloatDomainError for NaN"
101
- fails "BigDecimal#sqrt raises FloatDomainError for negative infinity"
102
- fails "BigDecimal#sqrt raises FloatDomainError on negative values"
103
- fails "BigDecimal#sqrt raises TypeError if a plain Object is given"
104
- fails "BigDecimal#sqrt raises TypeError if a string is given"
105
- fails "BigDecimal#sqrt raises TypeError if nil is given"
106
- fails "BigDecimal#sqrt returns 0 for 0, +0.0 and -0.0"
107
- fails "BigDecimal#sqrt returns 1 if precision is 0 or 1"
108
- fails "BigDecimal#sqrt returns positive infitinity for infinity"
109
- fails "BigDecimal#sqrt returns square root of 0.9E-99999 with desired precision"
110
- fails "BigDecimal#sqrt returns square root of 121 with desired precision"
111
- fails "BigDecimal#sqrt returns square root of 2 with desired precision"
112
- fails "BigDecimal#sqrt returns square root of 3 with desired precision"
113
- fails "BigDecimal#to_f properly handles special values"
114
- fails "BigDecimal#to_f remembers negative zero when converted to float"
115
- fails "BigDecimal#to_i raises FloatDomainError if BigDecimal is infinity or NaN"
116
- fails "BigDecimal#to_i returns Integer or Bignum otherwise"
117
- fails "BigDecimal#to_int raises FloatDomainError if BigDecimal is infinity or NaN"
118
- fails "BigDecimal#to_int returns Integer or Bignum otherwise"
119
- fails "BigDecimal#to_s can return a leading space for values > 0"
120
- fails "BigDecimal#to_s can use conventional floating point notation"
121
- fails "BigDecimal#to_s can use engineering notation"
122
- fails "BigDecimal#to_s inserts a space every n chars, if integer n is supplied"
123
- fails "BigDecimal#to_s removes trailing spaces in floating point notation"
124
- fails "BigDecimal#to_s starts with + if + is supplied and value is positive"
125
- fails "BigDecimal#to_s the default format looks like 0.xxxxEnn"
126
- fails "BigDecimal#truncate returns Infinity if self is infinite"
127
- fails "BigDecimal#truncate returns NaN if self is NaN"
128
- fails "BigDecimal#truncate returns the same value if self is special value"
129
- fails "BigDecimal#truncate returns value of given precision otherwise"
130
- fails "BigDecimal#truncate sets n digits left of the decimal point to 0, if given n < 0"
131
- fails "BigDecimal.double_fig returns the number of digits a Float number is allowed to have"
132
- fails "BigDecimal.limit returns the value before set if the passed argument is nil or is not specified"
133
- fails "BigDecimal.limit use the global limit if no precision is specified"
134
- fails "BigDecimal.mode raise an exception if the flag is true"
135
- fails "BigDecimal.mode returns Infinity when too big"
136
- fails "BigDecimal.mode returns the appropriate value and continue the computation if the flag is false"
137
- fails "BigDecimal.new accepts significant digits >= given precision" # NoMethodError: undefined method `precs' for 3.1415923
138
- fails "BigDecimal.new allows for [eEdD] as exponent separator"
139
- fails "BigDecimal.new allows for underscores in all parts"
140
- fails "BigDecimal.new creates a new object of class BigDecimal"
141
- fails "BigDecimal.new determines precision from initial value"
142
- fails "BigDecimal.new ignores trailing garbage"
143
- fails "BigDecimal.new raises ArgumentError when Float is used without precision"
144
- fails "BigDecimal.new treats invalid strings as 0.0"
145
- fails "BigDecimal.ver returns the Version number"
146
- end
@@ -1,11 +0,0 @@
1
- opal_filter "Class" do
2
- fails "Class#allocate raises TypeError for #superclass"
3
- fails "Class#dup duplicates both the class and the singleton class"
4
- fails "Class#dup retains an included module in the ancestor chain for the singleton class"
5
- fails "Class#dup retains the correct ancestor chain for the singleton class"
6
- fails "Class#initialize raises a TypeError when called on BasicObject"
7
- fails "Class#initialize raises a TypeError when called on already initialized classes"
8
- fails "Class#initialize when given the Class raises a TypeError"
9
- fails "Class#new uses the internal allocator and does not call #allocate" # RuntimeError: allocate should not be called
10
- fails "Class.new raises a TypeError if passed a metaclass"
11
- end
@@ -1,5 +0,0 @@
1
- opal_filter "Comparable" do
2
- fails "Comparable#== when #<=> raises an exception if it is a StandardError lets it go through"
3
- fails "Comparable#== when #<=> raises an exception if it is a subclass of StandardError lets it go through"
4
- fails "Comparable#== when #<=> returns nor nil neither an Integer raises an ArgumentError"
5
- end
@@ -1,3 +0,0 @@
1
- opal_filter "Complex" do
2
- fails "Complex#coerce returns an array containing other as Complex and self when other is a Numeric which responds to #real? with true"
3
- end
@@ -1,94 +0,0 @@
1
- opal_filter "Date" do
2
- fails "Date#>> returns the day of the reform if date falls within calendar reform"
3
- fails "Date#ajd determines the Astronomical Julian day"
4
- fails "Date#amjd determines the Astronomical Modified Julian day"
5
- fails "Date#civil creates a Date for different calendar reform dates"
6
- fails "Date#civil doesn't create dates for invalid arguments"
7
- fails "Date#commercial creates a Date for Julian Day Number day 0 by default"
8
- fails "Date#commercial creates a Date for the correct day given the year, week and day number" # NoMethodError: undefined method `commercial' for Date
9
- fails "Date#commercial creates a Date for the monday in the year and week given" # NoMethodError: undefined method `commercial' for Date
10
- fails "Date#commercial creates only Date objects for valid weeks"
11
- fails "Date#cwyear determines the commercial year"
12
- fails "Date#day_fraction determines the day fraction"
13
- fails "Date#downto creates earlier dates when passed a negative step"
14
- fails "Date#england converts a date object into another with the English calendar reform"
15
- fails "Date#gregorian converts a date object into another with the Gregorian calendar"
16
- fails "Date#gregorian? marks a day after the calendar reform as Julian"
17
- fails "Date#gregorian? marks a day before the calendar reform as Julian"
18
- fails "Date#hash returns the same value for equal dates"
19
- fails "Date#italy converts a date object into another with the Italian calendar reform"
20
- fails "Date#julian converts a date object into another with the Julian calendar"
21
- fails "Date#julian? marks a day before the calendar reform as Julian"
22
- fails "Date#ld determines the Modified Julian day"
23
- fails "Date#mday determines the day of the month"
24
- fails "Date#mjd determines the Modified Julian day"
25
- fails "Date#mon determines the month"
26
- fails "Date#new_start converts a date object into another with a new calendar reform"
27
- fails "Date#next_year returns the day of the reform if date falls within calendar reform"
28
- fails "Date#parse parses a day name into a Date object"
29
- fails "Date#parse parses a month day into a Date object"
30
- fails "Date#parse parses a month name into a Date object"
31
- fails "Date#prev_year returns the day of the reform if date falls within calendar reform"
32
- fails "Date#step steps backward in time"
33
- fails "Date#step steps forward in time"
34
- fails "Date#strftime should be able to print the commercial year with leading zeroes"
35
- fails "Date#strftime should be able to print the commercial year with only two digits"
36
- fails "Date#strftime should be able to print the julian day with leading zeroes"
37
- fails "Date#strftime should be able to show a full notation"
38
- fails "Date#strftime should be able to show the commercial week day"
39
- fails "Date#strftime should be able to show the commercial week"
40
- fails "Date#strftime should be able to show the number of seconds since the unix epoch"
41
- fails "Date#strftime should be able to show the timezone of the date with a : separator"
42
- fails "Date#strftime should be able to show the timezone with a : separator"
43
- fails "Date#strftime should be able to show the week number with the week starting on Sunday (%U) and Monday (%W)"
44
- fails "Date#strftime shows the number of milliseconds since epoch"
45
- fails "Date#strptime parses a century"
46
- fails "Date#strptime parses a commercial week day"
47
- fails "Date#strptime parses a commercial week"
48
- fails "Date#strptime parses a commercial year with leading zeroes"
49
- fails "Date#strptime parses a commercial year with only two digits"
50
- fails "Date#strptime parses a date given MM/DD/YY"
51
- fails "Date#strptime parses a date given as YYYY-MM-DD"
52
- fails "Date#strptime parses a date given in full notation"
53
- fails "Date#strptime parses a date with slashes"
54
- fails "Date#strptime parses a full date"
55
- fails "Date#strptime parses a full day name"
56
- fails "Date#strptime parses a full month name"
57
- fails "Date#strptime parses a month day with leading spaces"
58
- fails "Date#strptime parses a month day with leading zeroes"
59
- fails "Date#strptime parses a month with leading zeroes"
60
- fails "Date#strptime parses a short day name"
61
- fails "Date#strptime parses a short month name"
62
- fails "Date#strptime parses a week day"
63
- fails "Date#strptime parses a week number for a week starting on Monday"
64
- fails "Date#strptime parses a week number for a week starting on Sunday"
65
- fails "Date#strptime parses a year day with leading zeroes"
66
- fails "Date#strptime parses a year in YY format"
67
- fails "Date#strptime parses a year in YYYY format"
68
- fails "Date#strptime returns January 1, 4713 BCE when given no arguments"
69
- fails "Date#strptime uses the default format when not given a date format"
70
- fails "Date#upto returns future dates for the default step value"
71
- fails "Date#valid_civil? handles negative months and days"
72
- fails "Date#valid_civil? returns false if it is not a valid civil date"
73
- fails "Date#valid_civil? returns true if it is a valid civil date"
74
- fails "Date#valid_commercial? handles negative week and day numbers"
75
- fails "Date#valid_commercial? returns false it is not a valid commercial date"
76
- fails "Date#valid_commercial? returns true if it is a valid commercial date"
77
- fails "Date#valid_date? handles negative months and days"
78
- fails "Date#valid_date? returns false if it is not a valid civil date"
79
- fails "Date#valid_date? returns true if it is a valid civil date"
80
- fails "Date#yday determines the year"
81
- fails "Date.jd constructs a Date object if passed a Julian day"
82
- fails "Date.jd constructs a Date object if passed a negative number"
83
- fails "Date.jd returns a Date object representing Julian day 0 (-4712-01-01) if no arguments passed"
84
- fails "Date.julian_leap? determines whether a year is a leap year in the Julian calendar"
85
- fails "Date.julian_leap? determines whether a year is not a leap year in the Julian calendar"
86
- fails "Date.new creates a Date for different calendar reform dates"
87
- fails "Date.new doesn't create dates for invalid arguments"
88
- fails "Date.ordinal constructs a Date object from an ordinal date"
89
- fails "Date.valid_jd? returns false if passed nil"
90
- fails "Date.valid_jd? returns true if passed any value other than nil"
91
- fails "Date.valid_jd? returns true if passed false"
92
- fails "Date.valid_ordinal? determines if the date is a valid ordinal date"
93
- fails "Date.valid_ordinal? handles negative day numbers"
94
- end