summaryrefslogtreecommitdiffstats
path: root/test/pacman/tests/upgrade004.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/pacman/tests/upgrade004.py')
-rw-r--r--test/pacman/tests/upgrade004.py12
1 files changed, 12 insertions, 0 deletions
diff --git a/test/pacman/tests/upgrade004.py b/test/pacman/tests/upgrade004.py
new file mode 100644
index 00000000..31daf915
--- /dev/null
+++ b/test/pacman/tests/upgrade004.py
@@ -0,0 +1,12 @@
+self.description = "Upgrade a package (not installed)"
+
+p = pmpkg("dummy")
+p.files = ["bin/dummy",
+ "usr/man/man1/dummy.1"]
+self.addpkg(p)
+
+self.args = "-U %s" % p.filename()
+
+self.addrule("PKG_EXIST=dummy")
+for f in p.files:
+ self.addrule("FILE_EXIST=%s" % f)