blob: 1ae7c0d7eb6d88c1caa4cd5cb247707cc6197b59 [file] [log] [blame]
Neels Hofmeyrfaa49e22019-01-31 09:06:53 +01001vty_transcript_test> list
2...
3 multi0 (one|two|three)
4 multi1 ([one]|[two]|[three])
5
6vty_transcript_test> multi0 ?
7 one 1
8 two 2
9 three 3
10
11vty_transcript_test> multi0 one
12ok argc=1 one
13
14vty_transcript_test> multi0 two
15ok argc=1 two
16
17vty_transcript_test> multi0 o
18ok argc=1 o
19
20vty_transcript_test> multi0 t
21ok argc=1 t
22
23vty_transcript_test> multi0 th
24ok argc=1 th
25
26vty_transcript_test> multi0
27% Command incomplete.
28
29vty_transcript_test> multi1 ?
30 [one] 1
31 [two] 2
32 [three] 3
33
34vty_transcript_test> multi1 one
35ok argc=1 one
36
37vty_transcript_test> multi1 two
38ok argc=1 two
39
40vty_transcript_test> multi1 o
41ok argc=1 o
42
43vty_transcript_test> multi1 t
44ok argc=1 t
45
46vty_transcript_test> multi1 th
47ok argc=1 th
48
49vty_transcript_test> multi1
50% Command incomplete.
51
52vty_transcript_test> multi1 [one]
53% Unknown command.