summaryrefslogtreecommitdiffstats
path: root/v3po/data-impl/src/test/resources/test-diff.yang
diff options
context:
space:
mode:
Diffstat (limited to 'v3po/data-impl/src/test/resources/test-diff.yang')
-rw-r--r--v3po/data-impl/src/test/resources/test-diff.yang54
1 files changed, 0 insertions, 54 deletions
diff --git a/v3po/data-impl/src/test/resources/test-diff.yang b/v3po/data-impl/src/test/resources/test-diff.yang
deleted file mode 100644
index 5cccc8718..000000000
--- a/v3po/data-impl/src/test/resources/test-diff.yang
+++ /dev/null
@@ -1,54 +0,0 @@
-module test-diff {
- yang-version 1;
- namespace "urn:opendaylight:params:xml:ns:yang:test:diff";
- prefix "td";
-
- revision "2015-01-05" {
- description "Initial revision";
- }
-
- container top-container {
- leaf string {
- type string;
- }
-
- list nested-list {
- key "name";
-
- leaf name {
- type string;
- }
-
- leaf text {
- type string;
- }
-
- list deep-list {
- key "name";
-
- leaf name {
- type string;
- }
-
- }
- }
- }
-
- container with-choice {
-
- choice choice {
- case case1 {
- leaf in-case1 {
- type string;
- }
- }
-
- case case2 {
- leaf in-case2 {
- type string;
- }
- }
- }
- }
-
-}