blob: 7777bc9aa409e2ec4197598b2f8ab48b4e1bbf0b [file] [log] [blame]
Jordan Harband0b4c1e12015-02-01 13:02:46 -08001#!/bin/sh
2
3
4die () { echo $@ ; exit 1; }
5
Qiangjun Rancadbbce2016-11-04 13:15:18 +08006\. ../../../nvm.sh
Jordan Harband0b4c1e12015-02-01 13:02:46 -08007
Quildreen Motta730b2532016-07-05 21:40:45 -03008EXPECTED_OUTPUT='N/A: version "v0.2" is not yet installed.
9
10You need to run "nvm install 0.2" to install it before using it.'
11[ "_$(nvm run 0.2 --version 2>&1)" = "_$EXPECTED_OUTPUT" ] || die "\`nvm run\` with an uninstalled node version failed to error out correctly"
12
13EXPECTED_OUTPUT='N/A: version "iojs-v0.2" is not yet installed.
14
15You need to run "nvm install iojs-0.2" to install it before using it.'
16[ "_$(nvm run iojs-0.2 --version 2>&1)" = "_$EXPECTED_OUTPUT" ] || die "\`nvm run\` with an uninstalled iojs version failed to error out correctly"