mirror of
https://github.com/tmux-plugins/tpm.git
synced 2024-11-14 00:18:50 +00:00
31 lines
696 B
Bash
31 lines
696 B
Bash
|
#!/usr/bin/env bash
|
||
|
|
||
|
CURRENT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
||
|
|
||
|
source $CURRENT_DIR/helpers.sh
|
||
|
|
||
|
FAIL=false
|
||
|
|
||
|
test_plugin_installation() {
|
||
|
set_tmux_conf_helper <<- HERE
|
||
|
set -g @tpm_plugins "bruno-/tmux_example_plugin"
|
||
|
run-shell '~/tmux_plugin_manager/tpm'
|
||
|
HERE
|
||
|
|
||
|
# opens tmux and test it with `expect`
|
||
|
$CURRENT_DIR/expect_successful_plugin_download ||
|
||
|
(echo "Tmux plugin installation fails" >&2; FAIL=true)
|
||
|
|
||
|
# check plugin dir exists after download
|
||
|
check_dir_exists_helper "/root/.tmux/plugins/tmux_example_plugin/" ||
|
||
|
(echo "Plugin download fails" >&2; FAIL=true)
|
||
|
|
||
|
teardown_helper
|
||
|
}
|
||
|
|
||
|
main() {
|
||
|
test_plugin_installation
|
||
|
exit_value_helper
|
||
|
}
|
||
|
main
|