Adjust test suite parser update to conform with API changes
[yangtools.git] / yang / yang-parser-impl / src / test / resources / rfc7950 / action-stmt / foo.yang
1 module foo {
2     namespace foo-namespace;
3     prefix foo-prefix;
4     yang-version 1.1;
5
6     revision 2016-12-13;
7
8     container root {
9     }
10
11     container top {
12         action top-action {
13         }
14     }
15
16     list top-list {
17         key key-leaf;
18
19         leaf key-leaf {
20             type string;
21         }
22
23         action top-list-action {
24         }
25     }
26
27     grouping grp {
28         action grp-action {
29         }
30     }
31
32     augment "/root" {
33         uses grp;
34         action aug-action {
35         }
36     }
37 }