fish-shell/tests/checks/empty.fish

19 lines
289 B
Fish
Raw Normal View History

# RUN: %fish %s
# See issue 5692
function empty
end
# functions should not preserve $status
false; empty; echo $status
# CHECK: 0
true; empty; echo $status
# CHECK: 0
# blocks should preserve $status
false; begin; end; echo $status
# CHECK: 1
true; begin; end; echo $status
# CHECK: 0