2017-08-18 17:10:05 +00:00
|
|
|
require 'strategies/special_characters_helper'
|
|
|
|
|
2017-02-17 02:18:03 +00:00
|
|
|
describe 'the default suggestion strategy' do
|
|
|
|
it 'suggests the last matching history entry' do
|
|
|
|
with_history('ls foo', 'ls bar', 'echo baz') do
|
2017-01-19 07:59:06 +00:00
|
|
|
session.send_string('ls')
|
|
|
|
wait_for { session.content }.to eq('ls bar')
|
|
|
|
end
|
|
|
|
end
|
2017-08-18 17:10:05 +00:00
|
|
|
|
|
|
|
include_examples 'special characters'
|
2017-01-19 07:59:06 +00:00
|
|
|
end
|