[pacman-dev] [PATCH] Add pactest for "Optional for" output

Allan McRae allan at archlinux.org
Sun Aug 12 02:40:36 EDT 2012


From: Benedikt Morbach <benedikt.morbach at googlemail.com>

Signed-off-by: Allan McRae <allan at archlinux.org>
---
 test/pacman/tests/query012.py | 13 +++++++++++++
 1 file changed, 13 insertions(+)
 create mode 100644 test/pacman/tests/query012.py

diff --git a/test/pacman/tests/query012.py b/test/pacman/tests/query012.py
new file mode 100644
index 0000000..cdb7120
--- /dev/null
+++ b/test/pacman/tests/query012.py
@@ -0,0 +1,13 @@
+self.description = "Query info on a package (reverse optdeps)"
+
+pkg = pmpkg("dummy", "1.0-2")
+pkg.optdepends = ["dep: for foobar"]
+self.addpkg2db("local", pkg)
+
+dep = pmpkg("dep")
+self.addpkg2db("local", dep)
+
+self.args = "-Qi %s" % dep.name
+
+self.addrule("PACMAN_RETCODE=0")
+self.addrule("PACMAN_OUTPUT=^Optional For.*%s" % pkg.name)
-- 
1.7.11.4



More information about the pacman-dev mailing list