mirror of
https://github.com/fish-shell/fish-shell
synced 2024-11-13 08:27:26 +00:00
8 lines
217 B
Fish
8 lines
217 B
Fish
|
# Tests for the "builtin" builtin/keyword.
|
||
|
builtin -q string; and echo String exists
|
||
|
builtin -q; and echo None exists
|
||
|
builtin -q string echo banana; and echo Some of these exist
|
||
|
builtin -nq string
|
||
|
echo $status
|
||
|
exit 0
|