1
0
mirror of https://github.com/tmux-plugins/tpm.git synced 2024-06-28 07:40:55 +02:00
tpm/test/tests/test_plugin_sourcing.sh

35 lines
682 B
Bash
Raw Normal View History

2014-05-24 15:38:41 +02:00
#!/usr/bin/env bash
CURRENT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
2014-07-17 21:12:28 +02:00
source $CURRENT_DIR/test_helpers.sh
2014-05-24 15:38:41 +02:00
check_binding_defined() {
2014-05-24 23:18:37 +02:00
local binding=$1
tmux list-keys | grep -q "$binding"
2014-05-24 15:38:41 +02:00
}
test_plugin_sourcing() {
set_tmux_conf_helper <<- HERE
set -g @tpm_plugins "doesnt_matter/tmux_test_plugin"
2014-07-17 22:16:46 +02:00
run-shell "~/tpm/tpm"
2014-05-24 15:38:41 +02:00
HERE
2014-07-17 21:12:28 +02:00
# manually creates a local tmux plugin
2014-05-24 15:38:41 +02:00
create_test_plugin_helper <<- HERE
tmux bind-key R run-shell foo_command
HERE
2014-05-24 23:18:37 +02:00
tmux new-session -d # tmux starts detached
2014-07-17 21:12:28 +02:00
check_binding_defined "R run-shell foo_command" ||
2014-07-17 22:16:46 +02:00
fail_helper "Plugin sourcing fails"
2014-05-24 15:38:41 +02:00
teardown_helper
}
main() {
2014-05-24 23:18:37 +02:00
test_plugin_sourcing
exit_value_helper
2014-05-24 15:38:41 +02:00
}
main