summaryrefslogtreecommitdiff
path: root/tmux/.tmux/plugins/tpm/tests/helpers/tpm.sh
diff options
context:
space:
mode:
authorElizabeth <me@liz.coffee>2025-06-02 13:11:10 -0700
committerElizabeth <me@liz.coffee>2025-06-02 13:11:10 -0700
commitd098e94ad102da9d018acca72ca5a5c554d25a01 (patch)
treed6d23ee63ad5a1aa4017a605d9e09e75de2c5f49 /tmux/.tmux/plugins/tpm/tests/helpers/tpm.sh
parentede675866355d34ac9fdc1b8e047576f574bdfa2 (diff)
downloaddotfiles-d098e94ad102da9d018acca72ca5a5c554d25a01.tar.gz
dotfiles-d098e94ad102da9d018acca72ca5a5c554d25a01.zip
Update paths n stuff
Diffstat (limited to 'tmux/.tmux/plugins/tpm/tests/helpers/tpm.sh')
-rw-r--r--tmux/.tmux/plugins/tpm/tests/helpers/tpm.sh13
1 files changed, 0 insertions, 13 deletions
diff --git a/tmux/.tmux/plugins/tpm/tests/helpers/tpm.sh b/tmux/.tmux/plugins/tpm/tests/helpers/tpm.sh
deleted file mode 100644
index 1594afb..0000000
--- a/tmux/.tmux/plugins/tpm/tests/helpers/tpm.sh
+++ /dev/null
@@ -1,13 +0,0 @@
-check_dir_exists_helper() {
- [ -d "$1" ]
-}
-
-# runs the scripts and asserts it has the correct output and exit code
-script_run_helper() {
- local script="$1"
- local expected_output="$2"
- local expected_exit_code="${3:-0}"
- $script 2>&1 |
- grep "$expected_output" >/dev/null 2>&1 && # grep -q flag quits the script early
- [ "${PIPESTATUS[0]}" -eq "$expected_exit_code" ]
-}