Switch to using tmux-test framework

This commit is contained in:
Bruno Sutic
2015-08-01 22:12:07 +02:00
parent 274098a029
commit 830feaae69
17 changed files with 55 additions and 175 deletions

View File

@ -3,13 +3,25 @@
CURRENT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
TPM_DIR="$PWD"
source "$CURRENT_DIR/helpers.sh"
source "$CURRENT_DIR/helpers/helpers.sh"
source "$CURRENT_DIR/helpers/tpm.sh"
check_binding_defined() {
local binding="$1"
tmux list-keys | grep -q "$binding"
}
create_test_plugin_helper() {
local plugin_path="$HOME/.tmux/plugins/tmux_test_plugin/"
rm -rf $plugin_path
mkdir -p $plugin_path
while read -r line; do
echo $line >> "$plugin_path/test_plugin.tmux"
done
chmod +x "$plugin_path/test_plugin.tmux"
}
test_plugin_sourcing() {
set_tmux_conf_helper <<- HERE
set -g @plugin "doesnt_matter/tmux_test_plugin"