mirror of
https://github.com/moparisthebest/pacman
synced 2024-11-12 12:25:02 -05:00
Add new pactest remove043.
Remove a package required by another package. Signed-off-by: Chantry Xavier <shiningxc@gmail.com>
This commit is contained in:
parent
dde7b6f87a
commit
2746a6319a
18
pactest/tests/remove043.py
Normal file
18
pactest/tests/remove043.py
Normal file
@ -0,0 +1,18 @@
|
||||
self.description = "Remove a package required by another package"
|
||||
|
||||
lp1 = pmpkg("pkg1")
|
||||
lp1.depends = ["imaginary"]
|
||||
self.addpkg2db("local", lp1)
|
||||
|
||||
lp2 = pmpkg("pkg2")
|
||||
lp2.provides = ["imaginary"]
|
||||
lp2.requiredby = [ "pkg1" ]
|
||||
self.addpkg2db("local", lp2)
|
||||
|
||||
|
||||
self.args = "-R %s" % lp2.name
|
||||
|
||||
self.addrule("!PACMAN_RETCODE=0")
|
||||
self.addrule("PKG_EXIST=pkg1")
|
||||
self.addrule("PKG_EXIST=pkg2")
|
||||
self.addrule("PKG_REQUIREDBY=pkg2|pkg1")
|
Loading…
Reference in New Issue
Block a user