summaryrefslogtreecommitdiffstats
path: root/src/tests/keywords/foreach-nested.attrs
blob: 52d1f8146cfe2336330494560ff1d1956f40d998 (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
#
#  Input packet
#
User-Name = "bob"
User-Password = "hello"
Filter-Id = "1"
Filter-Id += "2"
Filter-Id += "3"
Filter-Id += "4"
Calling-Station-Id = "foo\n"
Calling-Station-Id += "bar"

#
#  Expected answer
#
Response-Packet-Type == Access-Accept
Called-Station-Id == '1 foo\n'
Called-Station-Id == '1 bar'
Called-Station-Id == '2 foo\n'
Called-Station-Id == '2 bar'
Called-Station-Id == '3 foo\n'
Called-Station-Id == '3 bar'
Called-Station-Id == '4 foo\n'
Called-Station-Id == '4 bar'