1
0
mirror of https://github.com/Tarrasch/zsh-autoenv.git synced 2024-07-05 13:50:11 +03:00
zsh-autoenv/tests/cwd.t
2014-11-24 20:13:18 +01:00

27 lines
588 B
Raku

Test $PWD, $_dotenv_from_dir and _dotenv_to_dir.
$ source $TESTDIR/setup.sh
Setup env actions / output.
$ DOTENV_LOOK_UPWARDS=1
$ mkdir -p sub/sub2
$ cd sub
$ echo 'echo ENTERED: PWD:${PWD:t} from:${_dotenv_from_dir:t} to:${_dotenv_to_dir:t}' > .env
$ echo 'echo LEFT: PWD:${PWD:t} from:${_dotenv_from_dir:t} to:${_dotenv_to_dir:t}' > .env.leave
Manually create auth files.
$ test_autoenv_auth_env_files
The actual tests.
$ cd .
ENTERED: PWD:sub from:sub to:sub
$ cd ..
LEFT: PWD:sub from:sub to:cwd.t
$ cd sub/sub2
ENTERED: PWD:sub2 from:cwd.t to:sub2