asdf/test/info_command.bats

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

33 lines
605 B
Plaintext
Raw Normal View History

#!/usr/bin/env bats
load test_helpers
setup() {
setup_asdf_dir
install_dummy_plugin
install_dummy_legacy_plugin
run asdf install dummy 1.0
run asdf install dummy 1.1
PROJECT_DIR="$HOME/project"
mkdir -p "$PROJECT_DIR"
}
teardown() {
clean_asdf_dir
}
@test "info should show os, shell and asdf debug information" {
cd "$PROJECT_DIR"
run asdf info
[ "$status" -eq 0 ]
[[ $output == *$'OS:\n'* ]]
[[ $output == *$'SHELL:\n'* ]]
[[ $output == *$'ASDF VERSION:\n'* ]]
[[ $output == *$'ASDF ENVIRONMENT VARIABLES:\n'* ]]
[[ $output == *$'ASDF INSTALLED PLUGINS:\n'* ]]
}