tmux-resurrect/tests/helpers/resurrect_helpers.sh

19 lines
447 B
Bash
Raw Normal View History

2015-02-22 19:49:59 +00:00
install_tmux_resurrect_helper() {
rm -rf ~/.tmux/plugins/tmux-resurrect/
cd "$CURRENT_DIR"
git clone --recursive ../ ~/.tmux/plugins/tmux-resurrect/ >/dev/null 2>&1
cd - >/dev/null
}
# we want "fixed" dimensions no matter the size of real display
2015-02-22 20:53:33 +00:00
set_screen_dimensions_helper() {
2015-02-22 19:49:59 +00:00
stty cols 200
stty rows 50
}
2015-02-22 20:53:33 +00:00
last_save_file_differs_helper() {
local original_file="$1"
diff "$original_file" "${HOME}/.tmux/resurrect/last"
[ $? -ne 0 ]
}