1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* ext/date/date_core.c (d_lite_cmp): should compare with #<.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@45520 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
tadf 2014-04-05 10:53:16 +00:00
parent 685af965fd
commit cce3aa754b
3 changed files with 7 additions and 1 deletions

View file

@ -1,3 +1,7 @@
Sat Apr 5 19:36:33 2014 Tadayoshi Funaba <tadf@dotrb.org>
* ext/date/date_core.c (d_lite_cmp): should compare with #<.
Sat Apr 5 00:31:21 2014 Nobuyoshi Nakada <nobu@ruby-lang.org>
* ext/readline/extconf.rb (rl_hook_func_t): check pointer type.

View file

@ -6283,7 +6283,7 @@ d_lite_cmp(VALUE self, VALUE other)
return INT2FIX(1);
}
}
else if (a_nth < b_nth) {
else if (f_lt_p(a_nth, b_nth)) {
return INT2FIX(-1);
}
else {

View file

@ -312,6 +312,8 @@ class TestSH < Test::Unit::TestCase
assert_equal(-1, Date.new(2001,2,3) <=> Rational('4903888/2'))
assert_equal(0, Date.new(2001,2,3) <=> Rational('4903887/2'))
assert_equal(1, Date.new(2001,2,3) <=> Rational('4903886/2'))
assert_equal(-1, Date.new(-4713,11,1,Date::GREGORIAN) <=> Date.new(-4713,12,1,Date::GREGORIAN))
end
def test_eqeqeq