mirror of
https://github.com/fish-shell/fish-shell.git
synced 2024-11-28 12:13:55 +08:00
508ea59dcd
* fix builtin help ignoring redirects * test builtin help redirects
16 lines
506 B
Fish
16 lines
506 B
Fish
# RUN: %fish %s
|
|
# Test redirecting builtin help with a pipe
|
|
|
|
set -lx __fish_data_dir (mktemp -d)
|
|
mkdir -p $__fish_data_dir/man/man1
|
|
# Create $__fish_data_dir/man/man1/and.1
|
|
echo '.\" Test manpage for and (not real).
|
|
.TH "AND" "1" "Feb 02, 2024" "3.7" "fish-shell"
|
|
.SH NAME
|
|
and \- conditionally execute a command' >$__fish_data_dir/man/man1/and.1
|
|
|
|
# help should be redirected to grep instead of appearing on STDOUT
|
|
builtin and --help | grep -q "and - conditionally execute a command"
|
|
echo $status
|
|
#CHECK: 0
|