⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.101
Server IP:
178.33.27.10
Server:
Linux cpanel.dev-unit.com 3.10.0-1160.119.1.el7.x86_64 #1 SMP Tue Jun 4 14:43:51 UTC 2024 x86_64
Server Software:
Apache/2.4.62 (Unix) OpenSSL/1.0.2k-fips
PHP Version:
8.2.25
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
proc
/
self
/
root
/
opt
/
nvm
/
test
/
fast
/
Unit tests
/
View File Name :
nvm_alias
#!/bin/sh die () { echo "$@" ; cleanup ; exit 1; } cleanup () { rm -rf ../../../alias/test } \. ../../../nvm.sh OUTPUT="$(nvm_alias 2>&1)" EXPECTED_OUTPUT='An alias is required.' [ "_$OUTPUT" = "_$EXPECTED_OUTPUT" ] || die "'nvm_alias' produced wrong output; got $OUTPUT" EXIT_CODE="$(nvm_alias >/dev/null 2>&1 ; echo $?)" [ "_$EXIT_CODE" = "_1" ] || die "'nvm_alias' exited with $EXIT_CODE, expected 1" rm -rf ../../../alias/nonexistent OUTPUT="$(nvm_alias nonexistent 2>&1)" EXPECTED_OUTPUT='Alias does not exist.' [ "_$OUTPUT" = "_$EXPECTED_OUTPUT" ] || die "'nvm_alias nonexistent' produced wrong output; got $OUTPUT" EXIT_CODE="$(nvm_alias nonexistent >/dev/null 2>&1 ; echo $?)" [ "_$EXIT_CODE" = "_2" ] || die "'nvm_alias nonexistent' exited with $EXIT_CODE, expected 2" EXPECTED_OUTPUT="0.10" nvm alias test "$EXPECTED_OUTPUT" || die "'nvm alias test $EXPECTED_OUTPUT' failed" OUTPUT="$(nvm_alias test)" [ "_$OUTPUT" = "_$EXPECTED_OUTPUT" ] || die "'nvm_alias test' produced wrong output; got $OUTPUT" cleanup