1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
|
require 'test/minirunit'
require 'readline'
def test_readline_history_size(expected_size)
test_ok expected_size == Readline::HISTORY.to_a.size, "Wrong number of items in the Readline HISTORY"
end
test_no_exception { Readline::HISTORY.push('string') }
test_readline_history_size 1
test_no_exception { Readline::HISTORY.push(*['line1', 'line2']) }
test_readline_history_size 3
test_no_exception { Readline::HISTORY.push }
test_readline_history_size 3
# basic_word_break_characters
test_equal(" \t\n\"\\'`@$><=;|&{(", Readline.basic_word_break_characters)
test_equal(" hello", Readline.basic_word_break_characters = " hello")
test_equal(" hello", Readline.basic_word_break_characters)
|