2014-05-24 09:38:41 -04:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
|
|
|
CURRENT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
|
|
|
|
|
|
|
source $CURRENT_DIR/helpers.sh
|
|
|
|
|
2014-05-24 16:01:13 -04:00
|
|
|
export FAIL=false
|
2014-05-24 09:38:41 -04:00
|
|
|
|
|
|
|
check_binding_defined() {
|
2014-05-24 17:18:37 -04:00
|
|
|
local binding=$1
|
|
|
|
tmux list-keys | grep -q "$binding"
|
2014-05-24 09:38:41 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
test_plugin_sourcing() {
|
|
|
|
set_tmux_conf_helper <<- HERE
|
|
|
|
set -g @tpm_plugins "doesnt_matter/tmux_test_plugin"
|
|
|
|
# change this
|
|
|
|
run-shell '~/tmux_plugin_manager/tpm'
|
|
|
|
HERE
|
|
|
|
|
|
|
|
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
|
|
|
|
check_binding_defined 'R run-shell foo_command' ||
|
|
|
|
(echo "Plugin sourcing fails" >&2; FAIL=true)
|
2014-05-24 09:38:41 -04:00
|
|
|
|
|
|
|
teardown_helper
|
|
|
|
}
|
|
|
|
|
|
|
|
main() {
|
2014-05-24 17:18:37 -04:00
|
|
|
test_plugin_sourcing
|
|
|
|
exit_value_helper
|
2014-05-24 09:38:41 -04:00
|
|
|
}
|
|
|
|
main
|