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

ruby-changes:9434

From: kouji <ko1@a...>
Date: Thu, 25 Dec 2008 01:03:47 +0900 (JST)
Subject: [ruby-changes:9434] Ruby:r20972 (trunk): * test/readline/test_readline_history.rb: did not check the

kouji	2008-12-25 01:03:25 +0900 (Thu, 25 Dec 2008)

  New Revision: 20972

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

  Log:
    * test/readline/test_readline_history.rb: did not check the
      encoding that is in the Readline::HISTORY. I will fix it.

  Modified files:
    trunk/ChangeLog
    trunk/test/readline/test_readline_history.rb

Index: ChangeLog
===================================================================
--- ChangeLog	(revision 20971)
+++ ChangeLog	(revision 20972)
@@ -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.
+
 Wed Dec 24 22:36:06 2008  Koichi Sasada  <ko1@a...>
 
 	* error.c, vm_dump.c: change message by rb_bug().
Index: test/readline/test_readline_history.rb
===================================================================
--- test/readline/test_readline_history.rb	(revision 20971)
+++ test/readline/test_readline_history.rb	(revision 20972)
@@ -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/

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