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/remove | |
parent | 389bd0bcb530fee9c92ed9c419d82303a322274d (diff) |
Renamed pkg to caretaker
Diffstat (limited to 'test/remove')
-rw-r--r-- | test/remove | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/test/remove b/test/remove index e850ec0..f895e60 100644 --- a/test/remove +++ b/test/remove @@ -1,19 +1,19 @@ ## vim:ft=zsh -echo "# pkg remove (not installed/nonexistent)" -! pkg remove suckage -! pkg remove rb +echo "# ct remove (not installed/nonexistent)" +! ct remove suckage +! ct remove rb -echo "# pkg remove (ok)" -pkg remove $repo +echo "# ct remove (ok)" +ct remove $repo echo "# genocide_collected (~/bin)" [[ ! -L $test_home/bin/$file ]] [[ ! -e $test_pdir/.collected/man/man2/$file.2 ]] repeat 2 { - echo "# pkg list" - stringcmp "pkg" "$(pkg list local)" - stringcmp "ra\nra-bare\nrb\nrb-bare\nrc\nrc-bare" "$(pkg list not-installed)" - stringcmp "pkg\nra\nra-bare\nrb\nrb-bare\nrc\nrc-bare" "$(pkg list remote)" - pkg update + echo "# ct list" + stringcmp "caretaker" "$(ct list local)" + stringcmp "ra\nra-bare\nrb\nrb-bare\nrc\nrc-bare" "$(ct list not-installed)" + stringcmp "caretaker\nra\nra-bare\nrb\nrb-bare\nrc\nrc-bare" "$(ct list remote)" + ct update } |