mirror of
https://github.com/IlanCosman/tide.git
synced 2024-12-23 20:13:05 +03:00
20 lines
592 B
Fish
20 lines
592 B
Fish
|
# RUN: %fish %s
|
||
|
|
||
|
function _kubectl
|
||
|
_tide_decolor (_tide_item_kubectl)
|
||
|
end
|
||
|
|
||
|
set -lx tide_kubectl_icon ⎈
|
||
|
|
||
|
mock kubectl "config view --minify --output" "echo error: current-context must exist in order to minify >&2; false"
|
||
|
_kubectl # CHECK:
|
||
|
|
||
|
mock kubectl "config view --minify --output" "printf curr-context/default"
|
||
|
_kubectl # CHECK: ⎈ curr-context
|
||
|
|
||
|
mock kubectl "config view --minify --output" "printf curr-context/"
|
||
|
_kubectl # CHECK: ⎈ curr-context
|
||
|
|
||
|
mock kubectl "config view --minify --output" "printf curr-context/curr-namespace"
|
||
|
_kubectl # CHECK: ⎈ curr-context/curr-namespace
|