]> ruderich.org/simon Gitweb - config/dotfiles.git/blob - tests/source_config.test
Simplified loading of config files by using a function.
[config/dotfiles.git] / tests / source_config.test
1 # Test file for source_config().
2
3
4 # Load source_config().
5 source ../shell/env
6
7
8 # Make sure the old temporary directory is removed.
9 rm -rf tmp
10 # Create the test directories/files.
11 mkdir tmp
12 mkdir tmp/bash
13 mkdir tmp/shell
14 mkdir tmp/zsh tmp/zsh/host tmp/zsh/os
15 echo echo loaded bash/env.zucker > tmp/shell/env.zucker
16 echo echo loaded shell/env.zucker > tmp/shell/env.zucker
17 echo echo loaded zsh.env.local > tmp/zsh/env.local
18 echo echo loaded zsh/rc.local > tmp/zsh/rc.local
19 echo echo loaded zsh/host/rc.zucker > tmp/zsh/host/rc.zucker
20 echo echo loaded zsh/os/rc.Darwin > tmp/zsh/os/rc.Darwin
21
22
23 function tests() {
24     source_config tmp/zsh os   rc Darwin nolocal
25     source_config tmp/zsh host rc zucker
26
27     source_config tmp/zsh os   env Darwin nolocal
28     source_config tmp/zsh host env zucker
29
30     source_config tmp/bash host rc zucker
31
32     source_config tmp/shell "" env zucker
33 }
34
35 # Run tests without and with debug output.
36 tests
37 echo
38 DEBUG=1 tests