summaryrefslogtreecommitdiff
path: root/test/ruby/test_complex2.rb
diff options
context:
space:
mode:
authortadf <tadf@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2011-04-26 16:09:14 +0000
committertadf <tadf@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2011-04-26 16:09:14 +0000
commit2ad123c298f24d1ab02624bd73e25f51f283c2ea (patch)
treeb105c12d52db7d48f9a84fa83118e197ecb0d2ba /test/ruby/test_complex2.rb
parent184e9e9d885a7d83ac0797c466647462008a6f7d (diff)
use skip
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@31360 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/ruby/test_complex2.rb')
-rw-r--r--test/ruby/test_complex2.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/ruby/test_complex2.rb b/test/ruby/test_complex2.rb
index 4e960c3e36..3ee7810dc6 100644
--- a/test/ruby/test_complex2.rb
+++ b/test/ruby/test_complex2.rb
@@ -3,7 +3,7 @@ require 'test/unit'
class Complex_Test2 < Test::Unit::TestCase
def test_kumi
- return unless defined?(Rational)
+ skip unless defined?(Rational)
assert_equal(Complex(1, 0), +Complex(1, 0))
assert_equal(Complex(-1, 0), -Complex(1, 0))