index : pacman | |
Archlinux32 fork of pacman | gitolite user |
summaryrefslogtreecommitdiff |
author | Dan McGee <dan@archlinux.org> | 2008-03-08 14:04:06 -0600 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2008-03-08 14:13:22 -0600 |
commit | 266f06866bd56b86ca8525d2e07d48d08fedaa8f (patch) | |
tree | 18221ade65ea3d57bf6fb01f109203fcaafe722b /pactest/tests/add012.py | |
parent | 49197b7492d61bf1fc6bef59a708f4f586f32edb (diff) |
-rw-r--r-- | pactest/tests/add012.py | 20 |
diff --git a/pactest/tests/add012.py b/pactest/tests/add012.py deleted file mode 100644 index 291d1fba..00000000 --- a/pactest/tests/add012.py +++ /dev/null @@ -1,20 +0,0 @@ -self.description = "Install two packages with a conflicting file" - -p1 = pmpkg("dummy") -p1.files = ["bin/dummy", - "usr/man/man1/dummy.1", - "usr/common"] - -p2 = pmpkg("foobar") -p2.files = ["bin/foobar", - "usr/man/man1/foobar.1", - "usr/common"] - -for p in p1, p2: - self.addpkg(p) - -self.args = "-A %s" % " ".join([p.filename() for p in p1, p2]) - -self.addrule("PACMAN_RETCODE=1") -self.addrule("!PKG_EXIST=dummy") -self.addrule("!PKG_EXIST=foobar") |