blob: a9d9cde99c15134b0dd0425479543a64b849dcb6 (
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
|
require "vnd.dovecot.testsuite";
require "comparator-i;ascii-numeric";
require "relational";
test "Deprecated imapflags extension used with imap4flags" {
if test_script_compile "errors/conflict.sieve" {
test_fail "compile should have failed";
}
if not test_error :count "eq" :comparator "i;ascii-numeric" "2" {
test_fail "wrong number of errors reported";
}
}
test "Deprecated imapflags extension used with imap4flags (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";
}
}
|