Adjust test suite parser update to conform with API changes
[yangtools.git] / yang / yang-parser-impl / src / test / resources / bugs / bug7879 / my-model-alarms.yang
1 submodule my-model-alarms {
2
3   belongs-to my-model {
4     prefix my-model-pfx;
5   }
6
7   import my-notification-types {
8     prefix my-notif-types-pfx;
9   }
10
11   import my-event-types {
12     prefix my-event-types-pfx;
13   }
14
15   notification my-alarm {
16
17     uses my-notif-types-pfx:my-notification {
18       augment my-content {
19
20         uses my-event-types-pfx:my-event-with-value {
21           refine my-event-value {
22               description "new description";
23           }
24         }
25
26         uses my-event-types-pfx:my-event-with-container {
27           augment my-event-container;
28         }
29
30       }
31     }
32   }
33 }