blob: 549cb6b878239448db6cf4d1d44fd7765c224258 (
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
27
28
29
30
31
32
33
|
require "vnd.dovecot.testsuite";
require "comparator-i;ascii-numeric";
require "relational";
test "Invalid :options argument (FIXME: count only)" {
if test_script_compile "errors/options.sieve" {
test_fail "compile should have failed";
}
if not test_error :count "eq" :comparator "i;ascii-numeric" "3" {
test_fail "wrong number of errors reported";
}
}
test "Deprecated notify extension used with enotify" {
if test_script_compile "errors/conflict.sieve" {
test_fail "compile should have failed";
}
if not test_error :count "eq" :comparator "i;ascii-numeric" "3" {
test_fail "wrong number of errors reported";
}
}
test "Deprecated notify extension used with enotify (ihave)" {
if test_script_compile "errors/conflict-ihave.sieve" {
test_fail "compile should have failed";
}
if not test_error :count "eq" :comparator "i;ascii-numeric" "3" {
test_fail "wrong number of errors reported";
}
}
|