asdf/test/list_command.bats
Brennan Fee ba1b181b58 Fixing unit tests for 'asdf list'
Now that we put spacing in front of the version #'s the tests need to
reflect that.
2018-06-01 10:15:40 -05:00

38 lines
868 B
Bash

#!/usr/bin/env bats
load test_helpers
. $(dirname $BATS_TEST_DIRNAME)/lib/commands/install.sh
. $(dirname $BATS_TEST_DIRNAME)/lib/commands/list.sh
setup() {
setup_asdf_dir
install_dummy_plugin
}
teardown() {
clean_asdf_dir
}
@test "list_command should list plugins with installed versions" {
run install_command dummy 1.0
run install_command dummy 1.1
run list_command
[ "$(echo -e "dummy\n 1.0\n 1.1")" == "$output" ]
[ "$status" -eq 0 ]
}
@test "list_command with plugin should output error when plugin is not installed" {
run list_command dummy
[ "No versions installed" == "$output" ]
[ "$status" -eq 1 ]
}
@test "list_command with plugin should list installed versions" {
run install_command dummy 1.0
run install_command dummy 1.1
run list_command dummy
[ "$(echo -e " 1.0\n 1.1")" == "$output" ]
[ "$status" -eq 0 ]
}