From 94aa8b1f163c88cb47c049da4f3c9935dc6da1e8 Mon Sep 17 00:00:00 2001 From: Dan McGee Date: Sun, 2 Dec 2007 18:11:23 -0600 Subject: Add a lot more tests (and some pactest fixes) to -Si and -Qi tests Signed-off-by: Dan McGee --- pactest/tests/query002.py | 13 +++++++++++++ 1 file changed, 13 insertions(+) (limited to 'pactest/tests/query002.py') diff --git a/pactest/tests/query002.py b/pactest/tests/query002.py index 830936b4..c6a6c7d3 100644 --- a/pactest/tests/query002.py +++ b/pactest/tests/query002.py @@ -2,9 +2,22 @@ self.description = "Query info on a package" 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" +# test both old style and new style dates +p.builddate = "Mon Oct 1 01:40:21 2007 UTC" +p.installdate = "1196640127" +p.packager = "Arch Linux" + self.addpkg2db("local", p) self.args = "-Qi %s" % p.name self.addrule("PACMAN_RETCODE=0") self.addrule("PACMAN_OUTPUT=%s" % p.name) +self.addrule("PACMAN_OUTPUT=%s" % p.desc) +self.addrule("PACMAN_OUTPUT=Oct") +self.addrule("PACMAN_OUTPUT=Dec") -- cgit v1.2.3-24-g4f1b