Skip to content

Commit 5354d02

Browse files
committed
Remove an obsolete commented-out test
1 parent acd8f8e commit 5354d02

File tree

1 file changed

+0
-25
lines changed

1 file changed

+0
-25
lines changed

test/reline/test_key_actor_emacs.rb

Lines changed: 0 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -2287,29 +2287,4 @@ def test_input_unknown_char
22872287
assert_cursor(1)
22882288
assert_cursor_max(1)
22892289
end
2290-
2291-
=begin # TODO: move KeyStroke instance from Reline to LineEditor
2292-
def test_key_delete
2293-
input_keys('ab')
2294-
assert_byte_pointer_size('ab')
2295-
assert_cursor(2)
2296-
assert_cursor_max(2)
2297-
assert_line('ab')
2298-
[27, 91, 51, 126].each do |key|
2299-
@line_editor.input_key(key)
2300-
end
2301-
assert_byte_pointer_size('ab')
2302-
assert_cursor(2)
2303-
assert_cursor_max(2)
2304-
assert_line('ab')
2305-
input_keys("\C-b")
2306-
[27, 91, 51, 126].each do |key|
2307-
@line_editor.input_key(key)
2308-
end
2309-
assert_byte_pointer_size('a')
2310-
assert_cursor(1)
2311-
assert_cursor_max(1)
2312-
assert_line('a')
2313-
end
2314-
=end
23152290
end

0 commit comments

Comments
 (0)