2014-05-24 13:38:41 +00:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
|
|
|
CURRENT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
|
|
|
|
|
|
|
source $CURRENT_DIR/helpers.sh
|
|
|
|
|
2014-05-24 20:01:13 +00:00
|
|
|
export FAIL=false
|
2014-05-24 13:38:41 +00:00
|
|
|
|
|
|
|
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
|