mirror of
https://github.com/tmux-plugins/tpm.git
synced 2024-11-14 00:18:50 +00:00
47 lines
857 B
Bash
47 lines
857 B
Bash
|
#!/usr/bin/env bash
|
||
|
|
||
|
set_tmux_conf_helper() {
|
||
|
> ~/.tmux.conf # empty filename
|
||
|
while read -r line; do
|
||
|
echo $line >> ~/.tmux.conf
|
||
|
done
|
||
|
}
|
||
|
|
||
|
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"
|
||
|
}
|
||
|
|
||
|
teardown_helper() {
|
||
|
rm ~/.tmux.conf
|
||
|
rm -rf ~/.tmux/
|
||
|
tmux kill-server >/dev/null 2>&1
|
||
|
}
|
||
|
|
||
|
check_dir_exists_helper() {
|
||
|
local dir_path=$1
|
||
|
if [ -d "$dir_path" ]; then
|
||
|
return 0
|
||
|
else
|
||
|
return 1
|
||
|
fi
|
||
|
}
|
||
|
|
||
|
exit_value_helper() {
|
||
|
if $FAIL; then
|
||
|
echo
|
||
|
echo "Test failed"
|
||
|
exit 1
|
||
|
else
|
||
|
echo
|
||
|
echo "Test finished successfully"
|
||
|
exit 0
|
||
|
fi
|
||
|
}
|