summaryrefslogtreecommitdiff
path: root/test/pacman/tests/remove002.py
diff options
context:
space:
mode:
authorDan McGee <dan@archlinux.org>2011-01-11 21:20:10 -0600
committerDan McGee <dan@archlinux.org>2011-01-11 21:20:10 -0600
commit57c5afd69c4c70ad85676bab32150d6182a3def9 (patch)
treed0205a02cf32351441f32c37a954890e1a76b6dc /test/pacman/tests/remove002.py
parent0284cf2128eb0179a3598ee21a951c5b3c11be40 (diff)
parent33240e87b99e5aebd0e64a672ea307a698edb32f (diff)
Merge branch 'fix-double-load'
Diffstat (limited to 'test/pacman/tests/remove002.py')
-rw-r--r--test/pacman/tests/remove002.py12
1 files changed, 12 insertions, 0 deletions
diff --git a/test/pacman/tests/remove002.py b/test/pacman/tests/remove002.py
new file mode 100644
index 00000000..1deffb0d
--- /dev/null
+++ b/test/pacman/tests/remove002.py
@@ -0,0 +1,12 @@
+self.description = "Remove a package with several files"
+
+p = pmpkg("foo")
+p.files = ["usr/share/file_%d" % n for n in range(1000)]
+self.addpkg2db("local", p)
+
+self.args = "-R %s" % p.name
+
+self.addrule("PACMAN_RETCODE=0")
+self.addrule("!PKG_EXIST=foo")
+self.addrule("!FILE_EXIST=usr/share/file_0")
+self.addrule("!FILE_EXIST=usr/share/file_999")