summaryrefslogtreecommitdiff
path: root/home-config/zsh/zsh-autosuggestions/spec/integrations/auto_cd_spec.rb
diff options
context:
space:
mode:
authorTyler Murphy <tylerm@tylerm.dev>2023-10-01 11:55:23 -0400
committerTyler Murphy <tylerm@tylerm.dev>2023-10-01 11:55:23 -0400
commit6b5acbc8c00045a7926c2f295fb03ae4b0459305 (patch)
treec2df0f30d8eade2a2211b53c5a62a0bc71496045 /home-config/zsh/zsh-autosuggestions/spec/integrations/auto_cd_spec.rb
parentpackage lavanda gtk theme (diff)
downloaddotfiles-guix-6b5acbc8c00045a7926c2f295fb03ae4b0459305.tar.gz
dotfiles-guix-6b5acbc8c00045a7926c2f295fb03ae4b0459305.tar.bz2
dotfiles-guix-6b5acbc8c00045a7926c2f295fb03ae4b0459305.zip
package zsh-autosuggestions
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.rb14
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