diff options
Diffstat (limited to 'tests/modules/yang/sm-modp.yang')
-rw-r--r-- | tests/modules/yang/sm-modp.yang | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/tests/modules/yang/sm-modp.yang b/tests/modules/yang/sm-modp.yang new file mode 100644 index 0000000..33f45b4 --- /dev/null +++ b/tests/modules/yang/sm-modp.yang @@ -0,0 +1,24 @@ +module sm-modp { + yang-version 1.1; + namespace "urn:sm-modp"; + prefix "sm-modp"; + + import ietf-yang-schema-mount { + prefix yangmnt; + } + + revision 2017-01-26; + + container ncmp { + yangmnt:mount-point "root"; + } + + container not-compiled { + leaf first { + type string; + } + leaf second { + type string; + } + } +} |