summaryrefslogtreecommitdiff
path: root/test/pacman/tests/hook-type-reused.py
blob: 472c8caff2e166cf988f11e5af347b2013946ffb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
self.description = "Hook using multiple 'Type's"

self.add_hook("hook",
        """
        [Trigger]
        Type = Package
        Type = File
        Operation = Install
        Target = foo

        [Action]
        When = PostTransaction
        Exec = /bin/date
        """);

sp = pmpkg("foo")
self.addpkg2db("sync", sp)

self.args = "-S foo"

self.addrule("PACMAN_RETCODE=0")
self.addrule("PACMAN_OUTPUT=warning.*overwriting previous definition of Type")