You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
meli/melib/src/sieve/tests/compile/errors/comparator.sieve

22 lines
378 B
Sieve

/*
* Address part errors
*
* Total errors: 5 (+1 = 6)
*/
# 1: No argument
if address :comparator { }
# 2: Number argument
if address :comparator 1 "from" "frop" { }
# 3: String list argument
if address :comparator ["a", "b"] "from" "frop" { }
# 4: Unknown tag
if address :comparator :frop "from" "frop" { }
# 5: Known tag
if address :comparator :all "from" "frop" { }