[前][次][番号順一覧][スレッド一覧]

ruby-changes:19448

From: tadf <ko1@a...>
Date: Sun, 8 May 2011 21:03:55 +0900 (JST)
Subject: [ruby-changes:19448] Ruby:r31488 (trunk): never skip

tadf	2011-05-08 21:03:50 +0900 (Sun, 08 May 2011)

  New Revision: 31488

  http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=rev&revision=31488

  Log:
    never skip

  Modified files:
    trunk/ChangeLog
    trunk/test/ruby/test_complex2.rb
    trunk/test/ruby/test_complexrational.rb

Index: ChangeLog
===================================================================
--- ChangeLog	(revision 31487)
+++ ChangeLog	(revision 31488)
@@ -1,3 +1,11 @@
+Sun May  8 21:02:31 2011  Tadayoshi Funaba  <tadf@d...>
+
+	* test/ruby/test_{complex2,complexrational}.rb: NEVER SKIP.
+
+Sun May  8 21:01:21 2011  Tadayoshi Funaba  <tadf@d...>
+
+	* test/date/test_date_base.rb: fixed.
+
 Sun May  8 20:54:11 2011  Tadayoshi Funaba  <tadf@d...>
 
 	* test/date/*.rb: NEVER SKIP.
Index: test/ruby/test_complex2.rb
===================================================================
--- test/ruby/test_complex2.rb	(revision 31487)
+++ test/ruby/test_complex2.rb	(revision 31488)
@@ -3,7 +3,8 @@
 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))
Index: test/ruby/test_complexrational.rb
===================================================================
--- test/ruby/test_complexrational.rb	(revision 31487)
+++ test/ruby/test_complexrational.rb	(revision 31488)
@@ -3,7 +3,8 @@
 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)

--
ML: ruby-changes@q...
Info: http://www.atdot.net/~ko1/quickml/

[前][次][番号順一覧][スレッド一覧]