Bug 5403 - Support yang-library schema resolution
[netconf.git] / netconf / sal-netconf-connector / src / test / resources / yang-library-fail.xml
1 <modules xmlns="urn:ietf:params:xml:ns:yang:ietf-yang-library">
2     <module>
3         <name>module-with-bad-url</name>
4         <revision></revision>
5         <namespace>b</namespace>
6         <schema>
7             badurl
8         </schema>
9     </module>
10     <module>
11         <name>module-bad-revision</name>
12         <revision>bad-revision</revision>
13         <namespace>bbb</namespace>
14     </module>
15     <module>
16         <name>good-ol-module</name>
17         <revision></revision>
18         <schema>http://www.example.com</schema>
19         <namespace>bbbds</namespace>
20     </module>
21 </modules>