zsh-autosuggestions/spec/integrations/client_zpty_spec.rb

11 lines
362 B
Ruby
Raw Normal View History

2017-02-17 03:18:03 +01:00
describe 'a running zpty command' do
let(:before_sourcing) { -> { session.run_command('zmodload zsh/zpty && zpty -b kitty cat') } }
2017-02-17 03:18:03 +01:00
it 'is not affected by running zsh-autosuggestions' do
sleep 1 # Give a little time for precmd hooks to run
session.run_command('zpty -t kitty; echo $?')
2017-02-17 03:18:03 +01:00
wait_for { session.content }.to end_with("\n0")
2017-02-17 03:18:03 +01:00
end
end