]> Sergey Matveev's repositories - zsh-autoenv.git/blobdiff - tests/autoenv.t
Fix tests: match $CRAMTMP more losely (#78)
[zsh-autoenv.git] / tests / autoenv.t
index 67be7ca7f27891ca676f32ca90f42fe06166f4cb..8d2e864c5bff970bb7bb180b9f09919a5a7ad957 100644 (file)
@@ -1,23 +1,23 @@
-  $ source $TESTDIR/setup.sh || return 1
+  $ source $TESTDIR/setup.zsh || return 1
 
-Lets set a simple .env action
+Lets set a simple .autoenv.zsh action
 
-  $ echo 'echo ENTERED' > .env
+  $ echo 'echo ENTERED' > .autoenv.zsh
 
 Manually create auth file
 
-  $ test_autoenv_add_to_env $PWD/.env
+  $ test_autoenv_add_to_env $PWD/.autoenv.zsh
   $ cd .
   ENTERED
 
 Now try to make it accept it
 
   $ _autoenv_stack_entered=()
-  $ rm $AUTOENV_ENV_FILENAME
+  $ rm $AUTOENV_AUTH_FILE
   $ _autoenv_ask_for_yes() { echo "yes" }
   $ cd .
   Attempting to load unauthorized env file!
-  -* /tmp/cramtests-*/autoenv.t/.env (glob)
+  -* /*/cramtests-*/autoenv.t/.autoenv.zsh (glob)
   
   **********************************************
   
@@ -38,11 +38,11 @@ Now lets see that it actually checks the shasum value.
   ENTERED
 
   $ _autoenv_stack_entered=()
-  $ rm $AUTOENV_ENV_FILENAME
-  $ test_autoenv_add_to_env $PWD/.env mischief
+  $ rm $AUTOENV_AUTH_FILE
+  $ test_autoenv_add_to_env $PWD/.autoenv.zsh mischief
   $ cd .
   Attempting to load unauthorized env file!
-  -* /tmp/cramtests-*/autoenv.t/.env (glob)
+  -* /*/cramtests-*/autoenv.t/.autoenv.zsh (glob)
   
   **********************************************
   
@@ -57,11 +57,11 @@ Now lets see that it actually checks the shasum value.
 Now, will it take no for an answer?
 
   $ _autoenv_stack_entered=()
-  $ rm $AUTOENV_ENV_FILENAME
+  $ rm $AUTOENV_AUTH_FILE
   $ _autoenv_ask_for_yes() { echo "no"; return 1 }
   $ cd .
   Attempting to load unauthorized env file!
-  -* /tmp/cramtests-*/autoenv.t/.env (glob)
+  -* /*/cramtests-*/autoenv.t/.autoenv.zsh (glob)
   
   **********************************************
   
@@ -77,7 +77,7 @@ Lets also try one more time to ensure it didn't add it.
   $ _autoenv_ask_for_yes() { echo "yes"; return 0 }
   $ cd .
   Attempting to load unauthorized env file!
-  -* /tmp/cramtests-*/autoenv.t/.env (glob)
+  -* /*/cramtests-*/autoenv.t/.autoenv.zsh (glob)
   
   **********************************************