Adjust test suite parser update to conform with API changes
[yangtools.git] / yang / yang-parser-rfc7950 / src / test / resources / must-when-stmt-test / when-test.yang
1 module when-test {
2     namespace "urn:opendaylight.org/when-test";
3     prefix "wt";
4
5     container test-container {
6         when "conditional-leaf = 'autumn-leaf'";
7         leaf conditional-leaf {
8             type string;
9         }
10
11     }
12
13 }