]> Sergey Matveev's repositories - zsh-autoenv.git/blobdiff - tests/autoenv_utils.t
Removed unused files
[zsh-autoenv.git] / tests / autoenv_utils.t
diff --git a/tests/autoenv_utils.t b/tests/autoenv_utils.t
deleted file mode 100644 (file)
index e3d2271..0000000
+++ /dev/null
@@ -1,29 +0,0 @@
-Tests for provided utils/helpers.
-
-  $ source $TESTDIR/setup.zsh || return 1
-
-  $ PATH=
-  $ autoenv_prepend_path custom_path
-  $ echo $PATH
-  custom_path
-
-  $ autoenv_prepend_path custom_path
-  $ echo $PATH
-  custom_path
-
-  $ autoenv_prepend_path another_path a_third_one
-  $ echo $PATH
-  a_third_one:another_path:custom_path
-
-  $ autoenv_remove_path another_path a_third_one
-  $ echo $PATH
-  custom_path
-
-  $ autoenv_remove_path does_not_exist
-  [1]
-  $ echo $PATH
-  custom_path
-
-  $ autoenv_remove_path custom_path
-  $ echo PATH:$PATH
-  PATH: