tide/tests/_tide_item_terraform.test.fish

20 lines
329 B
Fish
Raw Normal View History

# RUN: %fish %s
function _terraform
_tide_decolor (_tide_item_terraform)
end
set -l terraformDir (mktemp -d)
cd $terraformDir
mock terraform "workspace show" "echo default"
_terraform # CHECK:
mkdir .terraform
_terraform # CHECK:
mock terraform "workspace show" "echo test"
_terraform # CHECK: test
rm -r $terraformDir