Skip to content

Commit

Permalink
Make sure to add a test for implicit source installation.
Browse files Browse the repository at this point in the history
  • Loading branch information
ljharb committed Jan 18, 2015
1 parent c6a9f7b commit 654c37b
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions test/installation/node/install from source implicitly
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
#!/bin/sh

die () { echo $@ ; exit 1; }

. ../../../nvm.sh

NVM_TEST_VERSION=v0.8.5

# Remove the stuff we're clobbering.
[ -e ../../../$NVM_TEST_VERSION ] && rm -R ../../../$NVM_TEST_VERSION

# Install from source implicitly (v0.8.6 is when binaries started)
nvm install $NVM_TEST_VERSION || die "'nvm install -s $NVM_TEST_VERSION' failed"

# Check
[ -d ../../../$NVM_TEST_VERSION ]
nvm run $NVM_TEST_VERSION --version | grep $NVM_TEST_VERSION || "'nvm run $NVM_TEST_VERSION --version | grep $NVM_TEST_VERSION' failed"

0 comments on commit 654c37b

Please sign in to comment.