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

ruby-changes:67504

From: aycabta <ko1@a...>
Date: Tue, 31 Aug 2021 20:35:16 +0900 (JST)
Subject: [ruby-changes:67504] a75f38431e (master): Revert "Omit some tests until debugging is complete"

https://git.ruby-lang.org/ruby.git/commit/?id=a75f38431e

From a75f38431e7573b7cfd720816f51082fcc40d609 Mon Sep 17 00:00:00 2001
From: aycabta <aycabta@g...>
Date: Tue, 31 Aug 2021 19:35:13 +0900
Subject: Revert "Omit some tests until debugging is complete"

This reverts commit 3695d94b25f3e3e0d7a629bf1708ef421a51dd47.
---
 test/reline/test_within_pipe.rb | 5 -----
 1 file changed, 5 deletions(-)

diff --git a/test/reline/test_within_pipe.rb b/test/reline/test_within_pipe.rb
index 54c351c..ff2d68b 100644
--- a/test/reline/test_within_pipe.rb
+++ b/test/reline/test_within_pipe.rb
@@ -28,20 +28,17 @@ class Reline::WithinPipeTest < Reline::TestCase https://github.com/ruby/ruby/blob/trunk/test/reline/test_within_pipe.rb#L28
   end
 
   def test_simple_input
-    omit
     @writer.write("abc\n")
     assert_equal 'abc', Reline.readmultiline(&proc{ true })
   end
 
   def test_unknown_macro
-    omit
     @config.add_default_key_binding('abc'.bytes, :unknown_macro)
     @writer.write("abcd\n")
     assert_equal 'd', Reline.readmultiline(&proc{ true })
   end
 
   def test_macro_commands_for_moving
-    omit
     @config.add_default_key_binding("\C-x\C-a".bytes, :beginning_of_line)
     @config.add_default_key_binding("\C-x\C-e".bytes, :end_of_line)
     @config.add_default_key_binding("\C-x\C-f".bytes, :forward_char)
@@ -53,7 +50,6 @@ class Reline::WithinPipeTest < Reline::TestCase https://github.com/ruby/ruby/blob/trunk/test/reline/test_within_pipe.rb#L50
   end
 
   def test_macro_commands_for_editing
-    omit
     @config.add_default_key_binding("\C-x\C-d".bytes, :delete_char)
     @config.add_default_key_binding("\C-x\C-h".bytes, :backward_delete_char)
     @config.add_default_key_binding("\C-x\C-v".bytes, :quoted_insert)
@@ -68,7 +64,6 @@ class Reline::WithinPipeTest < Reline::TestCase https://github.com/ruby/ruby/blob/trunk/test/reline/test_within_pipe.rb#L64
   end
 
   def test_delete_text_in_multiline
-    omit
     @writer.write("abc\ndef\nxyz\n")
     result = Reline.readmultiline(&proc{ |str|
       if str.include?('xyz')
-- 
cgit v1.1


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

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