Do not pretty-print body class
[yangtools.git] / data / yang-data-impl / src / test / resources / pretty-print / test.yang
1 module test {
2     yang-version 1.1;
3     namespace "urn:opendaylight:controller:sal:dom:store:test";
4     prefix test;
5
6     revision 2014-03-13;
7
8     container root {
9         list list-a {
10             key "leaf-a";
11             leaf leaf-a {
12                 type string;
13             }
14             list list-b {
15                 key "leaf-b";
16                 leaf leaf-b {
17                     type string;
18                 }
19             }
20         }
21
22         choice choice {
23         }
24
25         leaf leaf {
26             type string;
27         }
28
29         leaf-list leaf-set {
30             type string;
31         }
32
33         leaf-list user-leaf-set {
34             ordered-by user;
35             type string;
36         }
37
38         list user-map {
39             ordered-by user;
40             key "user-map-entry";
41             leaf user-map-entry {
42                 type string;
43             }
44         }
45
46         list unkeyed-list {
47             leaf unkeyed-list-leaf {
48                 type string;
49             }
50         }
51
52         anydata any-data {}
53     }
54
55     augment "/test:root/test:choice" {
56         leaf augment {
57             type string;
58         }
59     }
60 }