Add a spec for unlisted widgets fetching a new suggestion

This commit is contained in:
Eric Freese 2017-02-28 11:13:29 -07:00
parent 502fb4a174
commit ea505b01e5

View file

@ -66,6 +66,19 @@ describe 'a zle widget' do
end
end
end
context 'that modifies the buffer' do
before { session.run_command("#{widget}() { BUFFER=\"foo\" }") }
context 'when not added to any of the widget lists' do
it 'modifies the buffer and fetches a new suggestion' do
with_history('foobar') do
session.send_keys('C-b')
wait_for { session.content }.to eq('foobar')
end
end
end
end
end
describe 'a modification to the widget lists' do