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

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

        [Action]
        Description = lala
        Description = foobar
        When = PreTransaction
        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 Description")