COMMIT Rational: Stub #ceil, #div, #fdiv, #floor, #modulo, #quo, etc. http://github.com/rubyspec/rubyspec/commit/3d16b8dd8c004529eef9bba83220183a9bd696ad COMMIT ARGF#skip doesn't raise when no more files (bug #1633) http://github.com/rubyspec/rubyspec/commit/a664b35fb833f7a5ae2c06a30116cf12486fbc6f COMMIT ARGF#close: Fix typo. http://github.com/rubyspec/rubyspec/commit/531a6c746206f4dc8360ab28f70f602a07992b3f COMMIT ARGF#close: Should raise IOError on closed stream (bug #1633) http://github.com/rubyspec/rubyspec/commit/88fccc9e26cd391c42a967cc714619ce00e8ee54 COMMIT TODO: Unify treatment of 1.9 bugs after brixen's comments. http://github.com/rubyspec/rubyspec/commit/f84b399de3a00506acdc56bea6cde1903795981c COMMIT ARGF#close: should work with STDIN;guard bug #1633. http://github.com/rubyspec/rubyspec/commit/8d812283e56891abec388b76d16ab26da29f8912 COMMIT ARGF#each_line: Write test for bug #1633; guard it. http://github.com/rubyspec/rubyspec/commit/90b4b0a64a63eaf043dba94ef03f756ace6608dc COMMIT ARGF#each_char: Guard bug #1633 (1.9 regression; fixed on HEAD) http://github.com/rubyspec/rubyspec/commit/cba9de60f36d47606ebcd619dc9f07fd2ffd9d1d COMMIT ARGF#each_byte: Guard bug #1633 (1.9 regression; fixed on HEAD) http://github.com/rubyspec/rubyspec/commit/e1b25fc2445a345a868be6c6d05cc001e21c68ae COMMIT Integer#gcdlcm: Specify 1.9 method. http://github.com/rubyspec/rubyspec/commit/e0b377ac9f57e4599232c2ac3f382f13a33d356f COMMIT Integer#lcm: Specify 1.9 method. http://github.com/rubyspec/rubyspec/commit/1c30fcba814bfe3d293839f88aeb8d54eb80b83f COMMIT Integer#to_r: Specify 1.9 method. http://github.com/rubyspec/rubyspec/commit/5ab7e2d6a91cb01d84ae714b921a03661000b69e COMMIT Integer#gcd: Specify 1.9 method. http://github.com/rubyspec/rubyspec/commit/0d93edde8a25d464a9a4babeb345014c5ce298e0 COMMIT Integer#numerator: Specify 1.9 method. http://github.com/rubyspec/rubyspec/commit/7d37b6bada0aff520a17aa4aa06c392fd194d4d8 COMMIT Integer#denominator: Specify 1.9 method. http://github.com/rubyspec/rubyspec/commit/1b77d1d62ea1b45e2103497f1a4a32a129afc8cd --- 20090616T080441 +++ 20090617T080426 @@ -1,8921 +1,8921 @@ IMAPTest#test_imaps_with_ca_file: s: . IMAPTest#test_starttls: s: . IMAPTest#test_unexpected_eof: s: . -MinitestSpec#test_needs_to_verify_identity: s: . -MinitestSpec#test_needs_to_be_able_to_catch_a_minitest_assertion_exception: s: . -MinitestSpec#test_needs_to_verify_equality: s: . -MinitestSpec#test_needs_to_verify_types_of_objects: s: . MinitestSpec#test_needs_to_verify_floats_within_a_delta: s: . -MinitestSpec#test_needs_to_verify_regexp_matches: s: . -MinitestSpec#test_needs_to_verify_kinds_of_objects: s: . -MinitestSpec#test_needs_to_verify_using_respond_to: s: . -MinitestSpec#test_needs_to_verify_inequality: s: . MinitestSpec#test_needs_to_verify_nil: s: . -MinitestSpec#test_needs_to_verify_non_nil: s: . -MinitestSpec#test_needs_raise_if_an_expected_exception_is_not_raised: s: . MinitestSpec#test_needs_to_have_all_methods_named_well: s: . -MinitestSpec#test_needs_to_verify_using_any_operator: s: . +MinitestSpec#test_needs_to_verify_equality: s: . MinitestSpec#test_needs_to_catch_an_unexpected_exception: s: . +MinitestSpec#test_needs_to_verify_throw: s: . +MinitestSpec#test_needs_to_verify_types_of_objects: s: . +MinitestSpec#test_needs_raise_if_an_expected_exception_is_not_raised: s: . +MinitestSpec#test_needs_to_be_able_to_catch_a_minitest_assertion_exception: s: . +MinitestSpec#test_needs_to_verify_using_any_operator: s: . +MinitestSpec#test_needs_to_verify_identity: s: . MinitestSpec#test_needs_to_verify_mismatch: s: . -MinitestSpec#test_needs_to_verify_non_identity: s: . +MinitestSpec#test_needs_to_verify_non_nil: s: . MinitestSpec#test_needs_to_catch_an_expected_exception: s: . -MinitestSpec#test_needs_to_verify_throw: s: . +MinitestSpec#test_needs_to_verify_using_respond_to: s: . +MinitestSpec#test_needs_to_verify_kinds_of_objects: s: . +MinitestSpec#test_needs_to_verify_non_identity: s: . +MinitestSpec#test_needs_to_verify_regexp_matches: s: . +MinitestSpec#test_needs_to_verify_inequality: s: . NonString#test_6: s: . NonString#test_7: s: . OpenSSL::TestASN1#test_decode: s: . @@ -15814,6 +15814,7 @@ ARGF.close - closes the current open stream - returns self +- raises an IOError if called on a closed stream /home/chkbuild/tmp/build/ruby-1.9.1//rubyspec/core/argf/closed_spec.rb ARGF.closed? @@ -15952,6 +15953,9 @@ - takes at least one argument (offset) /home/chkbuild/tmp/build/ruby-1.9.1//rubyspec/core/argf/skip_spec.rb +ARGF.skip +- has no effect when the current file is the last (FAILED - ) + /home/chkbuild/tmp/build/ruby-1.9.1//rubyspec/core/argf/tell_spec.rb ARGF.tell - gives the correct position for each read operation @@ -20332,6 +20336,10 @@ - returns a new String for each call - raises a RangeError if self is out of the ASCII character range +/home/chkbuild/tmp/build/ruby-1.9.1//rubyspec/core/integer/denominator_spec.rb +Integer#denominator +- always returns 1 + /home/chkbuild/tmp/build/ruby-1.9.1//rubyspec/core/integer/downto_spec.rb Integer#downto [stop] when self and stop are Fixnums - does not yield when stop is greater than self @@ -20349,15 +20357,60 @@ Integer#floor - returns self +/home/chkbuild/tmp/build/ruby-1.9.1//rubyspec/core/integer/gcd_spec.rb +Integer#gcd +- returns self if equal to the argument +- returns an Integer +- returns the greatest common divisor of self and argument +- returns a positive integer even if self is negative +- returns a positive integer even if the argument is negative +- returns a positive integer even if both self and argument are negative +- accepts a Bignum argument +- works if self is a Bignum +- raises an ArgumentError if not given an argument +- raises an ArgumentError if given more than one argument +- raises an ArgumentError unless the argument is an Integer + +/home/chkbuild/tmp/build/ruby-1.9.1//rubyspec/core/integer/gcdlcm_spec.rb +Integer#gcdlcm +- returns [self, self] if self is equal to the argument +- returns an Array +- returns a two-element Array +- returns the greatest common divisor of self and argument as the first element +- returns the least common multiple of self and argument as the last element +- accepts a Bignum argument +- works if self is a Bignum +- raises an ArgumentError if not given an argument +- raises an ArgumentError if given more than one argument +- raises an ArgumentError unless the argument is an Integer + /home/chkbuild/tmp/build/ruby-1.9.1//rubyspec/core/integer/induced_from_spec.rb /home/chkbuild/tmp/build/ruby-1.9.1//rubyspec/core/integer/integer_spec.rb Integer#integer? - returns true +/home/chkbuild/tmp/build/ruby-1.9.1//rubyspec/core/integer/lcm_spec.rb +Integer#lcm +- returns self if equal to the argument +- returns an Integer +- returns the least common multiple of self and argument +- returns a positive integer even if self is negative +- returns a positive integer even if the argument is negative +- returns a positive integer even if both self and argument are negative +- accepts a Bignum argument +- works if self is a Bignum +- raises an ArgumentError if not given an argument +- raises an ArgumentError if given more than one argument +- raises an ArgumentError unless the argument is an Integer + /home/chkbuild/tmp/build/ruby-1.9.1//rubyspec/core/integer/next_spec.rb Integer#next - returns the Integer equal to self + 1 +/home/chkbuild/tmp/build/ruby-1.9.1//rubyspec/core/integer/numerator_spec.rb +Integer#numerator +- returns self + /home/chkbuild/tmp/build/ruby-1.9.1//rubyspec/core/integer/odd_spec.rb Integer#odd? - returns true when self is an odd number @@ -20397,6 +20450,14 @@ Integer#to_int - returns self +/home/chkbuild/tmp/build/ruby-1.9.1//rubyspec/core/integer/to_r_spec.rb +Integer#to_r +- returns a Rational object +- constructs a rational number with self as the numerator +- constructs a rational number with 1 as the denominator +- works even if self is a Bignum +- raises an ArgumentError if given any arguments + /home/chkbuild/tmp/build/ruby-1.9.1//rubyspec/core/integer/truncate_spec.rb Integer#truncate - returns self @@ -20816,8 +20877,7 @@ - updates self's position - updates self's lineno based on the number of lines read - does not change $_ -- returns an empty Array when self is at the endheh - +- returns an empty Array when self is at the end IO#readlines when passed [separator] - returns an empty Array when self is at the end