summaryrefslogtreecommitdiffstats
path: root/src/tests/keywords/update-list-error
blob: 26130559e8774e47ccb576aa5d568a0b28869eb4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#
# PRE: update
#
#  It's an error to update lists that don't exist.
#
update {
	request := reply
	config += request
	reply !* ANY
}

update {
       reply += `/path/to/foo bar baz`
}


update {
	request := nope		# ERROR
}