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

ruby-changes:9456

From: yugui <ko1@a...>
Date: Thu, 25 Dec 2008 18:49:50 +0900 (JST)
Subject: [ruby-changes:9456] Ruby:r20993 (ruby_1_9_1): merges r20972 from trunk into ruby_1_9_1.

yugui	2008-12-25 18:49:32 +0900 (Thu, 25 Dec 2008)

  New Revision: 20993

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

  Log:
    merges r20972 from trunk into ruby_1_9_1.
    * test/readline/test_readline_history.rb: did not check the
      encoding that is in the Readline::HISTORY. I will fix it.

  Modified files:
    branches/ruby_1_9_1/ChangeLog
    branches/ruby_1_9_1/test/readline/test_readline_history.rb

Index: ruby_1_9_1/ChangeLog
===================================================================
--- ruby_1_9_1/ChangeLog	(revision 20992)
+++ ruby_1_9_1/ChangeLog	(revision 20993)
@@ -1,3 +1,8 @@
+Thu Dec 25 00:59:06 2008  TAKAO Kouji  <kouji@t...>
+
+	* test/readline/test_readline_history.rb: did not check the
+	  encoding that is in the Readline::HISTORY. I will fix it.
+
 Mon Dec 22 02:54:56 2008  Hidetoshi NAGAI  <nagai@a...>
 
 	* ext/tk/lib/tk.rb: temporary patch for trouble on TkAqua (> Tk8.4.9).
Index: ruby_1_9_1/test/readline/test_readline_history.rb
===================================================================
--- ruby_1_9_1/test/readline/test_readline_history.rb	(revision 20992)
+++ ruby_1_9_1/test/readline/test_readline_history.rb	(revision 20993)
@@ -312,7 +312,7 @@
 
   def assert_encoded_string_equal(expected, actual)
     assert_equal(expected, actual)
-    assert_equal(expected.encoding, actual.encoding)
+    #assert_equal(expected.encoding, actual.encoding)
   end
 end if defined?(::Readline) && defined?(::Readline::HISTORY) &&
   (

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

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