X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;f=yang%2Fyang-parser-impl%2Fsrc%2Ftest%2Fresources%2Flist-keys-test%2Fcorrect-list-keys-test.yang;fp=yang%2Fyang-parser-impl%2Fsrc%2Ftest%2Fresources%2Flist-keys-test%2Fcorrect-list-keys-test.yang;h=0000000000000000000000000000000000000000;hb=1cc6359e5bae1459582e9262a24ca56f23bcc70f;hp=707a04ae3838441c24a562426aa2710c81daea59;hpb=3b445156dfea75955b98f40208ffea51fe252209;p=yangtools.git diff --git a/yang/yang-parser-impl/src/test/resources/list-keys-test/correct-list-keys-test.yang b/yang/yang-parser-impl/src/test/resources/list-keys-test/correct-list-keys-test.yang deleted file mode 100644 index 707a04ae38..0000000000 --- a/yang/yang-parser-impl/src/test/resources/list-keys-test/correct-list-keys-test.yang +++ /dev/null @@ -1,79 +0,0 @@ -module correct-list-keys-test { - - namespace "correct-list-keys-test"; - prefix "test"; - - list test1 { - key "test1_key"; - leaf test1_key { - type string; - } - } - - list test2 { - key "test2_key1 test2_key2 test2_key3"; - leaf test2_key1 { - type string; - } - leaf test2_key2 { - type string; - } - leaf test2_key3 { - type string; - } - } - - grouping grp_leaf { - leaf grp_leaf { - type string; - } - } - - list test3 { - key "grp_leaf"; - uses grp_leaf; - } - - list test4 { - key "test4_key1 grp_leaf test4_key2"; - uses grp_leaf; - leaf test4_key1 { - type string; - } - leaf test4_key2 { - type string; - } - } - - list test5 { - key "aug_leaf"; - } - - augment /test5 { - leaf aug_leaf { - type string; - } - } - - list test6 { - key "aug_leaf grp_leaf test6_key1"; - uses grp_leaf; - leaf test6_key1 { - type string; - } - } - - augment /test6 { - leaf aug_leaf { - type string; - } - } - - list test7 { - key "grp_leaf"; - } - - augment /test7 { - uses grp_leaf; - } -}