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

never skip

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@31488 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
tadf 2011-05-08 12:03:50 +00:00
parent 6b8bc66e4d
commit e2ab17e881
3 changed files with 12 additions and 2 deletions

View file

@ -1,3 +1,11 @@
Sun May 8 21:02:31 2011 Tadayoshi Funaba <tadf@dotrb.org>
* test/ruby/test_{complex2,complexrational}.rb: NEVER SKIP.
Sun May 8 21:01:21 2011 Tadayoshi Funaba <tadf@dotrb.org>
* test/date/test_date_base.rb: fixed.
Sun May 8 20:54:11 2011 Tadayoshi Funaba <tadf@dotrb.org>
* test/date/*.rb: NEVER SKIP.

View file

@ -3,7 +3,8 @@ require 'test/unit'
class Complex_Test2 < Test::Unit::TestCase
def test_kumi
skip unless defined?(Rational)
return
# skip unless defined?(Rational)
assert_equal(Complex(1, 0), +Complex(1, 0))
assert_equal(Complex(-1, 0), -Complex(1, 0))

View file

@ -3,7 +3,8 @@ require 'test/unit'
class ComplexRational_Test < Test::Unit::TestCase
def test_rat_srat
skip unless defined?(Rational)
return
# skip unless defined?(Rational)
c = SimpleRat(1,3)
cc = Rational(3,2)