about summary refs log tree commit diff
path: root/Test
diff options
context:
space:
mode:
authorDaniel Shahaf <d.s@daniel.shahaf.name>2020-04-27 10:06:57 +0000
committerDaniel Shahaf <d.s@daniel.shahaf.name>2020-05-02 00:51:26 +0000
commit5d9f7975a97a368ab16e1cd96a361a7594acdbbf (patch)
treeeb09736a51409954bddd7fe2a22b913cbf3d71aa /Test
parent57a3a9a746cf6138fac76bf307a761d5ee3013a2 (diff)
downloadzsh-5d9f7975a97a368ab16e1cd96a361a7594acdbbf.tar.gz
zsh-5d9f7975a97a368ab16e1cd96a361a7594acdbbf.tar.xz
zsh-5d9f7975a97a368ab16e1cd96a361a7594acdbbf.zip
45722: docs: Change zstyle example to a non-hierarchical one
Diffstat (limited to 'Test')
-rw-r--r--Test/V05styles.ztst153
1 files changed, 0 insertions, 153 deletions
diff --git a/Test/V05styles.ztst b/Test/V05styles.ztst
deleted file mode 100644
index c221d9db8..000000000
--- a/Test/V05styles.ztst
+++ /dev/null
@@ -1,153 +0,0 @@
-%prep
-
-# Test the use of styles, if the zsh/zutil module is available.
-
-  if ! zmodload zsh/zutil 2>/dev/null; then
-    ZTST_unimplemented="can't load the zsh/zutil module for testing"
-  fi
-
-%test
-  zstyle :random:stuff any-old-style with any old value
-  zstyle :randomly:chosen some-other-style I can go on and on
-  zstyle -d
-  zstyle
-0:zstyle -d restores a pristine state
-
-# patterns should be ordered by weight, so add in reverse order to check
-  zstyle ':ztst:context*' scalar-style other-scalar-value
-  zstyle ':ztst:context:*' scalar-style second-scalar-value
-  zstyle ':ztst:context:sub1' scalar-style scalar-value
-  zstyle ':ztst:context:sub1' array-style array value elements 'with spaces'
-  zstyle ':ztst:context*' boolean-style false
-  zstyle ':ztst:context:sub1' boolean-style true
-0:defining styles
-
-# styles are now sorted, but patterns are in order of definition
-  zstyle
-0:listing styles in default format
->array-style
->        :ztst:context:sub1 array value elements 'with spaces'
->boolean-style
->        :ztst:context:sub1 true
->        :ztst:context* false
->scalar-style
->        :ztst:context:sub1 scalar-value
->        :ztst:context:* second-scalar-value
->        :ztst:context* other-scalar-value
-
-  zstyle -L
-0:listing styles in zstyle format
->zstyle :ztst:context:sub1 array-style array value elements 'with spaces'
->zstyle :ztst:context:sub1 boolean-style true
->zstyle ':ztst:context*' boolean-style false
->zstyle :ztst:context:sub1 scalar-style scalar-value
->zstyle ':ztst:context:*' scalar-style second-scalar-value
->zstyle ':ztst:context*' scalar-style other-scalar-value
-
-  zstyle -b :ztst:context:sub1 boolean-style bool; print $bool
-  zstyle -t :ztst:context:sub1 boolean-style
-0:boolean test -b/-t + true
->yes
-
-  zstyle -b :ztst:context:sub2 boolean-style bool; print $bool
-  zstyle -t :ztst:context:sub2 boolean-style
-1:boolean test -b/-t + false
->no
-
-  zstyle -b :ztst:context:sub1 boolean-unset-style bool; print $bool
-  zstyle -t :ztst:context:sub1 boolean-unset-style
-2:boolean test -b/-t + unset
->no
-
-  zstyle -T :ztst:context:sub1 boolean-style
-0:boolean test -T + true
-
-  zstyle -T :ztst:context:sub2 boolean-style
-1:boolean test -T + false
-
-  zstyle -T :ztst:context:sub1 boolean-unset-style
-0:boolean test -T + unset
-
-  zstyle -s :ztst:context:sub1 scalar-style scalar && print $scalar
-  zstyle -s :ztst:context:sub2 scalar-style scalar && print $scalar
-  zstyle -s :ztst:contextual-psychedelia scalar-style scalar && print $scalar
-  zstyle -s :ztst:contemplative scalar-style scalar || print no match
-0:pattern matching rules
->scalar-value
->second-scalar-value
->other-scalar-value
->no match
-
-  zstyle -s :ztst:context:sub1 array-style scalar + && print $scalar
-0:scalar with separator
->array+value+elements+with spaces
-
-  zstyle -e :ztst:\* eval-style 'reply=($something)'
-  something=(one two three)
-  zstyle -a :ztst:eval eval-style array && print -l $array
-0:zstyle -e evaluations
->one
->two
->three
-
-# pattern ordering on output is not specified, so although in the
-# current implementation it's deterministic we shouldn't
-# assume it's always the same.  Thus we sort the array.
-# (It might be a nice touch to order patterns by weight, which is
-# the way they are stored for each separate style.)
-  zstyle -g array && print -l ${(o)array}
-0:retrieving patterns
->:ztst:*
->:ztst:context*
->:ztst:context:*
->:ztst:context:sub1
-
-  zstyle -m :ztst:context:sub1 array-style 'w* *s'
-0:positive pattern match
-
-  zstyle -m :ztst:context:sub1 array-style 'v'
-1:negative pattern match
-
-  zstyle -g array ':ztst:context*' && print -l $array
-0:retrieving styles by pattern
->boolean-style
->scalar-style
-
-  zstyle -g array ':ztst:context:sub1' array-style && print -l $array
-0:retrieving values by pattern and name
->array
->value
->elements
->with spaces
-
-  zstyle -d :ztst:context:sub1
-  zstyle
-0:deleting styles by pattern only
->boolean-style
->        :ztst:context* false
->eval-style
->(eval)  :ztst:* 'reply=($something)'
->scalar-style
->        :ztst:context:* second-scalar-value
->        :ztst:context* other-scalar-value
-
-  zstyle -d :ztst:context\* scalar-style
-  zstyle
-0:deleting styles by pattern and style name
->boolean-style
->        :ztst:context* false
->eval-style
->(eval)  :ztst:* 'reply=($something)'
->scalar-style
->        :ztst:context:* second-scalar-value
-
- (zstyle 'ctx?' foo one
-  zstyle 'ctx*' foo two
-  zstyle -s 'ctx1' foo bar && print $bar)
- (zstyle 'ctx*' foo two
-  zstyle 'ctx?' foo one
-  zstyle -s 'ctx1' foo bar && print $bar)
-0:patterns of equal weight are used in order of definition
->one
->two
-