1
0
mirror of https://github.com/Tarrasch/zsh-autoenv.git synced 2024-07-03 04:50:11 +03:00
zsh-autoenv/tests/cwd.t

27 lines
588 B
Perl
Raw Normal View History

2014-11-21 23:33:00 +02:00
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
2014-11-21 23:33:00 +02:00
$ 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 .
2014-11-21 23:33:00 +02:00
ENTERED: PWD:sub from:sub to:sub
$ cd ..
2014-11-21 23:33:00 +02:00
LEFT: PWD:sub from:sub to:cwd.t
$ cd sub/sub2
2014-11-21 23:33:00 +02:00
ENTERED: PWD:sub2 from:cwd.t to:sub2