mirror of
https://github.com/moparisthebest/pacman
synced 2024-12-22 15:58:50 -05:00
Added a test for checking 'requiredby' removal
This commit is contained in:
parent
fd2167131f
commit
eb8ae6cdc8
18
pactest/tests/remove040.py
Normal file
18
pactest/tests/remove040.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" % lp1.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