tpm/tests/test_plugin_sourcing.sh

32 lines
647 B
Bash
Raw Normal View History

2014-05-24 09:38:41 -04:00
#!/usr/bin/env bash
CURRENT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
2015-07-31 19:54:34 -04:00
TPM_DIR="$PWD"
2014-05-24 09:38:41 -04:00
2015-07-31 19:54:34 -04:00
source "$CURRENT_DIR/helpers.sh"
2014-05-24 09:38:41 -04:00
check_binding_defined() {
2014-07-17 16:19:38 -04:00
local binding="$1"
2014-05-24 17:18:37 -04:00
tmux list-keys | grep -q "$binding"
2014-05-24 09:38:41 -04:00
}
test_plugin_sourcing() {
set_tmux_conf_helper <<- HERE
2015-07-06 19:49:33 -04:00
set -g @plugin "doesnt_matter/tmux_test_plugin"
2015-07-31 19:54:34 -04:00
run-shell "$TPM_DIR/tpm"
2014-05-24 09:38:41 -04:00
HERE
2014-07-17 15:12:28 -04:00
# manually creates a local tmux plugin
2014-05-24 09:38:41 -04:00
create_test_plugin_helper <<- HERE
tmux bind-key R run-shell foo_command
HERE
2014-05-24 17:18:37 -04:00
tmux new-session -d # tmux starts detached
2014-07-17 15:12:28 -04:00
check_binding_defined "R run-shell foo_command" ||
2014-07-17 16:16:46 -04:00
fail_helper "Plugin sourcing fails"
2014-05-24 09:38:41 -04:00
teardown_helper
}
2015-08-01 12:06:19 -04:00
run_tests