mirror of
https://github.com/nvm-sh/nvm.git
synced 2025-10-30 09:18:59 +08:00
[meta] Rename some files to be more cross platform
This commit is contained in:
committed by
Jordan Harband
parent
4e9df33cb7
commit
9849bf494d
37
test/fast/Running 'nvm use iojs' uses latest io.js version
Executable file
37
test/fast/Running 'nvm use iojs' uses latest io.js version
Executable file
@@ -0,0 +1,37 @@
|
||||
#!/bin/sh
|
||||
|
||||
set -ex
|
||||
|
||||
\. ../common.sh
|
||||
|
||||
die () { echo "$@" ; cleanup ; exit 1; }
|
||||
|
||||
VERSION="v3.99.0"
|
||||
|
||||
cleanup() {
|
||||
unset -f make_echo cleanup
|
||||
rm -rf "$(nvm_version_path "iojs-${VERSION}")"
|
||||
}
|
||||
|
||||
\. ../../nvm.sh
|
||||
|
||||
nvm deactivate || die "unable to deactivate; current: >$(nvm current)<"
|
||||
|
||||
make_fake_iojs "${VERSION}" || die "unable to make_fake_iojs ${VERSION}"
|
||||
|
||||
IOJS_VERSION="$(nvm_version iojs)"
|
||||
[ -n "${IOJS_VERSION}" ] || die 'expected an io.js version; got none'
|
||||
|
||||
EXPECTED_OUTPUT="$(nvm_add_iojs_prefix ${VERSION})"
|
||||
[ "${IOJS_VERSION}" = "${EXPECTED_OUTPUT}" ] || die "iojs version was not >${EXPECTED_OUTPUT}; got >${IOJS_VERSION}<"
|
||||
|
||||
nvm use --delete-prefix iojs || die '`nvm use iojs` failed'
|
||||
|
||||
# Remove node_modules/.bin from the path so that the system version `which` is
|
||||
# used in nvm_ls_current
|
||||
PATH=$(echo "$PATH" | tr ":" "\n" | grep -v "node_modules/.bin" | tr "\n" ":") CURRENT="$(nvm current)"
|
||||
echo "current: ${CURRENT}"
|
||||
|
||||
[ "${CURRENT}" = "${IOJS_VERSION}" ] || die "expected >${IOJS_VERSION}<; got >${CURRENT}<"
|
||||
|
||||
cleanup
|
||||
Reference in New Issue
Block a user