blob: 148f4dab65ef3bf891b0ed34ed656a76803e8564 (
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
|
require "vnd.dovecot.testsuite";
require "relational";
require "comparator-i;ascii-numeric";
/*
* Invalid program names
*/
test "Invalid Program Names" {
if test_script_compile "errors/programname.sieve" {
test_fail "compile should have failed";
}
if not test_error :count "eq" :comparator "i;ascii-numeric" "8" {
test_fail "wrong number of errors reported";
}
}
/*
* Invalid arguments
*/
test "Invalid Arguments" {
if test_script_compile "errors/arguments.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";
}
}
|