index : pacman | |
Archlinux32 fork of pacman | gitolite user |
summaryrefslogtreecommitdiff |
author | Dan McGee <dan@archlinux.org> | 2010-05-17 18:47:30 -0500 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2010-05-17 18:47:30 -0500 |
commit | a6ace987a913852af30bb5e3ae6bf145dc9c6157 (patch) | |
tree | bab1c477eda951edf1c9ea51103ae3b0f23060f2 /pactest/tests/config001.py | |
parent | 3a85f83840888cbab09f2413fa3eb7c3b71055e5 (diff) |
-rw-r--r-- | pactest/tests/config001.py | 17 |
diff --git a/pactest/tests/config001.py b/pactest/tests/config001.py new file mode 100644 index 00000000..3411433f --- /dev/null +++ b/pactest/tests/config001.py @@ -0,0 +1,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") |