summaryrefslogtreecommitdiffstats
path: root/test/pacman/tests/query001.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/pacman/tests/query001.py')
-rw-r--r--test/pacman/tests/query001.py10
1 files changed, 10 insertions, 0 deletions
diff --git a/test/pacman/tests/query001.py b/test/pacman/tests/query001.py
new file mode 100644
index 00000000..8faf0e15
--- /dev/null
+++ b/test/pacman/tests/query001.py
@@ -0,0 +1,10 @@
+self.description = "Query a package"
+
+p = pmpkg("foobar")
+p.files = ["bin/foobar"]
+self.addpkg2db("local", p)
+
+self.args = "-Q %s" % p.name
+
+self.addrule("PACMAN_RETCODE=0")
+self.addrule("PACMAN_OUTPUT=%s" % p.name)