mirror of
https://github.com/asdf-vm/asdf.git
synced 2024-11-15 09:38:16 -07:00
9cac0ac50a
When testing, use `run asdf` to actually test the command as the user would invoke it, so that we might catch possible errors on `bin/asdf`.
34 lines
692 B
Bash
34 lines
692 B
Bash
#!/usr/bin/env bats
|
|
|
|
load test_helpers
|
|
|
|
. $(dirname $BATS_TEST_DIRNAME)/lib/commands/shim_versions.sh
|
|
. $(dirname $BATS_TEST_DIRNAME)/lib/commands/reshim.sh
|
|
. $(dirname $BATS_TEST_DIRNAME)/lib/commands/install.sh
|
|
|
|
setup() {
|
|
setup_asdf_dir
|
|
install_dummy_plugin
|
|
|
|
PROJECT_DIR=$HOME/project
|
|
mkdir -p $PROJECT_DIR
|
|
cd $PROJECT_DIR
|
|
}
|
|
|
|
teardown() {
|
|
clean_asdf_dir
|
|
}
|
|
|
|
@test "shim_versions_command should list plugins and versions where command is available" {
|
|
cd $PROJECT_DIR
|
|
run asdf install dummy 3.0
|
|
run asdf install dummy 1.0
|
|
run asdf reshim dummy
|
|
|
|
run asdf shim-versions dummy
|
|
[ "$status" -eq 0 ]
|
|
|
|
echo "$output" | grep "dummy 3.0"
|
|
echo "$output" | grep "dummy 1.0"
|
|
}
|