summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authoraycabta <aycabta@gmail.com>2021-08-31 19:35:13 +0900
committeraycabta <aycabta@gmail.com>2021-08-31 20:35:04 +0900
commita75f38431e7573b7cfd720816f51082fcc40d609 (patch)
tree3fd54c7a271a5cce6bfa212ea2238c6b0bbf4555 /test
parentdb154b20cceb2fc71390cce21fdff23f6f36f7b6 (diff)
Revert "Omit some tests until debugging is complete"
This reverts commit 3695d94b25f3e3e0d7a629bf1708ef421a51dd47.
Diffstat (limited to 'test')
-rw-r--r--test/reline/test_within_pipe.rb5
1 files changed, 0 insertions, 5 deletions
diff --git a/test/reline/test_within_pipe.rb b/test/reline/test_within_pipe.rb
index 54c351c29d..ff2d68bb82 100644
--- a/test/reline/test_within_pipe.rb
+++ b/test/reline/test_within_pipe.rb
@@ -28,20 +28,17 @@ class Reline::WithinPipeTest < Reline::TestCase
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
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
end
def test_delete_text_in_multiline
- omit
@writer.write("abc\ndef\nxyz\n")
result = Reline.readmultiline(&proc{ |str|
if str.include?('xyz')