summaryrefslogtreecommitdiffstats
path: root/pactest
diff options
context:
space:
mode:
authorAaron Griffin <aaronmgriffin@gmail.com>2007-04-05 02:24:02 +0200
committerAaron Griffin <aaronmgriffin@gmail.com>2007-04-05 02:24:02 +0200
commit15a1b06d36c24ec8d88bc5e49d2d8cdca468310f (patch)
treeae5ad68855ee15de657bae39dbc9588a6622ca4c /pactest
parent76f816b9f764434d02e90207ee4656ebae2b6a8c (diff)
downloadpacman-15a1b06d36c24ec8d88bc5e49d2d8cdca468310f.tar.gz
pacman-15a1b06d36c24ec8d88bc5e49d2d8cdca468310f.tar.xz
pactest: remove001.py
* Test for duplicate remove targets (should succeed) Signed-off-by: Aaron Griffin <aaronmgriffin@gmail.com>
Diffstat (limited to 'pactest')
-rw-r--r--pactest/tests/remove001.py10
1 files changed, 10 insertions, 0 deletions
diff --git a/pactest/tests/remove001.py b/pactest/tests/remove001.py
new file mode 100644
index 00000000..809bfdb7
--- /dev/null
+++ b/pactest/tests/remove001.py
@@ -0,0 +1,10 @@
+# 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")