Change test helper file name

This commit is contained in:
Bruno Sutic 2014-07-17 22:19:38 +02:00
parent 5cac2380e5
commit 8cc27247b6
3 changed files with 3 additions and 3 deletions

View File

@ -2,7 +2,7 @@
CURRENT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
source $CURRENT_DIR/test_helpers.sh
source $CURRENT_DIR/helpers.sh
test_plugin_installation() {
set_tmux_conf_helper <<- HERE

View File

@ -2,10 +2,10 @@
CURRENT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
source $CURRENT_DIR/test_helpers.sh
source $CURRENT_DIR/helpers.sh
check_binding_defined() {
local binding=$1
local binding="$1"
tmux list-keys | grep -q "$binding"
}