mirror of
https://github.com/moparisthebest/pacman
synced 2024-10-31 23:55:04 -04:00
e8eff3ef97
These new tests test the following ops at least once: -Ss, -Si, -Sl, -Sp, -Qs, -Qi, -T Signed-off-by: Dan McGee <dan@archlinux.org>
11 lines
216 B
Python
11 lines
216 B
Python
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)
|