mirror of
https://github.com/fish-shell/fish-shell.git
synced 2026-06-06 00:41:15 -03:00
With a few exceptions, only one test is added for a given message, even when there are multiple ways to trigger the same message (e.g. different invalid option combinations, or triggered in shared functions such as `builtin_unknown_option`) Includes a few very minor fixes, such as missing a newline, or using the wrong var name. Closes #12603
10 lines
172 B
Fish
10 lines
172 B
Fish
# RUN: fish=%fish %fish %s
|
|
|
|
breakpoint foo
|
|
# CHECKERR: breakpoint: expected 0 arguments; got 1
|
|
|
|
# no breakpoint in non-interactive shell
|
|
breakpoint
|
|
echo $status
|
|
# CHECK: 1
|