You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
fisher/test/key-bindings-undo.fish

12 lines
409 B
Fish

set -l key_bindings_mock "##foo##" "bind foo" "bind bar" "##foo##"
test "$TESTNAME - Undo bind calls with bind --erase #1"
(printf "%s\n" $key_bindings_mock \
| __fisher_key_bindings_undo foo | sed -n 1p) = "bind -e foo"
end
test "$TESTNAME - Undo bind calls with bind --erase #2"
(printf "%s\n" $key_bindings_mock \
| __fisher_key_bindings_undo foo | sed -n 2p) = "bind -e bar"
end