1
0
mirror of https://github.com/moparisthebest/pacman synced 2024-11-05 00:55:04 -05:00

Add pactests for displaying optdep installation status

Signed-off-by: Allan McRae <allan@archlinux.org>
This commit is contained in:
Benedikt Morbach 2012-08-11 22:29:04 +10:00 committed by Allan McRae
parent 63a2874fe4
commit 9a24f1ffc5
2 changed files with 27 additions and 0 deletions

View File

@ -0,0 +1,12 @@
self.description = "Query info on a package (optdep install status [uninstalled])"
optstr = "dep: for foobar"
pkg = pmpkg("dummy", "1.0-2")
pkg.optdepends = [optstr]
self.addpkg2db("local", pkg)
self.args = "-Qi %s" % pkg.name
self.addrule("PACMAN_RETCODE=0")
self.addrule("PACMAN_OUTPUT=^Optional Deps.*%s$" % optstr)

View File

@ -0,0 +1,15 @@
self.description = "Query info on a package (optdep install status [installed])"
optstr = "dep: for foobar"
pkg = pmpkg("dummy", "1.0-2")
pkg.optdepends = [optstr]
self.addpkg2db("local", pkg)
dep = pmpkg("dep")
self.addpkg2db("local", dep)
self.args = "-Qi %s" % pkg.name
self.addrule("PACMAN_RETCODE=0")
self.addrule("PACMAN_OUTPUT=^Optional Deps.*%s \[installed\]$" % optstr)