Bug 1411 #4 BindingGeneratorImpl decomposition - Lists
[mdsal.git] / binding2 / mdsal-binding2-generator-impl / src / test / resources / generator / test-list.yang
1 module test-list {
2     yang-version 1.1;
3
4     namespace "urn:test:simple:test:list";
5     prefix test-list;
6     organization "test.list.org";
7     revision "2017-03-14";
8
9     list my-list {
10         key "key key1 key2";
11         leaf key{
12             type string;
13         }
14         leaf key1 {
15             type string;
16         }
17         leaf key2 {
18             type string;
19         }
20         leaf foo{
21             type string;
22         }
23     }
24
25 }