diff options
author | Nagy Gabor <ngaba@petra.hos.u-szeged.hu> | 2007-08-04 17:08:03 +0200 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2007-08-13 03:14:05 +0200 |
commit | b96922679e4ed14aa687bf194b766d82a1d10577 (patch) | |
tree | 221e0f21e0da80e754c6d029a20175720eb1909f /pactest/tests/conflict003.py | |
parent | dc5e6d5d87ceee61c38a8ecc2a87e99d49887b83 (diff) | |
download | pacman-b96922679e4ed14aa687bf194b766d82a1d10577.tar.gz pacman-b96922679e4ed14aa687bf194b766d82a1d10577.tar.xz |
Add two pactest for versioned conflicts.
A side effect of the previous commit ( ea9a756eeaca7398c0860b55f8abe2932ad195bd )
is that it's now possible to use versioned conflicts.
Add two new conflict pactests for showing it.
Signed-off-by: Chantry Xavier <shiningxc@gmail.com>
Diffstat (limited to 'pactest/tests/conflict003.py')
-rw-r--r-- | pactest/tests/conflict003.py | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/pactest/tests/conflict003.py b/pactest/tests/conflict003.py new file mode 100644 index 00000000..7205086a --- /dev/null +++ b/pactest/tests/conflict003.py @@ -0,0 +1,13 @@ +self.description = "conflict with version (no conflict)" + +p = pmpkg("pkg1") +p.conflicts = ["pkg2=1.0-2"] +self.addpkg(p); + +lp = pmpkg("pkg2", "1.0-1") +self.addpkg2db("local", lp) + +self.args = "-A %s" % p.filename() +self.addrule("PACMAN_RETCODE=0") +self.addrule("PKG_EXIST=pkg1") +self.addrule("PKG_EXIST=pkg2") |