Adjust test suite parser update to conform with API changes
[yangtools.git] / yang / yang-parser-rfc7950 / src / test / resources / rpc-stmt-test / foo.yang
1 module foo {
2     namespace foo-namespace;
3     prefix foo-prefix;
4
5     revision 2016-09-23;
6
7     rpc foo-rpc-1 {
8         input {
9             leaf foo-leaf-1 {
10                 type string;
11             }
12         }
13
14         output {
15             leaf foo-leaf-2 {
16                 type string;
17             }
18         }
19     }
20
21     rpc foo-rpc-2 {
22         input {
23             leaf foo-leaf-3 {
24                 type string;
25             }
26         }
27
28         output {
29             leaf foo-leaf-4 {
30                 type string;
31             }
32         }
33     }
34 }