summaryrefslogtreecommitdiffstats
path: root/pactest/tests/config001.py
blob: 3411433fa0a8f56d33c5f5aa532b1988bfb27a3e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
self.description = "Quick check for Include being parsed in [options]"

self.option['Include'] = ['/dev/null']

p = pmpkg("foobar")
p.files = ["bin/foobar"]
p.desc = "test description"
p.groups = ["foo"]
p.url = "http://www.archlinux.org"
p.license = "GPL2"
p.arch = "i686"

self.addpkg2db("local", p)

self.args = "-Qi %s" % p.name

self.addrule("PACMAN_RETCODE=0")