Move important information up in -Si output
[pacman-ng.git] / test / pacman / tests / config001.py
blob3411433fa0a8f56d33c5f5aa532b1988bfb27a3e
1 self.description = "Quick check for Include being parsed in [options]"
3 self.option['Include'] = ['/dev/null']
5 p = pmpkg("foobar")
6 p.files = ["bin/foobar"]
7 p.desc = "test description"
8 p.groups = ["foo"]
9 p.url = "http://www.archlinux.org"
10 p.license = "GPL2"
11 p.arch = "i686"
13 self.addpkg2db("local", p)
15 self.args = "-Qi %s" % p.name
17 self.addrule("PACMAN_RETCODE=0")