diff options
author | Daniel Friesel <derf@derf.homelinux.org> | 2009-07-11 01:17:18 +0200 |
---|---|---|
committer | Daniel Friesel <derf@derf.homelinux.org> | 2009-07-11 01:21:48 +0200 |
commit | 324568044af4287dd25a90dc143ea26df565d1e3 (patch) | |
tree | 0bcf9ff698d825c50a72d85c02560d88782e1915 /test/main | |
parent | 389bd0bcb530fee9c92ed9c419d82303a322274d (diff) |
Renamed pkg to caretaker
Diffstat (limited to 'test/main')
-rwxr-xr-x | test/main | 44 |
1 files changed, 22 insertions, 22 deletions
@@ -3,7 +3,7 @@ unset -m 'GIT_*' 'XDG_*' setopt err_exit trap "print -P '\n%N:%i: %B%F{red}Test faild!%F{default}%b'" ZERR -alias pkg='pkg --quiet --no-colours' +alias ct='ct --quiet --no-colours' source test/documentation @@ -31,39 +31,39 @@ source $tests/checklinks (source $tests/setup) echo "# bootstrapping PKG_DIR" -$test_proot/pkg/include/bootstrap $test_proot $test_pdir +$test_proot/caretaker/include/bootstrap $test_proot $test_pdir echo "# checking for success" -[[ -e $test_home/.config/pkg/pkg.conf ]] -[[ -d $test_proot/pkg ]] -[[ -d $test_pdir/pkg ]] -[[ -L $test_home/bin/pkg ]] +[[ -e $test_home/.config/caretaker/caretaker.conf ]] +[[ -d $test_proot/caretaker ]] +[[ -d $test_pdir/caretaker ]] +[[ -L $test_home/bin/ct ]] [[ -L $test_home/bin/checklinks ]] -[[ -x $(readlink $test_home/bin/pkg) ]] +[[ -x $(readlink $test_home/bin/ct) ]] [[ -x $(readlink $test_home/bin/checklinks) ]] -[[ -e $test_pdir/.collected/man/man1/pkg.1 ]] -[[ -e $test_pdir/.collected/man/man5/pkg.conf.5 ]] -[[ -e $test_pdir/.collected/man/man7/pkg.7 ]] +[[ -e $test_pdir/.collected/man/man1/ct.1 ]] +[[ -e $test_pdir/.collected/man/man5/caretaker.conf.5 ]] +[[ -e $test_pdir/.collected/man/man7/caretaker.7 ]] -echo "# pkg list local" -stringcmp "pkg" "$(pkg list)" -stringcmp "pkg" "$(pkg list local)" +echo "# ct list local" +stringcmp "caretaker" "$(ct list)" +stringcmp "caretaker" "$(ct list local)" -echo "# pkg list not-installed" -stringcmp "ra\nra-bare\nrb\nrb-bare\nrc\nrc-bare" "$(pkg list not-installed)" +echo "# ct list not-installed" +stringcmp "ra\nra-bare\nrb\nrb-bare\nrc\nrc-bare" "$(ct list not-installed)" -echo "# pkg list all" -stringcmp "pkg\nra\nra-bare\nrb\nrb-bare\nrc\nrc-bare" "$(pkg list all)" +echo "# ct list all" +stringcmp "caretaker\nra\nra-bare\nrb\nrb-bare\nrc\nrc-bare" "$(ct list all)" -echo "# pkg add (no such repo)" -! pkg add weltfrieden +echo "# ct add (no such repo)" +! ct add weltfrieden -echo "# pkg add (already installed)" -! pkg add pkg +echo "# ct add (already installed)" +! ct add caretaker for conf_origin in 0 1; { echo "## GIT_USE_ORIGIN=$conf_origin" - echo "GIT_USE_ORIGIN=$conf_origin" >> $test_home/.config/pkg/pkg.conf + echo "GIT_USE_ORIGIN=$conf_origin" >> $test_home/.config/caretaker/caretaker.conf for repo in ra ra-bare; { file=${repo%-*} if [[ $repo == *-bare ]] { |