mirror of
https://github.com/zsh-users/zsh-autosuggestions.git
synced 2024-11-18 09:51:06 +01:00
Add a spec for unlisted widgets fetching a new suggestion
This commit is contained in:
parent
502fb4a174
commit
ea505b01e5
1 changed files with 13 additions and 0 deletions
|
@ -66,6 +66,19 @@ describe 'a zle widget' do
|
||||||
end
|
end
|
||||||
end
|
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
|
end
|
||||||
|
|
||||||
describe 'a modification to the widget lists' do
|
describe 'a modification to the widget lists' do
|
||||||
|
|
Loading…
Reference in a new issue