diff options
author | Aaron Griffin <aaron@archlinux.org> | 2007-03-22 09:30:18 +0100 |
---|---|---|
committer | Aaron Griffin <aaron@archlinux.org> | 2007-03-22 09:30:18 +0100 |
commit | bdfe232b8a269e5f63806bbdb7a3d8edf6b2ee7a (patch) | |
tree | 93dda4a85cbee0156446de94568f09c3b53a4737 /pactest/tests | |
parent | 118671eff46e42de592a9ac4f6ab5fa32c0f907f (diff) | |
download | pacman-bdfe232b8a269e5f63806bbdb7a3d8edf6b2ee7a.tar.gz pacman-bdfe232b8a269e5f63806bbdb7a3d8edf6b2ee7a.tar.xz |
Quick pactest changes:
* Minor change to utils.py(grep) to make it cleaner
* Added scriptlet check to verify scriptlet events happen
Diffstat (limited to 'pactest/tests')
-rw-r--r-- | pactest/tests/scriptlet001.py | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/pactest/tests/scriptlet001.py b/pactest/tests/scriptlet001.py new file mode 100644 index 00000000..a749a114 --- /dev/null +++ b/pactest/tests/scriptlet001.py @@ -0,0 +1,15 @@ +# quick note here - chroot() is expected to fail. We're not checking the +# validity of the scripts, only that they fire (or try to) +self.description = "Scriptlet test (pre/post install)" + +p1 = pmpkg("dummy") +p1.files = ['etc/dummy.conf'] +p1.install['pre_install'] = "ls /etc"; +p1.install['post_install'] = "ls /etc"; +self.addpkg(p1) + +self.args = "-U %s" % p1.filename() + +self.addrule("PACMAN_RETCODE=0") +self.addrule("PACMAN_OUTPUT=pre_install") +self.addrule("PACMAN_OUTPUT=post_install") |