[前][次][番号順一覧][スレッド一覧][生データ]

yarv-diff:231

From: ko1 atdot.net
Date: 13 Feb 2006 09:10:56 -0000
Subject: [yarv-diff:231] r392 - in trunk: . test/ruby

Author: ko1
Date: 2006-02-13 18:10:56 +0900 (Mon, 13 Feb 2006)
New Revision: 392

Modified:
   trunk/
   trunk/ChangeLog
   trunk/test/ruby/test_clone.rb
   trunk/test/ruby/test_marshal.rb
Log:
 r577@leremita:  ko1 | 2006-02-13 18:10:29 +0900
 	* test/ruby/test_clone.rb : enable tests with Class#clone
 
 	* test/ruby/test_marshal.rb : ditto
 



Property changes on: trunk
___________________________________________________________________
Name: svk:merge
   - 81cd9672-7512-7e48-ae48-6936450e977d:/local/yarv/trunk:572
   + 81cd9672-7512-7e48-ae48-6936450e977d:/local/yarv/trunk:577

Modified: trunk/ChangeLog
===================================================================
--- trunk/ChangeLog	2006-02-13 08:55:13 UTC (rev 391)
+++ trunk/ChangeLog	2006-02-13 09:10:56 UTC (rev 392)
@@ -4,6 +4,13 @@
 #  from Mon, 03 May 2004 01:24:19 +0900
 #
 
+2006-02-13(Mon) 18:09:28 +0900  Koichi Sasada  <ko1 atdot.net>
+
+	* test/ruby/test_clone.rb : enable tests with Class#clone
+
+	* test/ruby/test_marshal.rb : ditto
+
+
 2006-02-13(Mon) 17:42:37 +0900  Koichi Sasada  <ko1 atdot.net>
 
 	* class.c : support Class#clone

Modified: trunk/test/ruby/test_clone.rb
===================================================================
--- trunk/test/ruby/test_clone.rb	2006-02-13 08:55:13 UTC (rev 391)
+++ trunk/test/ruby/test_clone.rb	2006-02-13 09:10:56 UTC (rev 392)
@@ -8,7 +8,6 @@
   module M003; include M002; end
 
   def test_clone
-assert false, "Class#clone not supported yet"
     foo = Object.new
     def foo.test
       "test"

Modified: trunk/test/ruby/test_marshal.rb
===================================================================
--- trunk/test/ruby/test_marshal.rb	2006-02-13 08:55:13 UTC (rev 391)
+++ trunk/test/ruby/test_marshal.rb	2006-02-13 09:10:56 UTC (rev 392)
@@ -32,9 +32,8 @@
     }
   end
 
-  #StrClone = String.clone
+  StrClone = String.clone
   def test_marshal_cloned_class
-assert false, "Class#clone not supported yet"
     assert_instance_of(StrClone, Marshal.load(Marshal.dump(StrClone.new("abc"))))
   end
 end


-- 
ML: yarv-diff quickml.atdot.net
Info: http://www.atdot.net/~ko1/quickml

[前][次][番号順一覧][スレッド一覧][生データ]