diff options
author | tadf <tadf@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2011-05-08 12:03:50 +0000 |
---|---|---|
committer | tadf <tadf@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2011-05-08 12:03:50 +0000 |
commit | e2ab17e8816fb3a13b5e47eb7842961b45672e0d (patch) | |
tree | 3fddf541ab7ce85399afe674977b113596f63005 /test/ruby/test_complex2.rb | |
parent | 6b8bc66e4df5631b3ebe19cbdd7e6326e916bc49 (diff) |
never skip
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@31488 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/ruby/test_complex2.rb')
-rw-r--r-- | test/ruby/test_complex2.rb | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/test/ruby/test_complex2.rb b/test/ruby/test_complex2.rb index 3ee7810dc6..be30a42596 100644 --- a/test/ruby/test_complex2.rb +++ b/test/ruby/test_complex2.rb @@ -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)) |