tpm/tests/test_plugin_installation_le...

29 lines
635 B
Bash
Raw Normal View History

2015-05-27 15:27:01 -04:00
#!/usr/bin/env bash
CURRENT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
source $CURRENT_DIR/helpers.sh
test_plugin_installation() {
set_tmux_conf_helper <<- HERE
2015-06-02 16:47:32 -04:00
set -g @tpm_plugins "tmux-plugins/tmux-example-plugin"
2015-05-27 15:27:01 -04:00
run-shell "$PWD/tpm"
HERE
# opens tmux and test it with `expect`
2015-06-02 16:47:32 -04:00
$CURRENT_DIR/expect_successful_plugin_download ||
2015-05-27 15:27:01 -04:00
fail_helper "Tmux plugin installation fails"
# check plugin dir exists after download
check_dir_exists_helper "$HOME/.tmux/plugins/tmux-example-plugin/" ||
fail_helper "Plugin download fails"
teardown_helper
}
main() {
test_plugin_installation
exit_value_helper
}
main