tmux-resurrect/tests/helpers/resurrect_helpers.sh

12 lines
259 B
Bash
Raw Normal View History

2015-02-22 19:49:59 +00:00
# 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 ]
}