Adjust test suite parser update to conform with API changes
[yangtools.git] / yang / yang-parser-rfc7950 / src / test / resources / semantic-statement-parser / yin / incorrect-foo.yin
1 <?xml version="1.0" encoding="UTF-8"?>
2
3 <module name="foo" xmlns="urn:ietf:params:xml:ns:yang:yin:1">
4
5     <namespace uri="urn:opendaylight/foo"/>
6     <prefix value="foo"/>
7
8     <import module="baar">
9         <prefix value="bar"/>
10     </import>
11
12     <revision date="2010-04-15"></revision>
13
14     <list name="testing-list">
15         <key value="name"/>
16         <leaf name="name">
17             <type name="string"/>
18         </leaf>
19         <leaf name="number">
20             <type name="uint32"/>
21             <description>
22                 <text>Description of the number leaf.</text>
23             </description>
24         </leaf>
25     </list>
26 </module>