dots/config/zsh/plugins/zsh-autosuggestions/spec/integrations/glob_subst_spec.rb
2026-06-05 13:11:08 +02:00

12 lines
264 B
Ruby

describe 'with `GLOB_SUBST` option set' do
let(:after_sourcing) do
-> {
session.run_command('setopt GLOB_SUBST')
}
end
it 'error messages are not printed' do
session.send_string('[[')
wait_for { session.content }.to eq('[[')
end
end