summaryrefslogtreecommitdiffstats
path: root/infra/it/it-test/src/test/resources/models/test-validate.yang
diff options
context:
space:
mode:
Diffstat (limited to 'infra/it/it-test/src/test/resources/models/test-validate.yang')
-rw-r--r--infra/it/it-test/src/test/resources/models/test-validate.yang27
1 files changed, 0 insertions, 27 deletions
diff --git a/infra/it/it-test/src/test/resources/models/test-validate.yang b/infra/it/it-test/src/test/resources/models/test-validate.yang
deleted file mode 100644
index 144045661..000000000
--- a/infra/it/it-test/src/test/resources/models/test-validate.yang
+++ /dev/null
@@ -1,27 +0,0 @@
-module test-validate {
- yang-version 1;
- namespace "urn:honeycomb:params:xml:ns:yang:test:validate";
- prefix "td";
-
- revision "2018-06-08" {
- description "Initial revision";
- }
-
- container top-container {
- leaf name {
- type string;
- }
- list list-in-container {
- key "name";
-
- leaf name {
- type string;
- }
-
- leaf description {
- type string;
- mandatory true;
- }
- }
- }
-}