Improve RpcRoutingStrategyTest
[mdsal.git] / dom / mdsal-dom-spi / src / test / resources / rpc-routing-strategy.yang
1 module foo {
2   namespace foo;
3   prefix foo;
4
5   import yang-ext {
6     prefix ext;
7   }
8
9   identity identity;
10
11   rpc routed {
12     input {
13       leaf ctx {
14         type string;
15         ext:context-reference identity;
16       }
17     }
18   }
19
20   rpc unrouted;
21 }
22