mirror of
https://github.com/fish-shell/fish-shell
synced 2024-11-11 15:37:24 +00:00
7619e62b70
Also modify `logmsg` to output additional separator lines to make the demarcation between tests even clearer.
26 lines
815 B
Text
26 lines
815 B
Text
|
|
####################
|
|
# Verify behavior of `set --show` given an invalid var name
|
|
|
|
####################
|
|
# Verify behavior of `set --show`
|
|
$var1: not set in local scope
|
|
$var1: not set in global scope
|
|
$var1: set in universal scope, unexported, with 1 elements
|
|
$var1[0]: length=5 value=|hello|
|
|
|
|
$var1: set in local scope, unexported, with 0 elements
|
|
$var1: set in global scope, unexported, with 2 elements
|
|
$var1[0]: length=7 value=|goodbye|
|
|
$var1[1]: length=19 value=|and don\'t come back|
|
|
$var1: set in universal scope, unexported, with 1 elements
|
|
$var1[0]: length=5 value=|hello|
|
|
|
|
$_unset_var: not set in local scope
|
|
$_unset_var: not set in global scope
|
|
$_unset_var: not set in universal scope
|
|
|
|
$var2: not set in local scope
|
|
$var2: set in global scope, unexported, with 0 elements
|
|
$var2: not set in universal scope
|
|
|