23 lines
613 B
YAML
23 lines
613 B
YAML
test:
|
|
description: "Two subinterfaces can't have the same encapsulation"
|
|
errors:
|
|
expected:
|
|
- "sub-interface .*.100 does not have unique encapsulation"
|
|
- "sub-interface .*.102 does not have unique encapsulation"
|
|
count: 2
|
|
---
|
|
interfaces:
|
|
GigabitEthernet1/0/0:
|
|
sub-interfaces:
|
|
100:
|
|
description: "VLAN 100"
|
|
101:
|
|
description: "Another VLAN 100, but without exact-match"
|
|
encapsulation:
|
|
dot1q: 100
|
|
102:
|
|
description: "Another VLAN 100, but without exact-match"
|
|
encapsulation:
|
|
dot1q: 100
|
|
exact-match: True
|