tide/tests/_tide_item_terraform.test.fish
radek-sprta 3787c725f7
Add Terraform item (#203)
* Add Terraform item

* Do not show default workspace in Terraform prompt

* Add terraform to tide_right_prompt_items

* Add terraform to _tide_remove_unusable_items

* Fix test, use read, format

Co-authored-by: Ilan Cosman <ilancosman@gmail.com>
2021-09-21 16:02:08 -07:00

20 lines
329 B
Fish

# 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