2
0
Fork 0
mirror of https://github.com/fish-shell/fish-shell synced 2025-01-30 22:03:29 +00:00
fish-shell/tests/empty.in
2019-04-13 17:21:13 -05:00

16 lines
306 B
Fish

# 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