blob: cbe41a2a5820c60594df55f0c6996bc4289e7169 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
require "vnd.dovecot.testsuite";
require "include";
require "variables";
set "global.a" "none";
include :personal "namespace";
if string "${global.a}" "none" {
test_fail "personal script not executed";
}
if not string "${global.a}" "personal" {
test_fail "executed global instead of personal script: ${global.a}";
}
set "global.a" "none";
include :global "namespace";
if string "{global.a}" "none" {
test_fail "global script not executed";
}
if not string "${global.a}" "global" {
test_fail "executed personal instead of global script: ${global.a}";
}
|