diff options
Diffstat (limited to 'home-config/zsh/zsh-autosuggestions/spec/integrations/auto_cd_spec.rb')
-rw-r--r-- | home-config/zsh/zsh-autosuggestions/spec/integrations/auto_cd_spec.rb | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/home-config/zsh/zsh-autosuggestions/spec/integrations/auto_cd_spec.rb b/home-config/zsh/zsh-autosuggestions/spec/integrations/auto_cd_spec.rb deleted file mode 100644 index 94bd24b..0000000 --- a/home-config/zsh/zsh-autosuggestions/spec/integrations/auto_cd_spec.rb +++ /dev/null @@ -1,14 +0,0 @@ -describe 'with `AUTO_CD` option set' do - let(:after_sourcing) do - -> { - session.run_command('setopt AUTO_CD') - session.run_command('autoload compinit && compinit') - } - end - - it 'directory names are still completed' do - session.send_string('sr') - session.send_keys('C-i') - wait_for { session.content }.to eq('src/') - end -end |