Move yang-data-jaxen to attic top-level directory
[yangtools.git] / attic / yang-data-jaxen / src / test / resources / yang-xpath-functions-test / bit-is-set-function / foo.yang
diff --git a/attic/yang-data-jaxen/src/test/resources/yang-xpath-functions-test/bit-is-set-function/foo.yang b/attic/yang-data-jaxen/src/test/resources/yang-xpath-functions-test/bit-is-set-function/foo.yang
new file mode 100644 (file)
index 0000000..3d18861
--- /dev/null
@@ -0,0 +1,25 @@
+module foo {
+    namespace foo-ns;
+    prefix foo-prefix;
+    yang-version 1.1;
+
+    revision 2017-04-03;
+
+    container my-container {
+        list my-list {
+            key flags;
+
+            leaf flags {
+                type bits {
+                    bit UP;
+                    bit PROMISCUOUS;
+                    bit DISABLED;
+                }
+            }
+
+            leaf ordinary-leaf {
+                type string;
+            }
+        }
+    }
+}
\ No newline at end of file