summaryrefslogtreecommitdiffstats
path: root/test/pacman/tests/config002.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/pacman/tests/config002.py')
-rw-r--r--test/pacman/tests/config002.py12
1 files changed, 12 insertions, 0 deletions
diff --git a/test/pacman/tests/config002.py b/test/pacman/tests/config002.py
new file mode 100644
index 00000000..8efe5a04
--- /dev/null
+++ b/test/pacman/tests/config002.py
@@ -0,0 +1,12 @@
+self.description = "Quick check for Include being parsed in [db]"
+
+sp = pmpkg("dummy")
+sp.files = ["bin/dummy",
+ "usr/man/man1/dummy.1"]
+self.addpkg2db("sync", sp)
+
+self.db['sync'].option['Include'] = ['/dev/null']
+
+self.args = "-Si %s" % sp.name
+
+self.addrule("PACMAN_RETCODE=0")