2
0
Fork 0
mirror of https://github.com/fish-shell/fish-shell synced 2025-01-25 19:25:06 +00:00
fish-shell/tests/empty.in

17 lines
306 B
Fish
Raw Normal View History

# See issue 5692
logmsg "Testing `$status` after empty functions and blocks"
function empty
end
# functions shouldn't preserve $status
false; empty; echo $status # 0
true; empty; echo $status # 0
# blocks should preserve $status
false; begin; end; echo $status # 1
true; begin; end; echo $status # 0