fish-shell/tests/checks/fish_exit.fish
Johannes Altmanninger 1e858eae35 tests: filter control sequences only when interactive
This demonstrates that we only write control sequences when interactive.
2024-04-12 12:28:22 +02:00

8 lines
257 B
Fish

#RUN: %fish -C 'set -g fish %fish' %s
# fish_exit fires successfully.
echo 'function do_exit --on-event fish_exit; echo "fish_exiting $fish_pid"; end' > /tmp/test_exit.fish
$fish /tmp/test_exit.fish
# CHECK: fish_exiting {{[0-9]+}}
rm /tmp/test_exit.fish