Bug 3899: Milestone: Increase test coverage for Yangtools
[yangtools.git] / yang / yang-data-impl / src / test / resources / string-pattern-checking-codec-test.yang
1 module string-pattern-checking-codec-test {
2     namespace "string-pattern-checking-codec-test";
3     prefix "spcct";
4
5     container test-container {
6         leaf string-leaf-with-valid-pattern {
7             type string {
8                 pattern "[A-Z]+";
9             }
10         }
11     }
12 }