Browse Source

Test zsh-nvm doesn't overwrite nvm installs

pull/17/head
Luke Childs 8 years ago
parent
commit
c7ee42d5c5
  1. 16
      tests/loading/Check zsh-nvm doesn't install nvm if it's already installed

16
tests/loading/Check zsh-nvm doesn't install nvm if it's already installed

@ -0,0 +1,16 @@
source ../common.sh
nvm_placeholder="nvm placeholder"
# Fake nvm installation
mkdir "$NVM_DIR"
echo "$nvm_placeholder" > "$NVM_DIR/nvm.sh"
# Check fake nvm file is there
[[ -f "$NVM_DIR/nvm.sh" ]] || die "Fake nvm file wasn't created"
# Load zsh-nvm
load_zsh_nvm
# Check fake nvm installation wasn't overwritten
[[ $(cat "$NVM_DIR/nvm.sh") == "$nvm_placeholder" ]] || die "Existing nvm installation was overwritten"
Loading…
Cancel
Save