Adjust test suite parser update to conform with API changes
[yangtools.git] / yang / yang-parser-impl / src / test / resources / choice-case-type-test-models / augment-monitoring@2013-07-01.yang
1 module augment-monitoring {
2     yang-version 1;
3     namespace "urn:ietf:params:xml:ns:yang:augment-monitoring";
4     prefix "amon";
5
6     import choice-monitoring { prefix nm; }
7
8     revision "2013-07-01" {
9             reference "NO REF";
10     }
11
12     augment "/nm:netconf-state/nm:datastores/nm:datastore/nm:locks/nm:lock-type" {
13
14         case anonymous-lock {
15             leaf lock-time {
16                 type uint32;
17             }
18         }
19
20         leaf leaf-aug-case {
21             type string;
22         }
23     }
24
25 }