opal-wedge 0.9.0.dev
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +14 -0
- data/.gitmodules +7 -0
- data/.inch.yml +19 -0
- data/.jshintrc +48 -0
- data/.rspec +3 -0
- data/.spectator +2 -0
- data/.spectator-mspec +3 -0
- data/.travis.yml +60 -0
- data/.yardopts +6 -0
- data/CHANGELOG.md +571 -0
- data/CODE_OF_CONDUCT.md +15 -0
- data/CONTRIBUTING.md +192 -0
- data/Gemfile +26 -0
- data/Guardfile +77 -0
- data/LICENSE +19 -0
- data/README.md +167 -0
- data/Rakefile +15 -0
- data/benchmark/benchmarks +103 -0
- data/benchmark/bm_array_intersection_numbers.rb +7 -0
- data/benchmark/bm_array_intersection_objects.rb +7 -0
- data/benchmark/bm_array_intersection_strings.rb +7 -0
- data/benchmark/bm_array_minus_numbers.rb +7 -0
- data/benchmark/bm_array_minus_objects.rb +7 -0
- data/benchmark/bm_array_minus_strings.rb +7 -0
- data/benchmark/bm_array_union_numbers.rb +7 -0
- data/benchmark/bm_array_union_objects.rb +7 -0
- data/benchmark/bm_array_union_strings.rb +7 -0
- data/benchmark/bm_array_uniq_bang_numbers.rb +5 -0
- data/benchmark/bm_array_uniq_bang_objects.rb +5 -0
- data/benchmark/bm_array_uniq_bang_strings.rb +5 -0
- data/benchmark/bm_array_uniq_numbers.rb +5 -0
- data/benchmark/bm_array_uniq_objects.rb +5 -0
- data/benchmark/bm_array_uniq_strings.rb +5 -0
- data/benchmark/bm_dispatch_bind_table.rb +57 -0
- data/benchmark/bm_dispatch_code_gen.rb +65 -0
- data/benchmark/bm_dispatch_code_gen_if.rb +64 -0
- data/benchmark/bm_dispatch_hardcoded.rb +44 -0
- data/benchmark/bm_dispatch_send.rb +38 -0
- data/benchmark/bm_dispatch_send_table.rb +57 -0
- data/benchmark/bm_hash_assoc_object.rb +11 -0
- data/benchmark/bm_hash_assoc_string.rb +9 -0
- data/benchmark/bm_hash_clone_object.rb +9 -0
- data/benchmark/bm_hash_clone_string.rb +9 -0
- data/benchmark/bm_hash_delete_object.rb +11 -0
- data/benchmark/bm_hash_delete_string.rb +9 -0
- data/benchmark/bm_hash_each_key_object.rb +9 -0
- data/benchmark/bm_hash_each_key_string.rb +9 -0
- data/benchmark/bm_hash_each_object.rb +9 -0
- data/benchmark/bm_hash_each_string.rb +9 -0
- data/benchmark/bm_hash_each_value_object.rb +9 -0
- data/benchmark/bm_hash_each_value_string.rb +9 -0
- data/benchmark/bm_hash_element_reference_object.rb +11 -0
- data/benchmark/bm_hash_element_reference_string.rb +9 -0
- data/benchmark/bm_hash_element_set_object.rb +5 -0
- data/benchmark/bm_hash_element_set_string.rb +5 -0
- data/benchmark/bm_hash_equal_value_object.rb +14 -0
- data/benchmark/bm_hash_equal_value_string.rb +11 -0
- data/benchmark/bm_hash_fetch_object.rb +11 -0
- data/benchmark/bm_hash_fetch_string.rb +9 -0
- data/benchmark/bm_hash_flatten_object.rb +9 -0
- data/benchmark/bm_hash_flatten_string.rb +9 -0
- data/benchmark/bm_hash_has_key_object.rb +11 -0
- data/benchmark/bm_hash_has_key_string.rb +9 -0
- data/benchmark/bm_hash_has_value_object.rb +9 -0
- data/benchmark/bm_hash_has_value_string.rb +9 -0
- data/benchmark/bm_hash_hash_object.rb +9 -0
- data/benchmark/bm_hash_hash_string.rb +9 -0
- data/benchmark/bm_hash_inspect_object.rb +9 -0
- data/benchmark/bm_hash_inspect_string.rb +9 -0
- data/benchmark/bm_hash_invert_object.rb +9 -0
- data/benchmark/bm_hash_invert_string.rb +9 -0
- data/benchmark/bm_hash_keep_if_object.rb +9 -0
- data/benchmark/bm_hash_keep_if_string.rb +9 -0
- data/benchmark/bm_hash_key_object.rb +9 -0
- data/benchmark/bm_hash_key_string.rb +9 -0
- data/benchmark/bm_hash_keys_object.rb +9 -0
- data/benchmark/bm_hash_keys_string.rb +9 -0
- data/benchmark/bm_hash_literal_mixed_large.rb +3 -0
- data/benchmark/bm_hash_literal_mixed_small.rb +3 -0
- data/benchmark/bm_hash_literal_object_large.rb +4 -0
- data/benchmark/bm_hash_literal_object_small.rb +3 -0
- data/benchmark/bm_hash_literal_string_large.rb +4 -0
- data/benchmark/bm_hash_literal_string_small.rb +3 -0
- data/benchmark/bm_hash_merge_object.rb +22 -0
- data/benchmark/bm_hash_merge_string.rb +18 -0
- data/benchmark/bm_hash_rassoc_object.rb +9 -0
- data/benchmark/bm_hash_rassoc_string.rb +9 -0
- data/benchmark/bm_hash_rehash_object.rb +9 -0
- data/benchmark/bm_hash_rehash_string.rb +9 -0
- data/benchmark/bm_hash_reject_bang_object.rb +9 -0
- data/benchmark/bm_hash_reject_bang_string.rb +9 -0
- data/benchmark/bm_hash_reject_object.rb +9 -0
- data/benchmark/bm_hash_reject_string.rb +9 -0
- data/benchmark/bm_hash_replace_object.rb +18 -0
- data/benchmark/bm_hash_replace_string.rb +14 -0
- data/benchmark/bm_hash_select_bang_object.rb +9 -0
- data/benchmark/bm_hash_select_bang_string.rb +9 -0
- data/benchmark/bm_hash_select_object.rb +9 -0
- data/benchmark/bm_hash_select_string.rb +9 -0
- data/benchmark/bm_hash_shift_object.rb +10 -0
- data/benchmark/bm_hash_shift_string.rb +10 -0
- data/benchmark/bm_hash_to_a_object.rb +9 -0
- data/benchmark/bm_hash_to_a_string.rb +9 -0
- data/benchmark/bm_hash_to_h_object.rb +10 -0
- data/benchmark/bm_hash_to_h_string.rb +10 -0
- data/benchmark/bm_hash_values_object.rb +9 -0
- data/benchmark/bm_hash_values_string.rb +9 -0
- data/benchmark/run.rb +37 -0
- data/bin/opal +27 -0
- data/bin/opal-build +77 -0
- data/bin/opal-mspec +10 -0
- data/bin/opal-repl +72 -0
- data/config.ru +14 -0
- data/docs/compiler_directives.md +127 -0
- data/examples/rack/.gitignore +1 -0
- data/examples/rack/Gemfile +3 -0
- data/examples/rack/app/application.rb +13 -0
- data/examples/rack/app/user.rb +22 -0
- data/examples/rack/config.ru +20 -0
- data/examples/rack/index.html.erb +10 -0
- data/examples/sinatra/Gemfile +5 -0
- data/examples/sinatra/app/application.rb +7 -0
- data/examples/sinatra/config.ru +38 -0
- data/lib/mspec/opal/main.rb.erb +9 -0
- data/lib/mspec/opal/new.html.erb +1 -0
- data/lib/mspec/opal/rake_task.rb +248 -0
- data/lib/mspec/opal/runner.rb +281 -0
- data/lib/mspec/opal/special_calls.rb +44 -0
- data/lib/mspec/opal/sprockets.js +57 -0
- data/lib/opal-wedge.rb +4 -0
- data/lib/opal.rb +11 -0
- data/lib/opal/builder.rb +161 -0
- data/lib/opal/builder_processors.rb +149 -0
- data/lib/opal/cli.rb +162 -0
- data/lib/opal/cli_options.rb +158 -0
- data/lib/opal/cli_runners.rb +11 -0
- data/lib/opal/cli_runners/apple_script.rb +65 -0
- data/lib/opal/cli_runners/nodejs.rb +63 -0
- data/lib/opal/cli_runners/phantom.js +44 -0
- data/lib/opal/cli_runners/phantomjs.rb +28 -0
- data/lib/opal/cli_runners/server.rb +56 -0
- data/lib/opal/compiler.rb +381 -0
- data/lib/opal/config.rb +48 -0
- data/lib/opal/erb.rb +84 -0
- data/lib/opal/fragment.rb +53 -0
- data/lib/opal/hike_path_finder.rb +18 -0
- data/lib/opal/nodes.rb +26 -0
- data/lib/opal/nodes/arglist.rb +56 -0
- data/lib/opal/nodes/array.rb +54 -0
- data/lib/opal/nodes/base.rb +151 -0
- data/lib/opal/nodes/call.rb +290 -0
- data/lib/opal/nodes/call_special.rb +252 -0
- data/lib/opal/nodes/case.rb +96 -0
- data/lib/opal/nodes/class.rb +42 -0
- data/lib/opal/nodes/constants.rb +78 -0
- data/lib/opal/nodes/def.rb +281 -0
- data/lib/opal/nodes/defined.rb +113 -0
- data/lib/opal/nodes/definitions.rb +168 -0
- data/lib/opal/nodes/for.rb +48 -0
- data/lib/opal/nodes/hash.rb +67 -0
- data/lib/opal/nodes/helpers.rb +116 -0
- data/lib/opal/nodes/if.rb +81 -0
- data/lib/opal/nodes/iter.rb +136 -0
- data/lib/opal/nodes/literal.rb +247 -0
- data/lib/opal/nodes/logic.rb +217 -0
- data/lib/opal/nodes/masgn.rb +62 -0
- data/lib/opal/nodes/module.rb +45 -0
- data/lib/opal/nodes/rescue.rb +143 -0
- data/lib/opal/nodes/runtime_helpers.rb +45 -0
- data/lib/opal/nodes/scope.rb +281 -0
- data/lib/opal/nodes/singleton_class.rb +26 -0
- data/lib/opal/nodes/super.rb +97 -0
- data/lib/opal/nodes/top.rb +103 -0
- data/lib/opal/nodes/variables.rb +191 -0
- data/lib/opal/nodes/while.rb +65 -0
- data/lib/opal/nodes/yield.rb +95 -0
- data/lib/opal/parser.rb +742 -0
- data/lib/opal/parser/grammar.rb +5723 -0
- data/lib/opal/parser/grammar.y +1787 -0
- data/lib/opal/parser/keywords.rb +66 -0
- data/lib/opal/parser/lexer.rb +1260 -0
- data/lib/opal/parser/parser_scope.rb +28 -0
- data/lib/opal/parser/sexp.rb +81 -0
- data/lib/opal/path_reader.rb +35 -0
- data/lib/opal/paths.rb +55 -0
- data/lib/opal/regexp_anchors.rb +5 -0
- data/lib/opal/source_map.rb +70 -0
- data/lib/opal/sprockets.rb +3 -0
- data/lib/opal/sprockets/cache_key_fix.rb +17 -0
- data/lib/opal/sprockets/environment.rb +31 -0
- data/lib/opal/sprockets/erb.rb +23 -0
- data/lib/opal/sprockets/path_reader.rb +36 -0
- data/lib/opal/sprockets/processor.rb +167 -0
- data/lib/opal/sprockets/server.rb +160 -0
- data/lib/opal/sprockets/source_map_header_patch.rb +41 -0
- data/lib/opal/sprockets/source_map_server.rb +115 -0
- data/lib/opal/util.rb +69 -0
- data/lib/opal/version.rb +5 -0
- data/lib/tilt/opal.rb +54 -0
- data/opal.gemspec +37 -0
- data/opal/README.md +6 -0
- data/opal/corelib/array.rb +2073 -0
- data/opal/corelib/array/inheritance.rb +127 -0
- data/opal/corelib/basic_object.rb +82 -0
- data/opal/corelib/boolean.rb +47 -0
- data/opal/corelib/class.rb +55 -0
- data/opal/corelib/comparable.rb +57 -0
- data/opal/corelib/complex.rb +3 -0
- data/opal/corelib/dir.rb +20 -0
- data/opal/corelib/enumerable.rb +1138 -0
- data/opal/corelib/enumerator.rb +426 -0
- data/opal/corelib/error.rb +77 -0
- data/opal/corelib/file.rb +59 -0
- data/opal/corelib/hash.rb +951 -0
- data/opal/corelib/helpers.rb +102 -0
- data/opal/corelib/io.rb +73 -0
- data/opal/corelib/kernel.rb +1124 -0
- data/opal/corelib/main.rb +7 -0
- data/opal/corelib/match_data.rb +128 -0
- data/opal/corelib/method.rb +62 -0
- data/opal/corelib/module.rb +553 -0
- data/opal/corelib/nil_class.rb +57 -0
- data/opal/corelib/numeric.rb +564 -0
- data/opal/corelib/proc.rb +105 -0
- data/opal/corelib/process.rb +27 -0
- data/opal/corelib/range.rb +116 -0
- data/opal/corelib/rational.rb +3 -0
- data/opal/corelib/regexp.rb +203 -0
- data/opal/corelib/runtime.js +1637 -0
- data/opal/corelib/string.rb +1762 -0
- data/opal/corelib/string/inheritance.rb +117 -0
- data/opal/corelib/struct.rb +159 -0
- data/opal/corelib/time.rb +746 -0
- data/opal/corelib/variables.rb +28 -0
- data/opal/opal.rb +33 -0
- data/spec/README.md +8 -0
- data/spec/filters/bugs/array.rb +77 -0
- data/spec/filters/bugs/basicobject.rb +33 -0
- data/spec/filters/bugs/class.rb +15 -0
- data/spec/filters/bugs/comparable.rb +4 -0
- data/spec/filters/bugs/date.rb +173 -0
- data/spec/filters/bugs/enumerable.rb +62 -0
- data/spec/filters/bugs/enumerator.rb +45 -0
- data/spec/filters/bugs/exception.rb +84 -0
- data/spec/filters/bugs/fixnum.rb +35 -0
- data/spec/filters/bugs/float.rb +100 -0
- data/spec/filters/bugs/hash.rb +17 -0
- data/spec/filters/bugs/integer.rb +63 -0
- data/spec/filters/bugs/kernel.rb +395 -0
- data/spec/filters/bugs/language.rb +246 -0
- data/spec/filters/bugs/math.rb +89 -0
- data/spec/filters/bugs/method.rb +5 -0
- data/spec/filters/bugs/module.rb +372 -0
- data/spec/filters/bugs/nil.rb +7 -0
- data/spec/filters/bugs/numeric.rb +123 -0
- data/spec/filters/bugs/proc.rb +65 -0
- data/spec/filters/bugs/range.rb +148 -0
- data/spec/filters/bugs/regexp.rb +252 -0
- data/spec/filters/bugs/set.rb +51 -0
- data/spec/filters/bugs/singleton.rb +6 -0
- data/spec/filters/bugs/string.rb +99 -0
- data/spec/filters/bugs/strscan.rb +106 -0
- data/spec/filters/bugs/struct.rb +22 -0
- data/spec/filters/bugs/time.rb +28 -0
- data/spec/filters/bugs/unboundmethod.rb +22 -0
- data/spec/filters/unsupported/array.rb +176 -0
- data/spec/filters/unsupported/basicobject.rb +12 -0
- data/spec/filters/unsupported/class.rb +4 -0
- data/spec/filters/unsupported/delegator.rb +5 -0
- data/spec/filters/unsupported/enumerable.rb +8 -0
- data/spec/filters/unsupported/enumerator.rb +13 -0
- data/spec/filters/unsupported/fixnum.rb +15 -0
- data/spec/filters/unsupported/float.rb +6 -0
- data/spec/filters/unsupported/hash.rb +55 -0
- data/spec/filters/unsupported/integer.rb +3 -0
- data/spec/filters/unsupported/kernel.rb +22 -0
- data/spec/filters/unsupported/language.rb +31 -0
- data/spec/filters/unsupported/matchdata.rb +33 -0
- data/spec/filters/unsupported/math.rb +3 -0
- data/spec/filters/unsupported/module.rb +36 -0
- data/spec/filters/unsupported/pathname.rb +3 -0
- data/spec/filters/unsupported/regexp.rb +94 -0
- data/spec/filters/unsupported/set.rb +4 -0
- data/spec/filters/unsupported/singleton.rb +6 -0
- data/spec/filters/unsupported/string.rb +538 -0
- data/spec/filters/unsupported/struct.rb +3 -0
- data/spec/filters/unsupported/time.rb +208 -0
- data/spec/lib/builder_processors_spec.rb +27 -0
- data/spec/lib/builder_spec.rb +72 -0
- data/spec/lib/cli_spec.rb +150 -0
- data/spec/lib/compiler/pre_processed_conditionals_spec.rb +87 -0
- data/spec/lib/compiler_spec.rb +131 -0
- data/spec/lib/dependency_resolver_spec.rb +40 -0
- data/spec/lib/fixtures/complex_sprockets.js.rb.erb +4 -0
- data/spec/lib/fixtures/file_with_directives.js +2 -0
- data/spec/lib/fixtures/jst_file.js.jst +1 -0
- data/spec/lib/fixtures/no_requires.rb +1 -0
- data/spec/lib/fixtures/opal_file.rb +2 -0
- data/spec/lib/fixtures/require_tree_test.rb +3 -0
- data/spec/lib/fixtures/required_file.js +1 -0
- data/spec/lib/fixtures/required_tree_test/required_file1.rb +1 -0
- data/spec/lib/fixtures/required_tree_test/required_file2.rb +1 -0
- data/spec/lib/fixtures/requires.rb +7 -0
- data/spec/lib/fixtures/source_map.rb +1 -0
- data/spec/lib/fixtures/source_map/subfolder/other_file.rb +1 -0
- data/spec/lib/fixtures/sprockets_file.js.rb +3 -0
- data/spec/lib/fixtures/sprockets_require_tree_test.rb +3 -0
- data/spec/lib/hike_path_finder_spec.rb +23 -0
- data/spec/lib/lexer_spec.rb +110 -0
- data/spec/lib/parser/alias_spec.rb +26 -0
- data/spec/lib/parser/and_spec.rb +13 -0
- data/spec/lib/parser/attrasgn_spec.rb +28 -0
- data/spec/lib/parser/begin_spec.rb +42 -0
- data/spec/lib/parser/block_spec.rb +12 -0
- data/spec/lib/parser/break_spec.rb +17 -0
- data/spec/lib/parser/call_spec.rb +165 -0
- data/spec/lib/parser/class_spec.rb +35 -0
- data/spec/lib/parser/comments_spec.rb +11 -0
- data/spec/lib/parser/def_spec.rb +80 -0
- data/spec/lib/parser/if_spec.rb +26 -0
- data/spec/lib/parser/iter_spec.rb +59 -0
- data/spec/lib/parser/lambda_spec.rb +64 -0
- data/spec/lib/parser/literal_spec.rb +118 -0
- data/spec/lib/parser/masgn_spec.rb +37 -0
- data/spec/lib/parser/module_spec.rb +27 -0
- data/spec/lib/parser/not_spec.rb +21 -0
- data/spec/lib/parser/op_asgn1_spec.rb +23 -0
- data/spec/lib/parser/op_asgn2_spec.rb +23 -0
- data/spec/lib/parser/or_spec.rb +13 -0
- data/spec/lib/parser/return_spec.rb +17 -0
- data/spec/lib/parser/sclass_spec.rb +21 -0
- data/spec/lib/parser/string_spec.rb +276 -0
- data/spec/lib/parser/super_spec.rb +20 -0
- data/spec/lib/parser/unary_spec.rb +48 -0
- data/spec/lib/parser/undef_spec.rb +15 -0
- data/spec/lib/parser/unless_spec.rb +13 -0
- data/spec/lib/parser/variables_spec.rb +92 -0
- data/spec/lib/parser/while_spec.rb +15 -0
- data/spec/lib/parser/yield_spec.rb +20 -0
- data/spec/lib/path_reader_spec.rb +36 -0
- data/spec/lib/shared/path_finder_shared.rb +19 -0
- data/spec/lib/shared/path_reader_shared.rb +31 -0
- data/spec/lib/spec_helper.rb +9 -0
- data/spec/lib/sprockets/erb_spec.rb +38 -0
- data/spec/lib/sprockets/path_reader_spec.rb +41 -0
- data/spec/lib/sprockets/processor_spec.rb +67 -0
- data/spec/lib/sprockets/server_spec.rb +102 -0
- data/spec/lib/tilt/opal_spec.rb +37 -0
- data/spec/opal/compiler/irb_spec.rb +44 -0
- data/spec/opal/core/array/intersection_spec.rb +38 -0
- data/spec/opal/core/array/minus_spec.rb +38 -0
- data/spec/opal/core/array/select_spec.rb +14 -0
- data/spec/opal/core/array/set_range_to_array_spec.rb +7 -0
- data/spec/opal/core/array/union_spec.rb +38 -0
- data/spec/opal/core/array/uniq_spec.rb +49 -0
- data/spec/opal/core/date_spec.rb +177 -0
- data/spec/opal/core/enumerable/all_break_spec.rb +5 -0
- data/spec/opal/core/enumerable/any_break_spec.rb +5 -0
- data/spec/opal/core/enumerable/collect_break_spec.rb +13 -0
- data/spec/opal/core/enumerable/count_break_spec.rb +5 -0
- data/spec/opal/core/enumerable/detect_break_spec.rb +5 -0
- data/spec/opal/core/enumerable/drop_while_break_spec.rb +5 -0
- data/spec/opal/core/enumerable/each_slice_break.rb +6 -0
- data/spec/opal/core/enumerable/each_with_index_break_spec.rb +5 -0
- data/spec/opal/core/enumerable/each_with_object_break_spec.rb +5 -0
- data/spec/opal/core/enumerable/find_all_break_spec.rb +5 -0
- data/spec/opal/core/enumerable/find_index_break_spec.rb +5 -0
- data/spec/opal/core/enumerable/grep_break_spec.rb +5 -0
- data/spec/opal/core/enumerable/max_break_spec.rb +5 -0
- data/spec/opal/core/enumerable/max_by_break_spec.rb +5 -0
- data/spec/opal/core/enumerable/min_break_spec.rb +5 -0
- data/spec/opal/core/enumerable/min_by_break_spec.rb +5 -0
- data/spec/opal/core/enumerable/none_break_spec.rb +5 -0
- data/spec/opal/core/enumerable/one_break_spec.rb +5 -0
- data/spec/opal/core/enumerable/reduce_break_spec.rb +5 -0
- data/spec/opal/core/enumerable/take_while_break_spec.rb +5 -0
- data/spec/opal/core/exception_spec.rb +13 -0
- data/spec/opal/core/fixtures/class.rb +124 -0
- data/spec/opal/core/fixtures/class_variables.rb +0 -0
- data/spec/opal/core/fixtures/constants.rb +33 -0
- data/spec/opal/core/fixtures/require_tree_files/file 1.rb +1 -0
- data/spec/opal/core/fixtures/require_tree_files/file 2.rb +1 -0
- data/spec/opal/core/fixtures/require_tree_files/file 3.rb +1 -0
- data/spec/opal/core/fixtures/require_tree_files/file 4.rb +1 -0
- data/spec/opal/core/fixtures/require_tree_files/file 5.rb +1 -0
- data/spec/opal/core/fixtures/require_tree_files/nested/nested 1.rb +1 -0
- data/spec/opal/core/fixtures/require_tree_files/nested/nested 2.rb +1 -0
- data/spec/opal/core/fixtures/require_tree_files/other/other 1.rb +1 -0
- data/spec/opal/core/fixtures/require_tree_with_dot/file 1.rb +1 -0
- data/spec/opal/core/fixtures/require_tree_with_dot/file 2.rb +1 -0
- data/spec/opal/core/fixtures/require_tree_with_dot/file 3.rb +1 -0
- data/spec/opal/core/fixtures/require_tree_with_dot/index.rb +3 -0
- data/spec/opal/core/hash/has_value_spec.rb +13 -0
- data/spec/opal/core/hash/internals_spec.rb +332 -0
- data/spec/opal/core/kernel/Array_spec.rb +10 -0
- data/spec/opal/core/kernel/block_given_spec.rb +30 -0
- data/spec/opal/core/kernel/class_spec.rb +6 -0
- data/spec/opal/core/kernel/define_singleton_method_spec.rb +21 -0
- data/spec/opal/core/kernel/equal_value_spec.rb +12 -0
- data/spec/opal/core/kernel/extend_spec.rb +21 -0
- data/spec/opal/core/kernel/format_spec.rb +122 -0
- data/spec/opal/core/kernel/freeze_spec.rb +15 -0
- data/spec/opal/core/kernel/instance_eval_spec.rb +28 -0
- data/spec/opal/core/kernel/instance_variable_defined_spec.rb +15 -0
- data/spec/opal/core/kernel/instance_variable_get_spec.rb +14 -0
- data/spec/opal/core/kernel/instance_variable_set_spec.rb +10 -0
- data/spec/opal/core/kernel/loop_spec.rb +23 -0
- data/spec/opal/core/kernel/match_spec.rb +5 -0
- data/spec/opal/core/kernel/method_spec.rb +31 -0
- data/spec/opal/core/kernel/methods_spec.rb +25 -0
- data/spec/opal/core/kernel/nil_spec.rb +7 -0
- data/spec/opal/core/kernel/p_spec.rb +15 -0
- data/spec/opal/core/kernel/printf_spec.rb +11 -0
- data/spec/opal/core/kernel/proc_spec.rb +13 -0
- data/spec/opal/core/kernel/rand_spec.rb +23 -0
- data/spec/opal/core/kernel/require_tree_spec.rb +18 -0
- data/spec/opal/core/kernel/respond_to_spec.rb +41 -0
- data/spec/opal/core/kernel/send_spec.rb +56 -0
- data/spec/opal/core/kernel/sprintf_spec.rb +5 -0
- data/spec/opal/core/language/block_spec.rb +538 -0
- data/spec/opal/core/language/fixtures/array.rb +11 -0
- data/spec/opal/core/language/fixtures/block.rb +57 -0
- data/spec/opal/core/language/fixtures/break.rb +240 -0
- data/spec/opal/core/language/fixtures/ensure.rb +72 -0
- data/spec/opal/core/language/fixtures/literal_lambda.rb +7 -0
- data/spec/opal/core/language/fixtures/metaclass.rb +33 -0
- data/spec/opal/core/language/fixtures/module.rb +24 -0
- data/spec/opal/core/language/fixtures/next.rb +128 -0
- data/spec/opal/core/language/fixtures/return.rb +118 -0
- data/spec/opal/core/language/fixtures/send.rb +110 -0
- data/spec/opal/core/language/fixtures/send_1.9.rb +22 -0
- data/spec/opal/core/language/fixtures/super.rb +308 -0
- data/spec/opal/core/language/fixtures/variables.rb +58 -0
- data/spec/opal/core/language/fixtures/yield.rb +28 -0
- data/spec/opal/core/language/predefined_spec.rb +138 -0
- data/spec/opal/core/language/proc_spec.rb +263 -0
- data/spec/opal/core/language/regexp_spec.rb +20 -0
- data/spec/opal/core/language/send_spec.rb +225 -0
- data/spec/opal/core/language/string_spec.rb +44 -0
- data/spec/opal/core/language/variables_spec.rb +1366 -0
- data/spec/opal/core/language/versions/array_1.9.rb +39 -0
- data/spec/opal/core/language/versions/block_1.9.rb +0 -0
- data/spec/opal/core/language/versions/break_1.9.rb +0 -0
- data/spec/opal/core/language/versions/case_1.9.rb +20 -0
- data/spec/opal/core/language/versions/def_2_0_spec.rb +62 -0
- data/spec/opal/core/language/versions/hash_1.9.rb +18 -0
- data/spec/opal/core/language/versions/literal_lambda_1.9.rb +143 -0
- data/spec/opal/core/language/versions/not_1.9.rb +22 -0
- data/spec/opal/core/language/versions/send_1.9.rb +241 -0
- data/spec/opal/core/language/versions/symbol_1.9.rb +15 -0
- data/spec/opal/core/language/versions/variables_1.9.rb +8 -0
- data/spec/opal/core/language_spec.rb +23 -0
- data/spec/opal/core/method/to_proc_spec.rb +28 -0
- data/spec/opal/core/module/alias_method_spec.rb +28 -0
- data/spec/opal/core/module/ancestors_spec.rb +11 -0
- data/spec/opal/core/module/append_features_spec.rb +14 -0
- data/spec/opal/core/module/attr_accessor_spec.rb +26 -0
- data/spec/opal/core/module/const_defined_spec.rb +85 -0
- data/spec/opal/core/module/const_get_spec.rb +85 -0
- data/spec/opal/core/module/const_missing_spec.rb +17 -0
- data/spec/opal/core/module/const_set_spec.rb +64 -0
- data/spec/opal/core/module/constants_spec.rb +49 -0
- data/spec/opal/core/module/fixtures/classes.rb +434 -0
- data/spec/opal/core/module/method_defined_spec.rb +48 -0
- data/spec/opal/core/module/module_function_spec.rb +25 -0
- data/spec/opal/core/module/name_spec.rb +52 -0
- data/spec/opal/core/module/public_method_defined_spec.rb +18 -0
- data/spec/opal/core/module/remove_const_spec.rb +22 -0
- data/spec/opal/core/module/undef_method_spec.rb +66 -0
- data/spec/opal/core/numeric/bit_and_spec.rb +7 -0
- data/spec/opal/core/numeric/bit_or_spec.rb +8 -0
- data/spec/opal/core/numeric/bit_xor_spec.rb +6 -0
- data/spec/opal/core/numeric/ceil_spec.rb +8 -0
- data/spec/opal/core/numeric/chr_spec.rb +8 -0
- data/spec/opal/core/numeric/comparison_spec.rb +24 -0
- data/spec/opal/core/numeric/complement_spec.rb +8 -0
- data/spec/opal/core/numeric/divide_spec.rb +10 -0
- data/spec/opal/core/numeric/eql_spec.rb +9 -0
- data/spec/opal/core/numeric/exponent_spec.rb +33 -0
- data/spec/opal/core/numeric/floor_spec.rb +8 -0
- data/spec/opal/core/numeric/gt_spec.rb +11 -0
- data/spec/opal/core/numeric/gte_spec.rb +12 -0
- data/spec/opal/core/numeric/integer_spec.rb +9 -0
- data/spec/opal/core/numeric/left_shift_spec.rb +21 -0
- data/spec/opal/core/numeric/lt_spec.rb +11 -0
- data/spec/opal/core/numeric/lte_spec.rb +12 -0
- data/spec/opal/core/numeric/minus_spec.rb +8 -0
- data/spec/opal/core/numeric/modulo_spec.rb +19 -0
- data/spec/opal/core/numeric/multiply_spec.rb +9 -0
- data/spec/opal/core/numeric/next_spec.rb +9 -0
- data/spec/opal/core/numeric/ord_spec.rb +9 -0
- data/spec/opal/core/numeric/plus_spec.rb +8 -0
- data/spec/opal/core/numeric/pred_spec.rb +7 -0
- data/spec/opal/core/numeric/right_shift_spec.rb +25 -0
- data/spec/opal/core/numeric/step_spec.rb +11 -0
- data/spec/opal/core/numeric/succ_spec.rb +9 -0
- data/spec/opal/core/numeric/times_spec.rb +36 -0
- data/spec/opal/core/numeric/to_f_spec.rb +7 -0
- data/spec/opal/core/numeric/to_i_spec.rb +7 -0
- data/spec/opal/core/numeric/to_json_spec.rb +8 -0
- data/spec/opal/core/numeric/to_s_spec.rb +26 -0
- data/spec/opal/core/numeric/uminus_spec.rb +9 -0
- data/spec/opal/core/numeric/upto_spec.rb +19 -0
- data/spec/opal/core/numeric/zero_spec.rb +7 -0
- data/spec/opal/core/object_id_spec.rb +56 -0
- data/spec/opal/core/proc/call_spec.rb +21 -0
- data/spec/opal/core/proc/element_reference_spec.rb +21 -0
- data/spec/opal/core/proc/proc_tricks_spec.rb +7 -0
- data/spec/opal/core/runtime/begin_spec.rb +39 -0
- data/spec/opal/core/runtime/block_send_spec.rb +28 -0
- data/spec/opal/core/runtime/block_spec.rb +23 -0
- data/spec/opal/core/runtime/bridged_classes_spec.rb +111 -0
- data/spec/opal/core/runtime/constants_spec.rb +13 -0
- data/spec/opal/core/runtime/donate_spec.rb +53 -0
- data/spec/opal/core/runtime/eval_spec.rb +5 -0
- data/spec/opal/core/runtime/main_methods_spec.rb +27 -0
- data/spec/opal/core/runtime/method_missing_spec.rb +62 -0
- data/spec/opal/core/runtime/method_spec.rb +31 -0
- data/spec/opal/core/runtime/operator_call_spec.rb +13 -0
- data/spec/opal/core/runtime/paren_spec.rb +14 -0
- data/spec/opal/core/runtime/rescue_spec.rb +38 -0
- data/spec/opal/core/runtime/return_spec.rb +38 -0
- data/spec/opal/core/runtime/send_spec.rb +34 -0
- data/spec/opal/core/runtime/singleton_class_spec.rb +13 -0
- data/spec/opal/core/runtime/super_spec.rb +212 -0
- data/spec/opal/core/runtime/truthy_spec.rb +23 -0
- data/spec/opal/core/runtime/variables_spec.rb +20 -0
- data/spec/opal/core/runtime_spec.rb +58 -0
- data/spec/opal/core/source_map_spec.rb +15 -0
- data/spec/opal/core/string_spec.rb +11 -0
- data/spec/opal/stdlib/erb/erb_spec.rb +30 -0
- data/spec/opal/stdlib/erb/inline_block.opalerb +3 -0
- data/spec/opal/stdlib/erb/quoted.opalerb +1 -0
- data/spec/opal/stdlib/erb/simple.opalerb +1 -0
- data/spec/opal/stdlib/js_spec.rb +66 -0
- data/spec/opal/stdlib/json/ext_spec.rb +48 -0
- data/spec/opal/stdlib/json/parse_spec.rb +33 -0
- data/spec/opal/stdlib/native/alias_native_spec.rb +27 -0
- data/spec/opal/stdlib/native/each_spec.rb +13 -0
- data/spec/opal/stdlib/native/element_reference_spec.rb +16 -0
- data/spec/opal/stdlib/native/exposure_spec.rb +33 -0
- data/spec/opal/stdlib/native/ext_spec.rb +19 -0
- data/spec/opal/stdlib/native/initialize_spec.rb +17 -0
- data/spec/opal/stdlib/native/method_missing_spec.rb +51 -0
- data/spec/opal/stdlib/native/native_alias_spec.rb +19 -0
- data/spec/opal/stdlib/native/native_class_spec.rb +18 -0
- data/spec/opal/stdlib/native/native_module_spec.rb +13 -0
- data/spec/opal/stdlib/native/native_reader_spec.rb +22 -0
- data/spec/opal/stdlib/native/native_writer_spec.rb +30 -0
- data/spec/opal/stdlib/native/new_spec.rb +8 -0
- data/spec/opal/stdlib/promise/always_spec.rb +30 -0
- data/spec/opal/stdlib/promise/error_spec.rb +15 -0
- data/spec/opal/stdlib/promise/rescue_spec.rb +44 -0
- data/spec/opal/stdlib/promise/then_spec.rb +71 -0
- data/spec/opal/stdlib/promise/trace_spec.rb +52 -0
- data/spec/opal/stdlib/promise/value_spec.rb +15 -0
- data/spec/opal/stdlib/promise/when_spec.rb +34 -0
- data/spec/opal/stdlib/template/paths_spec.rb +10 -0
- data/spec/opal/stdlib/thread/mutex_spec.rb +40 -0
- data/spec/opal/stdlib/thread/thread_queue_spec.rb +32 -0
- data/spec/opal/stdlib/thread/thread_spec.rb +60 -0
- data/spec/rubyspecs +144 -0
- data/spec/spec_helper.rb +53 -0
- data/spec/support/mspec_rspec_adapter.rb +33 -0
- data/spec/support/parser_helpers.rb +37 -0
- data/stdlib/README.md +3 -0
- data/stdlib/base64.rb +152 -0
- data/stdlib/benchmark.rb +557 -0
- data/stdlib/buffer.rb +41 -0
- data/stdlib/buffer/array.rb +66 -0
- data/stdlib/buffer/view.rb +70 -0
- data/stdlib/date.rb +248 -0
- data/stdlib/delegate.rb +29 -0
- data/stdlib/dir.rb +1 -0
- data/stdlib/encoding.rb +170 -0
- data/stdlib/enumerator.rb +1 -0
- data/stdlib/erb.rb +16 -0
- data/stdlib/file.rb +1 -0
- data/stdlib/fileutils.rb +0 -0
- data/stdlib/forwardable.rb +71 -0
- data/stdlib/iconv.rb +0 -0
- data/stdlib/js.rb +56 -0
- data/stdlib/json.rb +190 -0
- data/stdlib/math.rb +370 -0
- data/stdlib/native.rb +530 -0
- data/stdlib/nodejs.rb +7 -0
- data/stdlib/nodejs/dir.rb +13 -0
- data/stdlib/nodejs/file.rb +98 -0
- data/stdlib/nodejs/fileutils.rb +26 -0
- data/stdlib/nodejs/io.rb +2 -0
- data/stdlib/nodejs/irb.rb +45 -0
- data/stdlib/nodejs/kernel.rb +33 -0
- data/stdlib/nodejs/node_modules/.bin/js-yaml +140 -0
- data/stdlib/nodejs/node_modules/glob/LICENSE +15 -0
- data/stdlib/nodejs/node_modules/glob/README.md +357 -0
- data/stdlib/nodejs/node_modules/glob/common.js +177 -0
- data/stdlib/nodejs/node_modules/glob/glob.js +649 -0
- data/stdlib/nodejs/node_modules/glob/node_modules/inflight/.eslintrc +17 -0
- data/stdlib/nodejs/node_modules/glob/node_modules/inflight/LICENSE +15 -0
- data/stdlib/nodejs/node_modules/glob/node_modules/inflight/README.md +37 -0
- data/stdlib/nodejs/node_modules/glob/node_modules/inflight/inflight.js +44 -0
- data/stdlib/nodejs/node_modules/glob/node_modules/inflight/node_modules/wrappy/LICENSE +15 -0
- data/stdlib/nodejs/node_modules/glob/node_modules/inflight/node_modules/wrappy/README.md +36 -0
- data/stdlib/nodejs/node_modules/glob/node_modules/inflight/node_modules/wrappy/package.json +52 -0
- data/stdlib/nodejs/node_modules/glob/node_modules/inflight/node_modules/wrappy/test/basic.js +51 -0
- data/stdlib/nodejs/node_modules/glob/node_modules/inflight/node_modules/wrappy/wrappy.js +33 -0
- data/stdlib/nodejs/node_modules/glob/node_modules/inflight/package.json +61 -0
- data/stdlib/nodejs/node_modules/glob/node_modules/inflight/test.js +97 -0
- data/stdlib/nodejs/node_modules/glob/node_modules/inherits/LICENSE +16 -0
- data/stdlib/nodejs/node_modules/glob/node_modules/inherits/README.md +42 -0
- data/stdlib/nodejs/node_modules/glob/node_modules/inherits/inherits.js +1 -0
- data/stdlib/nodejs/node_modules/glob/node_modules/inherits/inherits_browser.js +23 -0
- data/stdlib/nodejs/node_modules/glob/node_modules/inherits/package.json +51 -0
- data/stdlib/nodejs/node_modules/glob/node_modules/inherits/test.js +25 -0
- data/stdlib/nodejs/node_modules/glob/node_modules/minimatch/.npmignore +1 -0
- data/stdlib/nodejs/node_modules/glob/node_modules/minimatch/.travis.yml +4 -0
- data/stdlib/nodejs/node_modules/glob/node_modules/minimatch/LICENSE +23 -0
- data/stdlib/nodejs/node_modules/glob/node_modules/minimatch/README.md +216 -0
- data/stdlib/nodejs/node_modules/glob/node_modules/minimatch/benchmark.js +15 -0
- data/stdlib/nodejs/node_modules/glob/node_modules/minimatch/browser.js +1181 -0
- data/stdlib/nodejs/node_modules/glob/node_modules/minimatch/minimatch.js +845 -0
- data/stdlib/nodejs/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/.npmignore +2 -0
- data/stdlib/nodejs/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/.travis.yml +3 -0
- data/stdlib/nodejs/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/README.md +121 -0
- data/stdlib/nodejs/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/example.js +8 -0
- data/stdlib/nodejs/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/index.js +191 -0
- data/stdlib/nodejs/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/node_modules/balanced-match/.npmignore +2 -0
- data/stdlib/nodejs/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/node_modules/balanced-match/.travis.yml +4 -0
- data/stdlib/nodejs/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/node_modules/balanced-match/Makefile +6 -0
- data/stdlib/nodejs/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/node_modules/balanced-match/README.md +80 -0
- data/stdlib/nodejs/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/node_modules/balanced-match/example.js +5 -0
- data/stdlib/nodejs/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/node_modules/balanced-match/index.js +38 -0
- data/stdlib/nodejs/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/node_modules/balanced-match/package.json +73 -0
- data/stdlib/nodejs/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/node_modules/balanced-match/test/balanced.js +56 -0
- data/stdlib/nodejs/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/node_modules/concat-map/.travis.yml +4 -0
- data/stdlib/nodejs/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/node_modules/concat-map/LICENSE +18 -0
- data/stdlib/nodejs/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/node_modules/concat-map/README.markdown +62 -0
- data/stdlib/nodejs/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/node_modules/concat-map/example/map.js +6 -0
- data/stdlib/nodejs/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/node_modules/concat-map/index.js +13 -0
- data/stdlib/nodejs/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/node_modules/concat-map/package.json +83 -0
- data/stdlib/nodejs/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/node_modules/concat-map/test/map.js +39 -0
- data/stdlib/nodejs/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/package.json +75 -0
- data/stdlib/nodejs/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/test/bash-comparison.js +32 -0
- data/stdlib/nodejs/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/test/bash-results.txt +1075 -0
- data/stdlib/nodejs/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/test/cases.txt +182 -0
- data/stdlib/nodejs/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/test/dollar.js +9 -0
- data/stdlib/nodejs/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/test/empty-option.js +10 -0
- data/stdlib/nodejs/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/test/generate.sh +24 -0
- data/stdlib/nodejs/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/test/negative-increment.js +15 -0
- data/stdlib/nodejs/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/test/nested.js +16 -0
- data/stdlib/nodejs/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/test/order.js +10 -0
- data/stdlib/nodejs/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/test/pad.js +13 -0
- data/stdlib/nodejs/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/test/same-type.js +7 -0
- data/stdlib/nodejs/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/test/sequence.js +50 -0
- data/stdlib/nodejs/node_modules/glob/node_modules/minimatch/package.json +60 -0
- data/stdlib/nodejs/node_modules/glob/node_modules/minimatch/test/basic.js +399 -0
- data/stdlib/nodejs/node_modules/glob/node_modules/minimatch/test/brace-expand.js +45 -0
- data/stdlib/nodejs/node_modules/glob/node_modules/minimatch/test/defaults.js +274 -0
- data/stdlib/nodejs/node_modules/glob/node_modules/minimatch/test/extglob-ending-with-state-char.js +8 -0
- data/stdlib/nodejs/node_modules/glob/node_modules/once/LICENSE +27 -0
- data/stdlib/nodejs/node_modules/glob/node_modules/once/README.md +51 -0
- data/stdlib/nodejs/node_modules/glob/node_modules/once/node_modules/wrappy/LICENSE +15 -0
- data/stdlib/nodejs/node_modules/glob/node_modules/once/node_modules/wrappy/README.md +36 -0
- data/stdlib/nodejs/node_modules/glob/node_modules/once/node_modules/wrappy/package.json +52 -0
- data/stdlib/nodejs/node_modules/glob/node_modules/once/node_modules/wrappy/test/basic.js +51 -0
- data/stdlib/nodejs/node_modules/glob/node_modules/once/node_modules/wrappy/wrappy.js +33 -0
- data/stdlib/nodejs/node_modules/glob/node_modules/once/once.js +21 -0
- data/stdlib/nodejs/node_modules/glob/node_modules/once/package.json +60 -0
- data/stdlib/nodejs/node_modules/glob/node_modules/once/test/once.js +23 -0
- data/stdlib/nodejs/node_modules/glob/package.json +72 -0
- data/stdlib/nodejs/node_modules/glob/sync.js +409 -0
- data/stdlib/nodejs/node_modules/js-yaml/HISTORY.md +277 -0
- data/stdlib/nodejs/node_modules/js-yaml/LICENSE +21 -0
- data/stdlib/nodejs/node_modules/js-yaml/README.md +288 -0
- data/stdlib/nodejs/node_modules/js-yaml/bin/js-yaml.js +140 -0
- data/stdlib/nodejs/node_modules/js-yaml/bower.json +23 -0
- data/stdlib/nodejs/node_modules/js-yaml/dist/js-yaml.js +3666 -0
- data/stdlib/nodejs/node_modules/js-yaml/dist/js-yaml.min.js +3 -0
- data/stdlib/nodejs/node_modules/js-yaml/examples/custom_types.js +102 -0
- data/stdlib/nodejs/node_modules/js-yaml/examples/custom_types.yml +18 -0
- data/stdlib/nodejs/node_modules/js-yaml/examples/dumper.js +31 -0
- data/stdlib/nodejs/node_modules/js-yaml/examples/dumper.json +22 -0
- data/stdlib/nodejs/node_modules/js-yaml/examples/sample_document.js +18 -0
- data/stdlib/nodejs/node_modules/js-yaml/examples/sample_document.yml +197 -0
- data/stdlib/nodejs/node_modules/js-yaml/index.js +7 -0
- data/stdlib/nodejs/node_modules/js-yaml/lib/js-yaml.js +39 -0
- data/stdlib/nodejs/node_modules/js-yaml/lib/js-yaml/common.js +62 -0
- data/stdlib/nodejs/node_modules/js-yaml/lib/js-yaml/dumper.js +554 -0
- data/stdlib/nodejs/node_modules/js-yaml/lib/js-yaml/exception.js +25 -0
- data/stdlib/nodejs/node_modules/js-yaml/lib/js-yaml/loader.js +1581 -0
- data/stdlib/nodejs/node_modules/js-yaml/lib/js-yaml/mark.js +78 -0
- data/stdlib/nodejs/node_modules/js-yaml/lib/js-yaml/schema.js +103 -0
- data/stdlib/nodejs/node_modules/js-yaml/lib/js-yaml/schema/core.js +18 -0
- data/stdlib/nodejs/node_modules/js-yaml/lib/js-yaml/schema/default_full.js +25 -0
- data/stdlib/nodejs/node_modules/js-yaml/lib/js-yaml/schema/default_safe.js +28 -0
- data/stdlib/nodejs/node_modules/js-yaml/lib/js-yaml/schema/failsafe.js +17 -0
- data/stdlib/nodejs/node_modules/js-yaml/lib/js-yaml/schema/json.js +25 -0
- data/stdlib/nodejs/node_modules/js-yaml/lib/js-yaml/type.js +61 -0
- data/stdlib/nodejs/node_modules/js-yaml/lib/js-yaml/type/binary.js +133 -0
- data/stdlib/nodejs/node_modules/js-yaml/lib/js-yaml/type/bool.js +37 -0
- data/stdlib/nodejs/node_modules/js-yaml/lib/js-yaml/type/float.js +110 -0
- data/stdlib/nodejs/node_modules/js-yaml/lib/js-yaml/type/int.js +183 -0
- data/stdlib/nodejs/node_modules/js-yaml/lib/js-yaml/type/js/function.js +85 -0
- data/stdlib/nodejs/node_modules/js-yaml/lib/js-yaml/type/js/regexp.js +84 -0
- data/stdlib/nodejs/node_modules/js-yaml/lib/js-yaml/type/js/undefined.js +27 -0
- data/stdlib/nodejs/node_modules/js-yaml/lib/js-yaml/type/map.js +8 -0
- data/stdlib/nodejs/node_modules/js-yaml/lib/js-yaml/type/merge.js +12 -0
- data/stdlib/nodejs/node_modules/js-yaml/lib/js-yaml/type/null.js +36 -0
- data/stdlib/nodejs/node_modules/js-yaml/lib/js-yaml/type/omap.js +56 -0
- data/stdlib/nodejs/node_modules/js-yaml/lib/js-yaml/type/pairs.js +61 -0
- data/stdlib/nodejs/node_modules/js-yaml/lib/js-yaml/type/seq.js +8 -0
- data/stdlib/nodejs/node_modules/js-yaml/lib/js-yaml/type/set.js +33 -0
- data/stdlib/nodejs/node_modules/js-yaml/lib/js-yaml/type/str.js +8 -0
- data/stdlib/nodejs/node_modules/js-yaml/lib/js-yaml/type/timestamp.js +98 -0
- data/stdlib/nodejs/node_modules/js-yaml/node_modules/.bin/esparse +117 -0
- data/stdlib/nodejs/node_modules/js-yaml/node_modules/.bin/esvalidate +177 -0
- data/stdlib/nodejs/node_modules/js-yaml/node_modules/argparse/HISTORY.md +115 -0
- data/stdlib/nodejs/node_modules/js-yaml/node_modules/argparse/LICENSE +21 -0
- data/stdlib/nodejs/node_modules/js-yaml/node_modules/argparse/README.md +239 -0
- data/stdlib/nodejs/node_modules/js-yaml/node_modules/argparse/examples/arguments.js +36 -0
- data/stdlib/nodejs/node_modules/js-yaml/node_modules/argparse/examples/choice.js +22 -0
- data/stdlib/nodejs/node_modules/js-yaml/node_modules/argparse/examples/constants.js +59 -0
- data/stdlib/nodejs/node_modules/js-yaml/node_modules/argparse/examples/help.js +13 -0
- data/stdlib/nodejs/node_modules/js-yaml/node_modules/argparse/examples/nargs.js +33 -0
- data/stdlib/nodejs/node_modules/js-yaml/node_modules/argparse/examples/parents.js +28 -0
- data/stdlib/nodejs/node_modules/js-yaml/node_modules/argparse/examples/prefix_chars.js +23 -0
- data/stdlib/nodejs/node_modules/js-yaml/node_modules/argparse/examples/sub_commands.js +49 -0
- data/stdlib/nodejs/node_modules/js-yaml/node_modules/argparse/examples/sum.js +35 -0
- data/stdlib/nodejs/node_modules/js-yaml/node_modules/argparse/examples/testformatters.js +270 -0
- data/stdlib/nodejs/node_modules/js-yaml/node_modules/argparse/index.js +1 -0
- data/stdlib/nodejs/node_modules/js-yaml/node_modules/argparse/lib/action.js +146 -0
- data/stdlib/nodejs/node_modules/js-yaml/node_modules/argparse/lib/action/append.js +55 -0
- data/stdlib/nodejs/node_modules/js-yaml/node_modules/argparse/lib/action/append/constant.js +47 -0
- data/stdlib/nodejs/node_modules/js-yaml/node_modules/argparse/lib/action/count.js +40 -0
- data/stdlib/nodejs/node_modules/js-yaml/node_modules/argparse/lib/action/help.js +48 -0
- data/stdlib/nodejs/node_modules/js-yaml/node_modules/argparse/lib/action/store.js +50 -0
- data/stdlib/nodejs/node_modules/js-yaml/node_modules/argparse/lib/action/store/constant.js +43 -0
- data/stdlib/nodejs/node_modules/js-yaml/node_modules/argparse/lib/action/store/false.js +27 -0
- data/stdlib/nodejs/node_modules/js-yaml/node_modules/argparse/lib/action/store/true.js +26 -0
- data/stdlib/nodejs/node_modules/js-yaml/node_modules/argparse/lib/action/subparsers.js +148 -0
- data/stdlib/nodejs/node_modules/js-yaml/node_modules/argparse/lib/action/version.js +50 -0
- data/stdlib/nodejs/node_modules/js-yaml/node_modules/argparse/lib/action_container.js +481 -0
- data/stdlib/nodejs/node_modules/js-yaml/node_modules/argparse/lib/argparse.js +14 -0
- data/stdlib/nodejs/node_modules/js-yaml/node_modules/argparse/lib/argument/error.js +50 -0
- data/stdlib/nodejs/node_modules/js-yaml/node_modules/argparse/lib/argument/exclusive.js +54 -0
- data/stdlib/nodejs/node_modules/js-yaml/node_modules/argparse/lib/argument/group.js +75 -0
- data/stdlib/nodejs/node_modules/js-yaml/node_modules/argparse/lib/argument_parser.js +1168 -0
- data/stdlib/nodejs/node_modules/js-yaml/node_modules/argparse/lib/const.js +18 -0
- data/stdlib/nodejs/node_modules/js-yaml/node_modules/argparse/lib/help/added_formatters.js +88 -0
- data/stdlib/nodejs/node_modules/js-yaml/node_modules/argparse/lib/help/formatter.js +798 -0
- data/stdlib/nodejs/node_modules/js-yaml/node_modules/argparse/lib/namespace.js +77 -0
- data/stdlib/nodejs/node_modules/js-yaml/node_modules/argparse/node_modules/underscore.string/.npmignore +2 -0
- data/stdlib/nodejs/node_modules/js-yaml/node_modules/argparse/node_modules/underscore.string/.travis.yml +8 -0
- data/stdlib/nodejs/node_modules/js-yaml/node_modules/argparse/node_modules/underscore.string/README.markdown +825 -0
- data/stdlib/nodejs/node_modules/js-yaml/node_modules/argparse/node_modules/underscore.string/bower.json +33 -0
- data/stdlib/nodejs/node_modules/js-yaml/node_modules/argparse/node_modules/underscore.string/component.json +11 -0
- data/stdlib/nodejs/node_modules/js-yaml/node_modules/argparse/node_modules/underscore.string/foo.js +10 -0
- data/stdlib/nodejs/node_modules/js-yaml/node_modules/argparse/node_modules/underscore.string/gulpfile.js +26 -0
- data/stdlib/nodejs/node_modules/js-yaml/node_modules/argparse/node_modules/underscore.string/lib/underscore.string.js +673 -0
- data/stdlib/nodejs/node_modules/js-yaml/node_modules/argparse/node_modules/underscore.string/libpeerconnection.log +0 -0
- data/stdlib/nodejs/node_modules/js-yaml/node_modules/argparse/node_modules/underscore.string/package.json +107 -0
- data/stdlib/nodejs/node_modules/js-yaml/node_modules/argparse/node_modules/underscore/LICENSE +23 -0
- data/stdlib/nodejs/node_modules/js-yaml/node_modules/argparse/node_modules/underscore/README.md +22 -0
- data/stdlib/nodejs/node_modules/js-yaml/node_modules/argparse/node_modules/underscore/package.json +69 -0
- data/stdlib/nodejs/node_modules/js-yaml/node_modules/argparse/node_modules/underscore/underscore-min.js +6 -0
- data/stdlib/nodejs/node_modules/js-yaml/node_modules/argparse/node_modules/underscore/underscore.js +1415 -0
- data/stdlib/nodejs/node_modules/js-yaml/node_modules/argparse/package.json +62 -0
- data/stdlib/nodejs/node_modules/js-yaml/node_modules/esprima/README.md +73 -0
- data/stdlib/nodejs/node_modules/js-yaml/node_modules/esprima/bin/esparse.js +117 -0
- data/stdlib/nodejs/node_modules/js-yaml/node_modules/esprima/bin/esvalidate.js +177 -0
- data/stdlib/nodejs/node_modules/js-yaml/node_modules/esprima/esprima.js +3908 -0
- data/stdlib/nodejs/node_modules/js-yaml/node_modules/esprima/package.json +69 -0
- data/stdlib/nodejs/node_modules/js-yaml/node_modules/esprima/test/compat.js +239 -0
- data/stdlib/nodejs/node_modules/js-yaml/node_modules/esprima/test/reflect.js +422 -0
- data/stdlib/nodejs/node_modules/js-yaml/node_modules/esprima/test/run.js +66 -0
- data/stdlib/nodejs/node_modules/js-yaml/node_modules/esprima/test/runner.js +387 -0
- data/stdlib/nodejs/node_modules/js-yaml/node_modules/esprima/test/test.js +20238 -0
- data/stdlib/nodejs/node_modules/js-yaml/package.json +83 -0
- data/stdlib/nodejs/package.json +6 -0
- data/stdlib/nodejs/require.rb +30 -0
- data/stdlib/nodejs/rubygems.rb +68 -0
- data/stdlib/nodejs/yaml.rb +11 -0
- data/stdlib/observer.rb +202 -0
- data/stdlib/opal-parser.rb +54 -0
- data/stdlib/opal-source-maps.rb +2 -0
- data/stdlib/ostruct.rb +69 -0
- data/stdlib/pathname.rb +55 -0
- data/stdlib/phantomjs.rb +3 -0
- data/stdlib/pp.rb +35 -0
- data/stdlib/promise.rb +427 -0
- data/stdlib/racc/parser.rb +215 -0
- data/stdlib/rbconfig.rb +18 -0
- data/stdlib/securerandom.rb +12 -0
- data/stdlib/set.rb +170 -0
- data/stdlib/singleton.rb +40 -0
- data/stdlib/source_map.rb +5 -0
- data/stdlib/source_map/map.rb +220 -0
- data/stdlib/source_map/mapping.rb +26 -0
- data/stdlib/source_map/offset.rb +88 -0
- data/stdlib/source_map/version.rb +3 -0
- data/stdlib/source_map/vlq.rb +98 -0
- data/stdlib/sourcemap.rb +1 -0
- data/stdlib/stringio.rb +181 -0
- data/stdlib/strscan.rb +166 -0
- data/stdlib/template.rb +46 -0
- data/stdlib/thread.rb +164 -0
- data/stdlib/time.rb +9 -0
- data/stdlib/yaml.rb +1 -0
- data/tasks/benchmarking.rake +88 -0
- data/tasks/building.rake +58 -0
- data/tasks/documenting.rake +37 -0
- data/tasks/github.rake +19 -0
- data/tasks/linting.rake +18 -0
- data/tasks/testing.rake +125 -0
- data/vendored-minitest/minitest.rb +780 -0
- data/vendored-minitest/minitest/assertions.rb +662 -0
- data/vendored-minitest/minitest/autorun.rb +12 -0
- data/vendored-minitest/minitest/benchmark.rb +426 -0
- data/vendored-minitest/minitest/expectations.rb +281 -0
- data/vendored-minitest/minitest/hell.rb +11 -0
- data/vendored-minitest/minitest/mock.rb +220 -0
- data/vendored-minitest/minitest/parallel.rb +65 -0
- data/vendored-minitest/minitest/pride.rb +4 -0
- data/vendored-minitest/minitest/pride_plugin.rb +142 -0
- data/vendored-minitest/minitest/spec.rb +310 -0
- data/vendored-minitest/minitest/test.rb +293 -0
- data/vendored-minitest/minitest/unit.rb +45 -0
- data/vendored-minitest/test/unit.rb +28 -0
- metadata +1058 -0
@@ -0,0 +1,84 @@
|
|
1
|
+
opal_filter "Exception" do
|
2
|
+
fails "ArgumentError gives its own class name as message if it has no message"
|
3
|
+
fails "Errno::EAGAIN is the same class as Errno::EWOULDBLOCK if they represent the same errno value"
|
4
|
+
fails "Errno::EINVAL.new accepts an optional custom message and location"
|
5
|
+
fails "Errno::EINVAL.new accepts an optional custom message"
|
6
|
+
fails "Errno::EINVAL.new can be called with no arguments"
|
7
|
+
fails "Errno::EMFILE can be subclassed"
|
8
|
+
fails "Exception is a superclass of EncodingError"
|
9
|
+
fails "Exception is a superclass of Interrupt"
|
10
|
+
fails "Exception is a superclass of SecurityError"
|
11
|
+
fails "Exception is a superclass of SystemStackError"
|
12
|
+
fails "Exception#== returns false if the two exceptions differ only in their backtrace"
|
13
|
+
fails "Exception#== returns false if the two exceptions differ only in their message"
|
14
|
+
fails "Exception#== returns false if the two exceptions inherit from Exception but have different classes"
|
15
|
+
fails "Exception#== returns true if both exceptions have the same class, no message, and no backtrace"
|
16
|
+
fails "Exception#== returns true if both exceptions have the same class, the same message, and no backtrace"
|
17
|
+
fails "Exception#== returns true if both exceptions have the same class, the same message, and the same backtrace"
|
18
|
+
fails "Exception#== returns true if one exception is the dup'd copy of the other"
|
19
|
+
fails "Exception#== returns true if the two objects subclass Exception and have the same message and backtrace"
|
20
|
+
fails "Exception#backtrace contains lines of the same format for each prior position in the stack"
|
21
|
+
fails "Exception#backtrace includes the filename of the location immediately prior to where self raised in the second element"
|
22
|
+
fails "Exception#backtrace includes the filename of the location where self raised in the first element"
|
23
|
+
fails "Exception#backtrace includes the line number of the location immediately prior to where self raised in the second element"
|
24
|
+
fails "Exception#backtrace includes the line number of the location where self raised in the first element"
|
25
|
+
fails "Exception#backtrace includes the name of the method from where self raised in the first element"
|
26
|
+
fails "Exception#backtrace returns an Array"
|
27
|
+
fails "Exception#backtrace returns nil if no backtrace was set"
|
28
|
+
fails "Exception#backtrace sets each element to a String"
|
29
|
+
fails "Exception#exception returns an exception of the same class as self with the message given as argument"
|
30
|
+
fails "Exception#exception returns an exception of the same class as self with the message given as argument, but without reinitializing"
|
31
|
+
fails "Exception#exception returns self when passed no argument"
|
32
|
+
fails "Exception#exception returns self when passed self as an argument"
|
33
|
+
fails "Exception#inspect includes #to_s when the result is non-empty"
|
34
|
+
fails "Exception#inspect returns '#<Exception: Exception>' when no message given"
|
35
|
+
fails "Exception#inspect returns the class name when #to_s returns an empty string"
|
36
|
+
fails "Exception#message calls #to_s on self"
|
37
|
+
fails "Exception#set_backtrace accepts a String"
|
38
|
+
fails "Exception#set_backtrace accepts an Array of Strings"
|
39
|
+
fails "Exception#set_backtrace accepts an empty Array"
|
40
|
+
fails "Exception#set_backtrace accepts nil"
|
41
|
+
fails "Exception#set_backtrace allows the user to set the backtrace from a rescued exception"
|
42
|
+
fails "Exception#set_backtrace raises a TypeError when passed a Symbol"
|
43
|
+
fails "Exception#set_backtrace raises a TypeError when the Array contains a Symbol"
|
44
|
+
fails "Exception#set_backtrace raises a TypeError when the argument is a nested array"
|
45
|
+
fails "Exception#set_backtrace raises a TypeError when the array contains nil"
|
46
|
+
fails "Exception#to_s calls #to_s on the message"
|
47
|
+
fails "Exception#to_s returns the self's name if no message is set"
|
48
|
+
fails "Exception.exception creates a new instance of Exception"
|
49
|
+
fails "Exception.exception returns 'Exception' for message when no message given"
|
50
|
+
fails "Exception.exception returns the exception when it has a custom constructor"
|
51
|
+
fails "Exception.exception sets the message of the Exception when passes a message"
|
52
|
+
fails "Exception.new returns the exception when it has a custom constructor"
|
53
|
+
fails "IOError is a superclass of EOFError"
|
54
|
+
fails "NameError.new NameError.new should take optional name argument"
|
55
|
+
fails "NoMethodError#args returns an array with the same elements as passed to the method"
|
56
|
+
fails "NoMethodError#args returns an empty array if the caller method had no arguments"
|
57
|
+
fails "NoMethodError#message for an protected method match /protected method/"
|
58
|
+
fails "NoMethodError#message for private method match /private method/"
|
59
|
+
fails "NoMethodError.new allows passing method args"
|
60
|
+
fails "SignalException.new raises an exception for an optional argument with a signal name"
|
61
|
+
fails "SignalException.new raises an exception with an invalid signal name"
|
62
|
+
fails "SignalException.new raises an exception with an invalid signal name"
|
63
|
+
fails "SignalException.new raises an exception with an invalid signal number"
|
64
|
+
fails "SignalException.new takes a signal name with SIG prefix as the first argument"
|
65
|
+
fails "SignalException.new takes a signal name without SIG prefix as the first argument"
|
66
|
+
fails "SignalException.new takes a signal number as the first argument"
|
67
|
+
fails "SignalException.new takes a signal symbol with SIG prefix as the first argument"
|
68
|
+
fails "SignalException.new takes a signal symbol without SIG prefix as the first argument"
|
69
|
+
fails "SignalException.new takes an optional message argument with a signal number"
|
70
|
+
fails "StandardError is a superclass of ZeroDivisionError"
|
71
|
+
fails "StopIteration#result returns the method-returned-object from an Enumerator"
|
72
|
+
fails "SystemCallError can be subclassed"
|
73
|
+
fails "SystemCallError#errno returns nil when no errno given"
|
74
|
+
fails "SystemCallError#errno returns the errno given as optional argument to new"
|
75
|
+
fails "SystemCallError#message returns the default message when no message is given"
|
76
|
+
fails "SystemCallError.new accepts an optional custom message preceding the errno"
|
77
|
+
fails "SystemCallError.new accepts an optional third argument specifying the location"
|
78
|
+
fails "SystemCallError.new accepts single Fixnum argument as errno"
|
79
|
+
fails "SystemCallError.new constructs the appropriate Errno class"
|
80
|
+
fails "SystemCallError.new requires at least one argument"
|
81
|
+
fails "SystemCallError.new returns an arity of -1 for the initialize method"
|
82
|
+
fails "SystemStackError is a subclass of Exception"
|
83
|
+
fails "rescueing SignalException raises a SignalException when sent a signal"
|
84
|
+
end
|
@@ -0,0 +1,35 @@
|
|
1
|
+
opal_filter "Fixnum" do
|
2
|
+
fails "Fixnum#% raises a ZeroDivisionError when the given argument is 0 and a Float"
|
3
|
+
fails "Fixnum#% raises a ZeroDivisionError when the given argument is 0"
|
4
|
+
fails "Fixnum#& raises a TypeError when passed a Float"
|
5
|
+
fails "Fixnum#& returns self bitwise AND a Bignum"
|
6
|
+
fails "Fixnum#& returns self bitwise AND other"
|
7
|
+
fails "Fixnum#* overflows to Bignum when the result does not fit in Fixnum"
|
8
|
+
fails "Fixnum#** can raise -1 to a Bignum safely"
|
9
|
+
fails "Fixnum#** returns a complex number when negative and raised to a fractional power"
|
10
|
+
fails "Fixnum#/ coerces fixnum and return self divided by other"
|
11
|
+
fails "Fixnum#/ raises a ZeroDivisionError if the given argument is zero and not a Float"
|
12
|
+
fails "Fixnum#/ returns self divided by the given argument"
|
13
|
+
fails "Fixnum#/ supports dividing negative numbers"
|
14
|
+
fails "Fixnum#^ raises a TypeError when passed a Float"
|
15
|
+
fails "Fixnum#^ returns self bitwise EXCLUSIVE OR a Bignum"
|
16
|
+
fails "Fixnum#^ returns self bitwise EXCLUSIVE OR other"
|
17
|
+
fails "Fixnum#bit_length returns the position of the leftmost 0 bit of a negative number"
|
18
|
+
fails "Fixnum#bit_length returns the position of the leftmost bit of a positive number"
|
19
|
+
fails "Fixnum#coerce tries to convert the given Object into a Float by using #to_f"
|
20
|
+
fails "Fixnum#coerce when given a Fixnum returns an array containing two Fixnums"
|
21
|
+
fails "Fixnum#coerce when given a String raises an ArgumentError when trying to coerce with a non-number String"
|
22
|
+
fails "Fixnum#coerce when given a String returns an array containing two Floats"
|
23
|
+
fails "Fixnum#div coerces self and the given argument to Floats and returns self divided by other as Fixnum"
|
24
|
+
fails "Fixnum#div raises a TypeError when given a non-Integer"
|
25
|
+
fails "Fixnum#div raises a ZeroDivisionError when the given argument is 0 and a Float"
|
26
|
+
fails "Fixnum#div raises a ZeroDivisionError when the given argument is 0"
|
27
|
+
fails "Fixnum#div rounds towards -inf"
|
28
|
+
fails "Fixnum#div with a Fixnum returns self divided by the given argument as an Integer"
|
29
|
+
fails "Fixnum#divmod raises a ZeroDivisionError when the given argument is 0 and a Float"
|
30
|
+
fails "Fixnum#divmod raises a ZeroDivisionError when the given argument is 0"
|
31
|
+
fails "Fixnum#modulo raises a ZeroDivisionError when the given argument is 0 and a Float"
|
32
|
+
fails "Fixnum#modulo raises a ZeroDivisionError when the given argument is 0"
|
33
|
+
fails "Fixnum#| raises a TypeError when passed a Float"
|
34
|
+
fails "Fixnum#| returns self bitwise OR other"
|
35
|
+
end
|
@@ -0,0 +1,100 @@
|
|
1
|
+
opal_filter "Float" do
|
2
|
+
fails "Float#% raises a ZeroDivisionError if other is zero"
|
3
|
+
fails "Float#% returns -Infinity when modulus is -Infinity"
|
4
|
+
fails "Float#** returns a complex number when negative and raised to a fractional power"
|
5
|
+
fails "Float#<=> returns nil when either argument is NaN"
|
6
|
+
fails "Float#CONSTANTS the DIG value is 15"
|
7
|
+
fails "Float#CONSTANTS the MANT_DIG is 53"
|
8
|
+
fails "Float#CONSTANTS the MAX_10_EXP is 308"
|
9
|
+
fails "Float#CONSTANTS the MAX_EXP is 1024"
|
10
|
+
fails "Float#CONSTANTS the MIN is 2.2250738585072e-308"
|
11
|
+
fails "Float#CONSTANTS the MIN_10_EXP is -308"
|
12
|
+
fails "Float#CONSTANTS the MIN_EXP is -1021"
|
13
|
+
fails "Float#CONSTANTS the RADIX is 2"
|
14
|
+
fails "Float#angle returns 0 if +0.0"
|
15
|
+
fails "Float#angle returns 0 if +Infinity"
|
16
|
+
fails "Float#angle returns 0 if positive"
|
17
|
+
fails "Float#angle returns NaN if NaN"
|
18
|
+
fails "Float#angle returns Pi if -0.0"
|
19
|
+
fails "Float#angle returns Pi if -Infinity"
|
20
|
+
fails "Float#angle returns Pi if negative"
|
21
|
+
fails "Float#angle returns self if NaN"
|
22
|
+
fails "Float#arg returns 0 if +0.0"
|
23
|
+
fails "Float#arg returns 0 if +Infinity"
|
24
|
+
fails "Float#arg returns 0 if positive"
|
25
|
+
fails "Float#arg returns NaN if NaN"
|
26
|
+
fails "Float#arg returns Pi if -0.0"
|
27
|
+
fails "Float#arg returns Pi if -Infinity"
|
28
|
+
fails "Float#arg returns Pi if negative"
|
29
|
+
fails "Float#arg returns self if NaN"
|
30
|
+
fails "Float#coerce returns [other, self] both as Floats"
|
31
|
+
fails "Float#denominator converts self to a Rational and returns the denominator"
|
32
|
+
fails "Float#denominator returns 1 for NaN and Infinity"
|
33
|
+
fails "Float#denominator returns an Integer"
|
34
|
+
fails "Float#divmod raises a FloatDomainError if other is NaN"
|
35
|
+
fails "Float#divmod raises a FloatDomainError if self is Infinity"
|
36
|
+
fails "Float#divmod raises a FloatDomainError if self is NaN"
|
37
|
+
fails "Float#divmod raises a ZeroDivisionError if other is zero"
|
38
|
+
fails "Float#divmod returns an [quotient, modulus] from dividing self by other"
|
39
|
+
fails "Float#eql? returns false if other is not a Float"
|
40
|
+
fails "Float#fdiv performs floating-point division between self and a Bignum"
|
41
|
+
fails "Float#fdiv performs floating-point division between self and a Complex"
|
42
|
+
fails "Float#fdiv performs floating-point division between self and a Rational"
|
43
|
+
fails "Float#modulo raises a ZeroDivisionError if other is zero"
|
44
|
+
fails "Float#modulo returns -Infinity when modulus is -Infinity"
|
45
|
+
fails "Float#numerator converts self to a Rational object then returns its numerator"
|
46
|
+
fails "Float#numerator returns -Infinity for -Infinity"
|
47
|
+
fails "Float#numerator returns 0 for 0.0"
|
48
|
+
fails "Float#numerator returns Infinity for Infinity"
|
49
|
+
fails "Float#numerator returns NaN for NaN"
|
50
|
+
fails "Float#phase returns 0 if +0.0"
|
51
|
+
fails "Float#phase returns 0 if +Infinity"
|
52
|
+
fails "Float#phase returns 0 if positive"
|
53
|
+
fails "Float#phase returns NaN if NaN"
|
54
|
+
fails "Float#phase returns Pi if -0.0"
|
55
|
+
fails "Float#phase returns Pi if -Infinity"
|
56
|
+
fails "Float#phase returns Pi if negative"
|
57
|
+
fails "Float#phase returns self if NaN"
|
58
|
+
fails "Float#quo performs floating-point division between self and a Bignum"
|
59
|
+
fails "Float#quo performs floating-point division between self and a Complex"
|
60
|
+
fails "Float#quo performs floating-point division between self and a Fixnum"
|
61
|
+
fails "Float#quo performs floating-point division between self and a Float"
|
62
|
+
fails "Float#quo performs floating-point division between self and a Rational"
|
63
|
+
fails "Float#quo raises a TypeError when argument isn't numeric"
|
64
|
+
fails "Float#quo raises an ArgumentError when passed multiple arguments"
|
65
|
+
fails "Float#quo returns -0.0 when the argument is -Infinity"
|
66
|
+
fails "Float#quo returns -Infinity when the argument is 0 and self is negative"
|
67
|
+
fails "Float#quo returns -Infinity when the argument is 0.0 and self is negative"
|
68
|
+
fails "Float#quo returns 0.0 when the argument is Infinity"
|
69
|
+
fails "Float#quo returns Infinity when the argument is 0"
|
70
|
+
fails "Float#quo returns Infinity when the argument is 0.0"
|
71
|
+
fails "Float#quo returns NaN when the argument is NaN"
|
72
|
+
fails "Float#rationalize raises ArgumentError when passed more than one argument"
|
73
|
+
fails "Float#rationalize raises a FloatDomainError for Infinity"
|
74
|
+
fails "Float#rationalize raises a FloatDomainError for NaN"
|
75
|
+
fails "Float#rationalize returns self as a simplified Rational with no argument"
|
76
|
+
fails "Float#rationalize simplifies self to the degree specified by a Float argument"
|
77
|
+
fails "Float#rationalize simplifies self to the degree specified by a Rational argument"
|
78
|
+
fails "Float#round raises FloatDomainError for exceptional values when passed a non-positive precision"
|
79
|
+
fails "Float#round raises FloatDomainError for exceptional values"
|
80
|
+
fails "Float#round raises RangeError for NAN when passed a non-positive precision"
|
81
|
+
fails "Float#round raises a TypeError when its argument can not be converted to an Integer"
|
82
|
+
fails "Float#round returns rounded values for big argument"
|
83
|
+
fails "Float#round returns rounded values for big values"
|
84
|
+
fails "Float#round returns the nearest Integer"
|
85
|
+
fails "Float#round rounds self to an optionally given precision"
|
86
|
+
fails "Float#round works for corner cases"
|
87
|
+
fails "Float#to_i returns self truncated to an Integer"
|
88
|
+
fails "Float#to_int returns self truncated to an Integer"
|
89
|
+
fails "Float#to_s uses e format for a negative value with fractional part having 6 significant figures"
|
90
|
+
fails "Float#to_s uses e format for a negative value with whole part having 18 significant figures"
|
91
|
+
fails "Float#to_s uses e format for a positive value with fractional part having 6 significant figures"
|
92
|
+
fails "Float#to_s uses e format for a positive value with whole part having 18 significant figures"
|
93
|
+
fails "Float#to_s uses non-e format for a negative value with whole part having 15 significant figures"
|
94
|
+
fails "Float#to_s uses non-e format for a negative value with whole part having 16 significant figures"
|
95
|
+
fails "Float#to_s uses non-e format for a negative value with whole part having 17 significant figures"
|
96
|
+
fails "Float#to_s uses non-e format for a positive value with whole part having 15 significant figures"
|
97
|
+
fails "Float#to_s uses non-e format for a positive value with whole part having 16 significant figures"
|
98
|
+
fails "Float#to_s uses non-e format for a positive value with whole part having 17 significant figures"
|
99
|
+
fails "Float#truncate returns self truncated to an Integer"
|
100
|
+
end
|
@@ -0,0 +1,17 @@
|
|
1
|
+
opal_filter "Hash" do
|
2
|
+
fails "Hash#== compares keys with eql? semantics" # spec relies on integer and float being different
|
3
|
+
fails "Hash#== computes equality for complex recursive hashes"
|
4
|
+
fails "Hash#== computes equality for recursive hashes & arrays"
|
5
|
+
fails "Hash#[] compares keys with eql? semantics" # spec relies on integer and float being different
|
6
|
+
fails "Hash#[] does not create copies of the immediate default value" # spec uses mutable string
|
7
|
+
fails "Hash#each yields the key only to a block expecting |key,|" # procs in Opal do not have access to this info (yet)
|
8
|
+
fails "Hash#each_pair yields the key only to a block expecting |key,|" # procs in Opal do not have access to this info (yet)
|
9
|
+
fails "Hash#eql? compares keys with eql? semantics" # spec relies on integer and float being different
|
10
|
+
fails "Hash#eql? computes equality for complex recursive hashes"
|
11
|
+
fails "Hash#eql? computes equality for recursive hashes & arrays"
|
12
|
+
fails "Hash#fetch raises an ArgumentError when not passed one or two arguments" # arity issue?
|
13
|
+
fails "Hash#hash returns the same hash for recursive hashes through arrays"
|
14
|
+
fails "Hash#hash returns the same hash for recursive hashes"
|
15
|
+
fails "Hash#invert compares new keys with eql? semantics" # spec relies on integer and float being different
|
16
|
+
fails "Hash.new raises an ArgumentError if more than one argument is passed" # arity issue?
|
17
|
+
end
|
@@ -0,0 +1,63 @@
|
|
1
|
+
opal_filter "Integer" do
|
2
|
+
fails "Integer#chr with an encoding argument converts a String to an Encoding as Encoding.find does"
|
3
|
+
fails "Integer#chr with an encoding argument raises RangeError if self is invalid as a codepoint in the specified encoding"
|
4
|
+
fails "Integer#chr with an encoding argument raises a RangeError is self is less than 0"
|
5
|
+
fails "Integer#chr with an encoding argument returns a String encoding self interpreted as a codepoint in the specified encoding"
|
6
|
+
fails "Integer#chr with an encoding argument returns a String with the specified encoding"
|
7
|
+
fails "Integer#chr with an encoding argument returns a new String for each call"
|
8
|
+
fails "Integer#chr without argument raises a RangeError is self is less than 0"
|
9
|
+
fails "Integer#chr without argument returns a new String for each call"
|
10
|
+
fails "Integer#chr without argument when Encoding.default_internal is nil and self is between 0 and 127 (inclusive) returns a String encoding self interpreted as a US-ASCII codepoint"
|
11
|
+
fails "Integer#chr without argument when Encoding.default_internal is nil and self is between 0 and 127 (inclusive) returns a US-ASCII String"
|
12
|
+
fails "Integer#chr without argument when Encoding.default_internal is nil and self is between 128 and 255 (inclusive) returns a String containing self interpreted as a byte"
|
13
|
+
fails "Integer#chr without argument when Encoding.default_internal is nil and self is between 128 and 255 (inclusive) returns an ASCII-8BIT String"
|
14
|
+
fails "Integer#chr without argument when Encoding.default_internal is nil raises a RangeError is self is greater than 255"
|
15
|
+
fails "Integer#chr without argument when Encoding.default_internal is not nil and self is between 0 and 127 (inclusive) returns a String encoding self interpreted as a US-ASCII codepoint"
|
16
|
+
fails "Integer#chr without argument when Encoding.default_internal is not nil and self is between 0 and 127 (inclusive) returns a String encoding self interpreted as a US-ASCII codepoint"
|
17
|
+
fails "Integer#chr without argument when Encoding.default_internal is not nil and self is between 0 and 127 (inclusive) returns a US-ASCII String"
|
18
|
+
fails "Integer#chr without argument when Encoding.default_internal is not nil and self is between 0 and 127 (inclusive) returns a US-ASCII String"
|
19
|
+
fails "Integer#chr without argument when Encoding.default_internal is not nil and self is between 128 and 255 (inclusive) returns a String containing self interpreted as a byte"
|
20
|
+
fails "Integer#chr without argument when Encoding.default_internal is not nil and self is between 128 and 255 (inclusive) returns a String containing self interpreted as a byte"
|
21
|
+
fails "Integer#chr without argument when Encoding.default_internal is not nil and self is between 128 and 255 (inclusive) returns an ASCII-8BIT String"
|
22
|
+
fails "Integer#chr without argument when Encoding.default_internal is not nil and self is between 128 and 255 (inclusive) returns an ASCII-8BIT String"
|
23
|
+
fails "Integer#chr without argument when Encoding.default_internal is not nil and self is greater than 255 raises RangeError if self is invalid as a codepoint in the default internal encoding"
|
24
|
+
fails "Integer#chr without argument when Encoding.default_internal is not nil and self is greater than 255 raises RangeError if self is invalid as a codepoint in the default internal encoding"
|
25
|
+
fails "Integer#chr without argument when Encoding.default_internal is not nil and self is greater than 255 returns a String encoding self interpreted as a codepoint in the default internal encoding"
|
26
|
+
fails "Integer#chr without argument when Encoding.default_internal is not nil and self is greater than 255 returns a String encoding self interpreted as a codepoint in the default internal encoding"
|
27
|
+
fails "Integer#chr without argument when Encoding.default_internal is not nil and self is greater than 255 returns a String with the default internal encoding"
|
28
|
+
fails "Integer#chr without argument when Encoding.default_internal is not nil and self is greater than 255 returns a String with the default internal encoding"
|
29
|
+
fails "Integer#denominator returns 1"
|
30
|
+
fails "Integer#gcd accepts a Bignum argument"
|
31
|
+
fails "Integer#gcd works if self is a Bignum"
|
32
|
+
fails "Integer#gcdlcm accepts a Bignum argument"
|
33
|
+
fails "Integer#gcdlcm raises a TypeError unless the argument is an Integer"
|
34
|
+
fails "Integer#gcdlcm returns [self, self] if self is equal to the argument"
|
35
|
+
fails "Integer#gcdlcm returns a two-element Array"
|
36
|
+
fails "Integer#gcdlcm returns an Array"
|
37
|
+
fails "Integer#gcdlcm returns the greatest common divisor of self and argument as the first element"
|
38
|
+
fails "Integer#gcdlcm returns the least common multiple of self and argument as the last element"
|
39
|
+
fails "Integer#gcdlcm works if self is a Bignum"
|
40
|
+
fails "Integer#lcm accepts a Bignum argument"
|
41
|
+
fails "Integer#lcm works if self is a Bignum"
|
42
|
+
fails "Integer#numerator returns self"
|
43
|
+
fails "Integer#odd? returns true when self is an odd number"
|
44
|
+
fails "Integer#rationalize ignores a single argument"
|
45
|
+
fails "Integer#rationalize raises ArgumentError when passed more than one argument"
|
46
|
+
fails "Integer#rationalize returns a Rational object"
|
47
|
+
fails "Integer#rationalize uses 1 as the denominator"
|
48
|
+
fails "Integer#rationalize uses self as the numerator"
|
49
|
+
fails "Integer#round calls #to_int on the argument to convert it to an Integer"
|
50
|
+
fails "Integer#round raises a RangeError when passed Float::INFINITY"
|
51
|
+
fails "Integer#round raises a RangeError when passed a beyond signed int"
|
52
|
+
fails "Integer#round raises a TypeError when #to_int does not return an Integer"
|
53
|
+
fails "Integer#round raises a TypeError when its argument cannot be converted to an Integer"
|
54
|
+
fails "Integer#round raises a TypeError when passed a String"
|
55
|
+
fails "Integer#round returns itself rounded if passed a negative value"
|
56
|
+
fails "Integer#round rounds itself as a float if passed a positive precision"
|
57
|
+
fails "Integer#to_r constructs a rational number with 1 as the denominator"
|
58
|
+
fails "Integer#to_r constructs a rational number with self as the numerator"
|
59
|
+
fails "Integer#to_r raises an ArgumentError if given any arguments"
|
60
|
+
fails "Integer#to_r returns a Rational object"
|
61
|
+
fails "Integer#to_r works even if self is a Bignum"
|
62
|
+
fails "Integer#truncate returns self"
|
63
|
+
end
|
@@ -0,0 +1,395 @@
|
|
1
|
+
opal_filter "Kernel" do
|
2
|
+
fails "Kernel#=~ returns nil matching any object"
|
3
|
+
fails "Kernel#Array does not call #to_a on an Array" #something funky with the spec itself
|
4
|
+
fails "Kernel#Float raises a RangeError when passed a Complex argument"
|
5
|
+
fails "Kernel#Float returns a Float for Complex with only a real part"
|
6
|
+
fails "Kernel#String calls #to_s if #respond_to?(:to_s) returns true"
|
7
|
+
fails "Kernel#String raises a TypeError if #to_s does not exist"
|
8
|
+
fails "Kernel#String raises a TypeError if #to_s is not defined, even though #respond_to?(:to_s) returns true"
|
9
|
+
fails "Kernel#String raises a TypeError if respond_to? returns false for #to_s"
|
10
|
+
fails "Kernel#__dir__ returns the real name of the directory containing the currently-executing file"
|
11
|
+
fails "Kernel#__dir__ when used in eval with top level binding returns the real name of the directory containing the currently-executing file"
|
12
|
+
fails "Kernel#__send__ has an arity of -1"
|
13
|
+
fails "Kernel#__send__ raises a NameError if the corresponding singleton method can't be found"
|
14
|
+
fails "Kernel#block_given? is a private method"
|
15
|
+
fails "Kernel#class returns the class of the object"
|
16
|
+
fails "Kernel#clone copies modules included in the singleton class"
|
17
|
+
fails "Kernel#clone copies singleton methods"
|
18
|
+
fails "Kernel#clone preserves tainted state from the original"
|
19
|
+
fails "Kernel#clone preserves untrusted state from the original"
|
20
|
+
fails "Kernel#clone raises TypeError when called on nil"
|
21
|
+
fails "Kernel#clone raises a TypeError for FalseClass"
|
22
|
+
fails "Kernel#clone raises a TypeError for Fixnum"
|
23
|
+
fails "Kernel#clone raises a TypeError for NilClass"
|
24
|
+
fails "Kernel#clone raises a TypeError for Symbol"
|
25
|
+
fails "Kernel#clone raises a TypeError for TrueClass"
|
26
|
+
fails "Kernel#define_singleton_method defines a new singleton method for objects"
|
27
|
+
fails "Kernel#define_singleton_method raises a TypeError when the given method is no Method/Proc"
|
28
|
+
fails "Kernel#define_singleton_method when given an UnboundMethod adds the new method to the methods list"
|
29
|
+
fails "Kernel#define_singleton_method when given an UnboundMethod correctly calls the new method"
|
30
|
+
fails "Kernel#define_singleton_method when given an UnboundMethod defines any Child class method from any Parent's class methods"
|
31
|
+
fails "Kernel#define_singleton_method when given an UnboundMethod will raise when attempting to define an object's singleton method from another object's singleton method"
|
32
|
+
fails "Kernel#dup does not copy constants defined in the singleton class"
|
33
|
+
fails "Kernel#dup does not copy frozen state from the original"
|
34
|
+
fails "Kernel#dup preserves tainted state from the original"
|
35
|
+
fails "Kernel#dup preserves untrusted state from the original"
|
36
|
+
fails "Kernel#dup raises a TypeError for FalseClass"
|
37
|
+
fails "Kernel#dup raises a TypeError for Fixnum"
|
38
|
+
fails "Kernel#dup raises a TypeError for Symbol"
|
39
|
+
fails "Kernel#dup raises a TypeError for TrueClass"
|
40
|
+
fails "Kernel#eval allows a binding to be captured inside an eval"
|
41
|
+
fails "Kernel#eval allows creating a new class in a binding created by #eval"
|
42
|
+
fails "Kernel#eval allows creating a new class in a binding"
|
43
|
+
fails "Kernel#eval coerces an object to string"
|
44
|
+
fails "Kernel#eval does not alter the value of __FILE__ in the binding"
|
45
|
+
fails "Kernel#eval does not make Proc locals visible to evaluated code"
|
46
|
+
fails "Kernel#eval does not share locals across eval scopes"
|
47
|
+
fails "Kernel#eval doesn't accept a Proc object as a binding"
|
48
|
+
fails "Kernel#eval evaluates such that consts are scoped to the class of the eval"
|
49
|
+
fails "Kernel#eval evaluates within the scope of the eval"
|
50
|
+
fails "Kernel#eval finds a local in an enclosing scope"
|
51
|
+
fails "Kernel#eval finds locals in a nested eval"
|
52
|
+
fails "Kernel#eval includes file and line information in syntax error"
|
53
|
+
fails "Kernel#eval is a private method"
|
54
|
+
fails "Kernel#eval raises a LocalJumpError if there is no lambda-style closure in the chain"
|
55
|
+
fails "Kernel#eval unwinds through a Proc-style closure and returns from a lambda-style closure in the closure chain"
|
56
|
+
fails "Kernel#eval updates a local in a scope above a surrounding block scope"
|
57
|
+
fails "Kernel#eval updates a local in a scope above when modified in a nested block scope"
|
58
|
+
fails "Kernel#eval updates a local in a surrounding block scope"
|
59
|
+
fails "Kernel#eval updates a local in an enclosing scope"
|
60
|
+
fails "Kernel#eval uses the filename of the binding if none is provided"
|
61
|
+
fails "Kernel#eval uses the receiver as self inside the eval"
|
62
|
+
fails "Kernel#eval uses the same scope for local variables when given the same binding"
|
63
|
+
fails "Kernel#extend calls extend_object on argument"
|
64
|
+
fails "Kernel#extend calls extended on argument"
|
65
|
+
fails "Kernel#extend does not calls append_features on arguments metaclass"
|
66
|
+
fails "Kernel#extend makes the class a kind_of? the argument"
|
67
|
+
fails "Kernel#extend on frozen instance raises a RuntimeError"
|
68
|
+
fails "Kernel#extend on frozen instance raises an ArgumentError when no arguments given"
|
69
|
+
fails "Kernel#extend raises an ArgumentError when no arguments given"
|
70
|
+
fails "Kernel#extend requires multiple arguments"
|
71
|
+
fails "Kernel#freeze causes instance_variable_set to raise RuntimeError"
|
72
|
+
fails "Kernel#freeze causes mutative calls to raise RuntimeError"
|
73
|
+
fails "Kernel#freeze on a Float has no effect since it is already frozen"
|
74
|
+
fails "Kernel#freeze on integers has no effect since they are already frozen"
|
75
|
+
fails "Kernel#freeze on true, false and nil actually freezes them"
|
76
|
+
fails "Kernel#frozen? on a Float returns true"
|
77
|
+
fails "Kernel#frozen? on integers returns true"
|
78
|
+
fails "Kernel#inspect does not call #to_s if it is defined"
|
79
|
+
fails "Kernel#inspect returns a tainted string if self is tainted"
|
80
|
+
fails "Kernel#inspect returns an untrusted string if self is untrusted"
|
81
|
+
fails "Kernel#instance_variable_defined? raises a TypeError if passed an Object not defining #to_str"
|
82
|
+
fails "Kernel#instance_variable_get raises a NameError when passed just '@'"
|
83
|
+
fails "Kernel#instance_variable_get raises a NameError when the conversion result does not start with an '@'"
|
84
|
+
fails "Kernel#instance_variable_get raises a TypeError when the passed argument can't be converted to a String"
|
85
|
+
fails "Kernel#instance_variable_get raises a TypeError when the passed argument does not respond to #to_str"
|
86
|
+
fails "Kernel#instance_variable_get returns the value of the passed instance variable that is referred to by the conversion result"
|
87
|
+
fails "Kernel#instance_variable_get tries to convert the passed argument to a String using #to_str"
|
88
|
+
fails "Kernel#instance_variable_get when passed Fixnum raises a TypeError"
|
89
|
+
fails "Kernel#instance_variable_get when passed String raises a NameError when passed '@' as an instance variable name"
|
90
|
+
fails "Kernel#instance_variable_get when passed String raises a NameError when the passed String does not start with an '@'"
|
91
|
+
fails "Kernel#instance_variable_get when passed String raises a NameError when the passed String is an invalid instance variable name"
|
92
|
+
fails "Kernel#instance_variable_get when passed Symbol raises a NameError when passed :@ as an instance variable name"
|
93
|
+
fails "Kernel#instance_variable_get when passed Symbol raises a NameError when the passed Symbol does not start with an '@'"
|
94
|
+
fails "Kernel#instance_variable_get when passed Symbol raises a NameError when the passed Symbol is an invalid instance variable name"
|
95
|
+
fails "Kernel#instance_variable_set accepts as instance variable name any instance of a class that responds to to_str"
|
96
|
+
fails "Kernel#instance_variable_set on frozen objects keeps stored object after any exceptions"
|
97
|
+
fails "Kernel#instance_variable_set on frozen objects raises a RuntimeError when passed replacement is different from stored object"
|
98
|
+
fails "Kernel#instance_variable_set on frozen objects raises a RuntimeError when passed replacement is identical to stored object"
|
99
|
+
fails "Kernel#instance_variable_set raises a NameError exception if the argument is an invalid instance variable name"
|
100
|
+
fails "Kernel#instance_variable_set raises a NameError exception if the argument is not of form '@x'"
|
101
|
+
fails "Kernel#instance_variable_set raises a NameError if pass an object that cannot be a symbol"
|
102
|
+
fails "Kernel#instance_variable_set raises a NameError if the passed object, when coerced with to_str, does not start with @"
|
103
|
+
fails "Kernel#instance_variable_set raises a NameError when the argument is '@'"
|
104
|
+
fails "Kernel#instance_variable_set raises a TypeError if the instance variable name is a Fixnum"
|
105
|
+
fails "Kernel#instance_variable_set raises a TypeError if the instance variable name is an object that does not respond to to_str"
|
106
|
+
fails "Kernel#instance_variables immediate values returns the correct array if an instance variable is added"
|
107
|
+
fails "Kernel#instance_variables regular objects returns an empty array if no instance variables are defined"
|
108
|
+
fails "Kernel#instance_variables regular objects returns the correct array if an instance variable is added"
|
109
|
+
fails "Kernel#is_a? raises a TypeError if given an object that is not a Class nor a Module"
|
110
|
+
fails "Kernel#is_a? returns true if given a Module that object has been extended with"
|
111
|
+
fails "Kernel#iterator? is a private method"
|
112
|
+
fails "Kernel#kind_of? raises a TypeError if given an object that is not a Class nor a Module"
|
113
|
+
fails "Kernel#kind_of? returns true if given a Module that object has been extended with"
|
114
|
+
fails "Kernel#local_variables contains locals as they are added"
|
115
|
+
fails "Kernel#local_variables is a private method"
|
116
|
+
fails "Kernel#local_variables is accessible from bindings"
|
117
|
+
fails "Kernel#local_variables is accessible in eval"
|
118
|
+
fails "Kernel#method can be called even if we only repond_to_missing? method, true"
|
119
|
+
fails "Kernel#method raises a NameError for an invalid singleton method name"
|
120
|
+
fails "Kernel#method returns a method object if we repond_to_missing? method"
|
121
|
+
fails "Kernel#method will see an alias of the original method as == when in a derived class"
|
122
|
+
fails "Kernel#method_missing for a Class raises a NoMethodError when a private method is called"
|
123
|
+
fails "Kernel#method_missing for a Class raises a NoMethodError when a protected method is called"
|
124
|
+
fails "Kernel#method_missing for a Class with #method_missing defined is called when an private method is called"
|
125
|
+
fails "Kernel#method_missing for a Class with #method_missing defined is called when an protected method is called"
|
126
|
+
fails "Kernel#method_missing for a Module raises a NoMethodError when a private method is called"
|
127
|
+
fails "Kernel#method_missing for a Module raises a NoMethodError when a protected method is called"
|
128
|
+
fails "Kernel#method_missing for a Module with #method_missing defined is called when a private method is called"
|
129
|
+
fails "Kernel#method_missing for a Module with #method_missing defined is called when a protected method is called"
|
130
|
+
fails "Kernel#method_missing for an instance raises a NoMethodError when a private method is called"
|
131
|
+
fails "Kernel#method_missing for an instance raises a NoMethodError when a protected method is called"
|
132
|
+
fails "Kernel#method_missing for an instance with #method_missing defined is called when an private method is called"
|
133
|
+
fails "Kernel#method_missing for an instance with #method_missing defined is called when an protected method is called"
|
134
|
+
fails "Kernel#methods returns private singleton methods defined by obj.meth"
|
135
|
+
fails "Kernel#methods returns singleton methods defined by obj.meth"
|
136
|
+
fails "Kernel#methods returns singleton methods defined in 'class << self' when it follows 'private'"
|
137
|
+
fails "Kernel#methods returns singleton methods defined in 'class << self'"
|
138
|
+
fails "Kernel#methods returns the publicly accessible methods in the object, its ancestors and mixed-in modules"
|
139
|
+
fails "Kernel#methods returns the publicly accessible methods of the object"
|
140
|
+
fails "Kernel#object_id returns a different value for two Bignum literals"
|
141
|
+
fails "Kernel#object_id returns a different value for two Float literals"
|
142
|
+
fails "Kernel#object_id returns a different value for two String literals"
|
143
|
+
fails "Kernel#p flushes output if receiver is a File"
|
144
|
+
fails "Kernel#p is a private method"
|
145
|
+
fails "Kernel#p is not affected by setting $\\, $/ or $,"
|
146
|
+
fails "Kernel#print is a private method"
|
147
|
+
fails "Kernel#printf is a private method"
|
148
|
+
fails "Kernel#private_methods returns a list of the names of privately accessible methods in the object and its ancestors and mixed-in modules"
|
149
|
+
fails "Kernel#private_methods returns a list of the names of privately accessible methods in the object"
|
150
|
+
fails "Kernel#private_methods returns private methods mixed in to the metaclass"
|
151
|
+
fails "Kernel#private_methods when not passed an argument returns a unique list for a class including a module"
|
152
|
+
fails "Kernel#private_methods when not passed an argument returns a unique list for a subclass of a class that includes a module"
|
153
|
+
fails "Kernel#private_methods when not passed an argument returns a unique list for an object extended by a module"
|
154
|
+
fails "Kernel#private_methods when passed false returns a list of private methods in without its ancestors"
|
155
|
+
fails "Kernel#private_methods when passed nil returns a list of private methods in without its ancestors"
|
156
|
+
fails "Kernel#private_methods when passed true returns a unique list for a class including a module"
|
157
|
+
fails "Kernel#private_methods when passed true returns a unique list for a subclass of a class that includes a module"
|
158
|
+
fails "Kernel#private_methods when passed true returns a unique list for an object extended by a module"
|
159
|
+
fails "Kernel#proc uses the implicit block from an enclosing method"
|
160
|
+
fails "Kernel#protected_methods returns a list of the names of protected methods accessible in the object and from its ancestors and mixed-in modules"
|
161
|
+
fails "Kernel#protected_methods returns a list of the names of protected methods accessible in the object"
|
162
|
+
fails "Kernel#protected_methods returns methods mixed in to the metaclass"
|
163
|
+
fails "Kernel#protected_methods when not passed an argument returns a unique list for a class including a module"
|
164
|
+
fails "Kernel#protected_methods when not passed an argument returns a unique list for a subclass of a class that includes a module"
|
165
|
+
fails "Kernel#protected_methods when not passed an argument returns a unique list for an object extended by a module"
|
166
|
+
fails "Kernel#protected_methods when passed false returns a list of protected methods in without its ancestors"
|
167
|
+
fails "Kernel#protected_methods when passed nil returns a list of protected methods in without its ancestors"
|
168
|
+
fails "Kernel#protected_methods when passed true returns a unique list for a class including a module"
|
169
|
+
fails "Kernel#protected_methods when passed true returns a unique list for a subclass of a class that includes a module"
|
170
|
+
fails "Kernel#protected_methods when passed true returns a unique list for an object extended by a module"
|
171
|
+
fails "Kernel#public_method changes the method called for super on a target aliased method"
|
172
|
+
fails "Kernel#public_method raises a NameError if we only repond_to_missing? method, true"
|
173
|
+
fails "Kernel#public_method returns a method object for a valid method"
|
174
|
+
fails "Kernel#public_method returns a method object for a valid singleton method"
|
175
|
+
fails "Kernel#public_method returns a method object if we repond_to_missing? method"
|
176
|
+
fails "Kernel#public_methods returns a list of the names of publicly accessible methods in the object and its ancestors and mixed-in modules"
|
177
|
+
fails "Kernel#public_methods returns a list of the names of publicly accessible methods in the object"
|
178
|
+
fails "Kernel#public_methods when passed false returns a list of public methods in without its ancestors"
|
179
|
+
fails "Kernel#public_methods when passed nil returns a list of public methods in without its ancestors"
|
180
|
+
fails "Kernel#public_send has an arity of -1"
|
181
|
+
fails "Kernel#public_send raises a NameError if the corresponding singleton method can't be found"
|
182
|
+
fails "Kernel#public_send raises a NoMethodError if the method is protected"
|
183
|
+
fails "Kernel#public_send raises a NoMethodError if the named method is an alias of a private method"
|
184
|
+
fails "Kernel#public_send raises a NoMethodError if the named method is an alias of a protected method"
|
185
|
+
fails "Kernel#public_send raises a NoMethodError if the named method is private"
|
186
|
+
fails "Kernel#puts calls to_s before writing non-string objects"
|
187
|
+
fails "Kernel#puts delegates to $stdout.puts"
|
188
|
+
fails "Kernel#puts does not write a newline after objects that end in newlines"
|
189
|
+
fails "Kernel#puts flattens a nested array before writing it"
|
190
|
+
fails "Kernel#puts ignores the $/ separator global"
|
191
|
+
fails "Kernel#puts is a private method"
|
192
|
+
fails "Kernel#puts writes [...] for a recursive array arg"
|
193
|
+
fails "Kernel#puts writes a newline after objects that do not end in newlines"
|
194
|
+
fails "Kernel#puts writes a newline when given nil as an arg"
|
195
|
+
fails "Kernel#puts writes each arg if given several"
|
196
|
+
fails "Kernel#puts writes just a newline when given no args"
|
197
|
+
fails "Kernel#remove_instance_variable is a public method"
|
198
|
+
fails "Kernel#remove_instance_variable raises a TypeError if passed an Object not defining #to_str"
|
199
|
+
fails "Kernel#remove_instance_variable when passed a String removes the instance variable"
|
200
|
+
fails "Kernel#remove_instance_variable when passed a String returns the instance variable's value"
|
201
|
+
fails "Kernel#remove_instance_variable when passed a Symbol removes the instance variable"
|
202
|
+
fails "Kernel#remove_instance_variable when passed a Symbol returns the instance variable's value"
|
203
|
+
fails "Kernel#remove_instance_variable when passed an Object calls #to_str to convert the argument"
|
204
|
+
fails "Kernel#respond_to? does not change method visibility when finding private method"
|
205
|
+
fails "Kernel#respond_to? is a public method"
|
206
|
+
fails "Kernel#respond_to? is only an instance method"
|
207
|
+
fails "Kernel#respond_to? returns false even if obj responds to the given private method (include_private = false)"
|
208
|
+
fails "Kernel#respond_to? returns false if obj responds to the given private method"
|
209
|
+
fails "Kernel#respond_to? returns false if obj responds to the given protected method (include_private = false)"
|
210
|
+
fails "Kernel#respond_to? returns false if obj responds to the given protected method"
|
211
|
+
fails "Kernel#respond_to? throws a type error if argument can't be coerced into a Symbol"
|
212
|
+
fails "Kernel#respond_to_missing? causes #respond_to? to return false if called and returning false"
|
213
|
+
fails "Kernel#respond_to_missing? causes #respond_to? to return false if called and returning nil"
|
214
|
+
fails "Kernel#respond_to_missing? causes #respond_to? to return true if called and not returning false"
|
215
|
+
fails "Kernel#respond_to_missing? is a private method"
|
216
|
+
fails "Kernel#respond_to_missing? is called a 2nd argument of false when #respond_to? is called with only 1 argument"
|
217
|
+
fails "Kernel#respond_to_missing? is called for missing class methods"
|
218
|
+
fails "Kernel#respond_to_missing? is called when #respond_to? would return false"
|
219
|
+
fails "Kernel#respond_to_missing? is called when obj responds to the given private method, include_private = false"
|
220
|
+
fails "Kernel#respond_to_missing? is called when obj responds to the given protected method, include_private = false"
|
221
|
+
fails "Kernel#respond_to_missing? is called with a 2nd argument of false when #respond_to? is"
|
222
|
+
fails "Kernel#respond_to_missing? is called with true as the second argument when #respond_to? is"
|
223
|
+
fails "Kernel#respond_to_missing? is not called when #respond_to? would return true"
|
224
|
+
fails "Kernel#respond_to_missing? is only an instance method"
|
225
|
+
fails "Kernel#respond_to_missing? isn't called when obj responds to the given private method, include_private = true"
|
226
|
+
fails "Kernel#respond_to_missing? isn't called when obj responds to the given protected method, include_private = true"
|
227
|
+
fails "Kernel#respond_to_missing? isn't called when obj responds to the given public method"
|
228
|
+
fails "Kernel#respond_to_missing? isn't called when obj responds to the given public method, include_private = true"
|
229
|
+
fails "Kernel#send has an arity of -1"
|
230
|
+
fails "Kernel#send raises a NameError if the corresponding singleton method can't be found"
|
231
|
+
fails "Kernel#singleton_class raises TypeError for Fixnum"
|
232
|
+
fails "Kernel#singleton_class raises TypeError for Symbol"
|
233
|
+
fails "Kernel#singleton_class? returns false for other objects"
|
234
|
+
fails "Kernel#singleton_class? returns true for singleton classes"
|
235
|
+
fails "Kernel#singleton_class? with singleton values returns false for false's singleton class"
|
236
|
+
fails "Kernel#singleton_class? with singleton values returns false for nil's singleton class"
|
237
|
+
fails "Kernel#singleton_class? with singleton values returns false for true's singleton class"
|
238
|
+
fails "Kernel#singleton_methods when not passed an argument does not return any included methods for a class including a module"
|
239
|
+
fails "Kernel#singleton_methods when not passed an argument does not return any included methods for a module including a module"
|
240
|
+
fails "Kernel#singleton_methods when not passed an argument does not return private class methods for a class"
|
241
|
+
fails "Kernel#singleton_methods when not passed an argument does not return private inherited singleton methods for a class including a module"
|
242
|
+
fails "Kernel#singleton_methods when not passed an argument does not return private inherited singleton methods for a module including a module"
|
243
|
+
fails "Kernel#singleton_methods when not passed an argument does not return private inherited singleton methods for a subclass including a module"
|
244
|
+
fails "Kernel#singleton_methods when not passed an argument does not return private inherited singleton methods for a subclass of a class including a module"
|
245
|
+
fails "Kernel#singleton_methods when not passed an argument does not return private inherited singleton methods for a subclass of a class that includes a module, where the subclass also includes a module"
|
246
|
+
fails "Kernel#singleton_methods when not passed an argument does not return private inherited singleton methods for a subclass"
|
247
|
+
fails "Kernel#singleton_methods when not passed an argument does not return private module methods for a module"
|
248
|
+
fails "Kernel#singleton_methods when not passed an argument does not return private singleton methods for a class extended with a module"
|
249
|
+
fails "Kernel#singleton_methods when not passed an argument does not return private singleton methods for an object extended with a module"
|
250
|
+
fails "Kernel#singleton_methods when not passed an argument does not return private singleton methods for an object extended with two modules"
|
251
|
+
fails "Kernel#singleton_methods when not passed an argument does not return private singleton methods for an object extented with a module including a module"
|
252
|
+
fails "Kernel#singleton_methods when not passed an argument returns a unique list for a subclass including a module"
|
253
|
+
fails "Kernel#singleton_methods when not passed an argument returns a unique list for a subclass"
|
254
|
+
fails "Kernel#singleton_methods when not passed an argument returns a unique list for an object extended with a module"
|
255
|
+
fails "Kernel#singleton_methods when not passed an argument returns an empty Array for an object with no singleton methods"
|
256
|
+
fails "Kernel#singleton_methods when not passed an argument returns the names of class methods for a class"
|
257
|
+
fails "Kernel#singleton_methods when not passed an argument returns the names of inherited singleton methods for a class extended with a module"
|
258
|
+
fails "Kernel#singleton_methods when not passed an argument returns the names of inherited singleton methods for a subclass including a module"
|
259
|
+
fails "Kernel#singleton_methods when not passed an argument returns the names of inherited singleton methods for a subclass of a class including a module"
|
260
|
+
fails "Kernel#singleton_methods when not passed an argument returns the names of inherited singleton methods for a subclass of a class that includes a module, where the subclass also includes a module"
|
261
|
+
fails "Kernel#singleton_methods when not passed an argument returns the names of inherited singleton methods for a subclass"
|
262
|
+
fails "Kernel#singleton_methods when not passed an argument returns the names of module methods for a module"
|
263
|
+
fails "Kernel#singleton_methods when not passed an argument returns the names of singleton methods for an object extented with a module including a module"
|
264
|
+
fails "Kernel#singleton_methods when not passed an argument returns the names of singleton methods for an object extented with a module"
|
265
|
+
fails "Kernel#singleton_methods when not passed an argument returns the names of singleton methods for an object extented with two modules"
|
266
|
+
fails "Kernel#singleton_methods when not passed an argument returns the names of singleton methods for an object"
|
267
|
+
fails "Kernel#singleton_methods when passed false does not return any included methods for a class including a module"
|
268
|
+
fails "Kernel#singleton_methods when passed false does not return any included methods for a module including a module"
|
269
|
+
fails "Kernel#singleton_methods when passed false does not return names of inherited singleton methods for a subclass"
|
270
|
+
fails "Kernel#singleton_methods when passed false does not return private class methods for a class"
|
271
|
+
fails "Kernel#singleton_methods when passed false does not return private inherited singleton methods for a class including a module"
|
272
|
+
fails "Kernel#singleton_methods when passed false does not return private inherited singleton methods for a module including a module"
|
273
|
+
fails "Kernel#singleton_methods when passed false does not return private inherited singleton methods for a subclass including a module"
|
274
|
+
fails "Kernel#singleton_methods when passed false does not return private inherited singleton methods for a subclass of a class including a module"
|
275
|
+
fails "Kernel#singleton_methods when passed false does not return private inherited singleton methods for a subclass of a class that includes a module, where the subclass also includes a module"
|
276
|
+
fails "Kernel#singleton_methods when passed false does not return private inherited singleton methods for a subclass"
|
277
|
+
fails "Kernel#singleton_methods when passed false does not return private module methods for a module"
|
278
|
+
fails "Kernel#singleton_methods when passed false does not return private singleton methods for a class extended with a module"
|
279
|
+
fails "Kernel#singleton_methods when passed false does not return private singleton methods for an object extended with a module"
|
280
|
+
fails "Kernel#singleton_methods when passed false does not return private singleton methods for an object extended with two modules"
|
281
|
+
fails "Kernel#singleton_methods when passed false does not return private singleton methods for an object extented with a module including a module"
|
282
|
+
fails "Kernel#singleton_methods when passed false does not return the names of inherited singleton methods for a class extended with a module"
|
283
|
+
fails "Kernel#singleton_methods when passed false returns an empty Array for an object extended with a module including a module"
|
284
|
+
fails "Kernel#singleton_methods when passed false returns an empty Array for an object extented with a module"
|
285
|
+
fails "Kernel#singleton_methods when passed false returns an empty Array for an object extented with two modules"
|
286
|
+
fails "Kernel#singleton_methods when passed false returns an empty Array for an object with no singleton methods"
|
287
|
+
fails "Kernel#singleton_methods when passed false returns the names of class methods for a class"
|
288
|
+
fails "Kernel#singleton_methods when passed false returns the names of module methods for a module"
|
289
|
+
fails "Kernel#singleton_methods when passed false returns the names of singleton methods for an object"
|
290
|
+
fails "Kernel#singleton_methods when passed false returns the names of singleton methods of the subclass"
|
291
|
+
fails "Kernel#singleton_methods when passed true does not return any included methods for a class including a module"
|
292
|
+
fails "Kernel#singleton_methods when passed true does not return any included methods for a module including a module"
|
293
|
+
fails "Kernel#singleton_methods when passed true does not return private class methods for a class"
|
294
|
+
fails "Kernel#singleton_methods when passed true does not return private inherited singleton methods for a class including a module"
|
295
|
+
fails "Kernel#singleton_methods when passed true does not return private inherited singleton methods for a module including a module"
|
296
|
+
fails "Kernel#singleton_methods when passed true does not return private inherited singleton methods for a subclass including a module"
|
297
|
+
fails "Kernel#singleton_methods when passed true does not return private inherited singleton methods for a subclass of a class including a module"
|
298
|
+
fails "Kernel#singleton_methods when passed true does not return private inherited singleton methods for a subclass of a class that includes a module, where the subclass also includes a module"
|
299
|
+
fails "Kernel#singleton_methods when passed true does not return private inherited singleton methods for a subclass"
|
300
|
+
fails "Kernel#singleton_methods when passed true does not return private module methods for a module"
|
301
|
+
fails "Kernel#singleton_methods when passed true does not return private singleton methods for a class extended with a module"
|
302
|
+
fails "Kernel#singleton_methods when passed true does not return private singleton methods for an object extended with a module"
|
303
|
+
fails "Kernel#singleton_methods when passed true does not return private singleton methods for an object extended with two modules"
|
304
|
+
fails "Kernel#singleton_methods when passed true does not return private singleton methods for an object extented with a module including a module"
|
305
|
+
fails "Kernel#singleton_methods when passed true returns a unique list for a subclass including a module"
|
306
|
+
fails "Kernel#singleton_methods when passed true returns a unique list for a subclass"
|
307
|
+
fails "Kernel#singleton_methods when passed true returns a unique list for an object extended with a module"
|
308
|
+
fails "Kernel#singleton_methods when passed true returns an empty Array for an object with no singleton methods"
|
309
|
+
fails "Kernel#singleton_methods when passed true returns the names of class methods for a class"
|
310
|
+
fails "Kernel#singleton_methods when passed true returns the names of inherited singleton methods for a class extended with a module"
|
311
|
+
fails "Kernel#singleton_methods when passed true returns the names of inherited singleton methods for a subclass including a module"
|
312
|
+
fails "Kernel#singleton_methods when passed true returns the names of inherited singleton methods for a subclass of a class including a module"
|
313
|
+
fails "Kernel#singleton_methods when passed true returns the names of inherited singleton methods for a subclass of a class that includes a module, where the subclass also includes a module"
|
314
|
+
fails "Kernel#singleton_methods when passed true returns the names of inherited singleton methods for a subclass"
|
315
|
+
fails "Kernel#singleton_methods when passed true returns the names of module methods for a module"
|
316
|
+
fails "Kernel#singleton_methods when passed true returns the names of singleton methods for an object extented with a module including a module"
|
317
|
+
fails "Kernel#singleton_methods when passed true returns the names of singleton methods for an object extented with a module"
|
318
|
+
fails "Kernel#singleton_methods when passed true returns the names of singleton methods for an object extented with two modules"
|
319
|
+
fails "Kernel#singleton_methods when passed true returns the names of singleton methods for an object"
|
320
|
+
fails "Kernel#warn requires multiple arguments"
|
321
|
+
fails "Kernel.Array does not call #to_a on an Array" #something funky with the spec itself
|
322
|
+
fails "Kernel.Complex() when passed Numerics n1 and n2 and at least one responds to #real? with false returns n1 + n2 * Complex(0, 1)"
|
323
|
+
fails "Kernel.Complex() when passed Numerics n1 and n2 and at least one responds to #real? with false returns n1 + n2 * Complex(0, 1)"
|
324
|
+
fails "Kernel.Complex() when passed Numerics n1 and n2 and at least one responds to #real? with false returns n1 + n2 * Complex(0, 1)"
|
325
|
+
fails "Kernel.Complex() when passed [Complex, Complex] returns a new Complex number based on the two given numbers"
|
326
|
+
fails "Kernel.Complex() when passed [Complex] returns the passed Complex number"
|
327
|
+
fails "Kernel.Complex() when passed [Integer, Integer] returns a new Complex number"
|
328
|
+
fails "Kernel.Complex() when passed [Integer] returns a new Complex number with 0 as the imaginary component"
|
329
|
+
fails "Kernel.Complex() when passed a Numeric which responds to #real? with false returns the passed argument"
|
330
|
+
fails "Kernel.Complex() when passed a Numeric which responds to #real? with true returns a Complex with the passed argument as the real component and 0 as the imaginary component"
|
331
|
+
fails "Kernel.Complex() when passed a non-Numeric second argument raises TypeError"
|
332
|
+
fails "Kernel.Complex() when passed a single non-Numeric coerces the passed argument using #to_c"
|
333
|
+
fails "Kernel.Complex() when passed two Numerics and both respond to #real? with true returns a Complex with the passed arguments as real and imaginary components respectively"
|
334
|
+
fails "Kernel.Float raises a RangeError when passed a Complex argument"
|
335
|
+
fails "Kernel.Float returns a Float for Complex with only a real part"
|
336
|
+
fails "Kernel.Rational passed Integer returns a new Rational number with 1 as the denominator"
|
337
|
+
fails "Kernel.Rational passed two integers reduces the Rational"
|
338
|
+
fails "Kernel.Rational passed two integers returns a new Rational number"
|
339
|
+
fails "Kernel.Rational when passed a String converts the String to a Rational using the same method as String#to_r"
|
340
|
+
fails "Kernel.Rational when passed a String does not use the same method as Float#to_r"
|
341
|
+
fails "Kernel.Rational when passed a String raises a TypeError if the first argument is a Symbol"
|
342
|
+
fails "Kernel.Rational when passed a String raises a TypeError if the first argument is nil"
|
343
|
+
fails "Kernel.Rational when passed a String raises a TypeError if the second argument is a Symbol"
|
344
|
+
fails "Kernel.Rational when passed a String raises a TypeError if the second argument is nil"
|
345
|
+
fails "Kernel.Rational when passed a String scales the Rational value of the first argument by the Rational value of the second"
|
346
|
+
fails "Kernel.Rational when passed a String when passed a Complex raises a RangeError if the imaginary part is not 0"
|
347
|
+
fails "Kernel.Rational when passed a String when passed a Complex returns a Rational from the real part if the imaginary part is 0"
|
348
|
+
fails "Kernel.Rational when passed a String when passed a Numeric calls #to_r to convert the first argument to a Rational"
|
349
|
+
fails "Kernel.String calls #to_s if #respond_to?(:to_s) returns true"
|
350
|
+
fails "Kernel.String raises a TypeError if #to_s does not exist"
|
351
|
+
fails "Kernel.String raises a TypeError if #to_s is not defined, even though #respond_to?(:to_s) returns true"
|
352
|
+
fails "Kernel.String raises a TypeError if respond_to? returns false for #to_s"
|
353
|
+
fails "Kernel.__callee__ returns method name even from eval"
|
354
|
+
fails "Kernel.__callee__ returns method name even from send"
|
355
|
+
fails "Kernel.__callee__ returns the aliased name when aliased method"
|
356
|
+
fails "Kernel.__callee__ returns the caller from a define_method called from the same class"
|
357
|
+
fails "Kernel.__callee__ returns the caller from block inside define_method too"
|
358
|
+
fails "Kernel.__callee__ returns the caller from blocks too"
|
359
|
+
fails "Kernel.__callee__ returns the caller from define_method too"
|
360
|
+
fails "Kernel.__method__ returns method name even from eval"
|
361
|
+
fails "Kernel.__method__ returns method name even from send"
|
362
|
+
fails "Kernel.__method__ returns the caller from block inside define_method too"
|
363
|
+
fails "Kernel.__method__ returns the caller from blocks too"
|
364
|
+
fails "Kernel.__method__ returns the caller from define_method too"
|
365
|
+
fails "Kernel.global_variables finds subset starting with std"
|
366
|
+
fails "Kernel.global_variables is a private method"
|
367
|
+
fails "Kernel.lambda accepts 0 arguments when used with ||"
|
368
|
+
fails "Kernel.lambda checks the arity of the call when no args are specified"
|
369
|
+
fails "Kernel.lambda checks the arity when 1 arg is specified"
|
370
|
+
fails "Kernel.lambda does not check the arity when passing a Proc with &"
|
371
|
+
fails "Kernel.lambda is a private method"
|
372
|
+
fails "Kernel.lambda raises an ArgumentError when no block is given"
|
373
|
+
fails "Kernel.lambda returns from the kind_of? itself, not the creation site of the kind_of?"
|
374
|
+
fails "Kernel.lambda strictly checks the arity when 0 or 2..inf args are specified"
|
375
|
+
fails "Kernel.loop is a private method"
|
376
|
+
fails "Kernel.loop rescues StopIteration"
|
377
|
+
fails "Kernel.loop rescues StopIteration's subclasses"
|
378
|
+
fails "Kernel.loop returns an enumerator if no block given"
|
379
|
+
fails "Kernel.loop when no block is given returned Enumerator size returns Float::INFINITY"
|
380
|
+
fails "Kernel.printf calls write on the first argument when it is not a string"
|
381
|
+
fails "Kernel.printf writes to stdout when a string is the first argument"
|
382
|
+
fails "Kernel.proc is a private method"
|
383
|
+
fails "Kernel.rand is a private method"
|
384
|
+
fails "Kernel.respond_to? indicates if a singleton object responds to a particular message"
|
385
|
+
fails "Kernel.srand accepts a Bignum as a seed"
|
386
|
+
fails "Kernel.srand accepts a negative seed"
|
387
|
+
fails "Kernel.srand accepts and uses a seed of 0"
|
388
|
+
fails "Kernel.srand calls #to_int on seed"
|
389
|
+
fails "Kernel.srand is a private method"
|
390
|
+
fails "Kernel.srand returns the previous seed value"
|
391
|
+
fails "Kernel.srand seeds the RNG correctly and repeatably"
|
392
|
+
fails "Object#instance_of? raises a TypeError if given an object that is not a Class nor a Module"
|
393
|
+
fails "self.send(:block_given?) returns false when a method defined by define_method is called with a block"
|
394
|
+
fails "self.send(:block_given?) returns true if and only if a block is supplied"
|
395
|
+
end
|