1
0
mirror of https://github.com/moparisthebest/pacman synced 2024-08-13 17:03:46 -04:00
pacman/pactest/tests/upgrade051.py
Dan McGee f2ade9ab0d * Added 5 new upgrade tests, which check various things with depends,
provides, and conflicts.
  - upgrade051 is known to fail- but we want to eventually make it work.
  - upgrade052 is Nagy's bug as reported on the ML- I think. If it isn't,
    let me know.
2007-02-27 01:34:07 +00:00

16 lines
332 B
Python

self.description = "Upgrade to a package that provides another package"
lp = pmpkg("pkg1")
self.addpkg2db("local", lp)
p = pmpkg("pkg2")
p.conflicts = ["pkg1"]
p.provides = ["pkg1"]
self.addpkg(p)
self.args = "-U %s" % p.filename()
self.addrule("PACMAN_RETCODE=0")
self.addrule("!PKG_EXIST=pkg1")
self.addrule("PKG_EXIST=pkg2")