1
0
mirror of https://github.com/moparisthebest/pacman synced 2025-01-12 14:28:03 -05:00
pacman/pactest/tests/remove001.py
Aaron Griffin 10ba636987 * Fix FS#6798 - there is no reason to fail on a duplicate removal target
Added a pactest case for this ("-R foo foo foo foo foo" should do what is
  expected)
2007-04-04 04:43:24 +00:00

11 lines
257 B
Python

# If someone else can come up with a better name, please do so
self.description = "Remove a package listed 5 times"
p = pmpkg("foo")
self.addpkg2db("local", p)
self.args = "-R " + "foo "*5
self.addrule("PACMAN_RETCODE=0")
self.addrule("!PKG_EXISTS=foo")