Improve tests

This commit is contained in:
Bruno Sutic
2015-06-02 22:47:32 +02:00
parent 5bbe60dc42
commit 9eee9c06b6
3 changed files with 72 additions and 4 deletions

View File

@ -0,0 +1,28 @@
#!/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
set -g @tpm_plugins "tmux-plugins/tmux-example-plugin"
run-shell "$PWD/tpm"
HERE
# opens tmux and test it with `expect`
$CURRENT_DIR/expect_successful_plugin_download ||
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