Add tests for SysrepoAccess

Change-Id: I5b112a706b1b58401d520057c6ab2b2c6d33fedb
diff --git a/example-schema.yang b/example-schema.yang
new file mode 100644
index 0000000..4074172
--- /dev/null
+++ b/example-schema.yang
@@ -0,0 +1,31 @@
+module example-schema {
+    prefix aha;
+    namespace "http://example.com";
+
+    leaf leafInt {
+        type int32;
+    }
+
+    leaf leafString {
+        type string;
+    }
+
+    leaf leafEnum {
+        type enumeration {
+            enum lol;
+            enum data;
+            enum coze;
+        }
+    }
+
+    leaf leafDecimal {
+        type decimal64 {
+            fraction-digits 9;
+        }
+    }
+
+    container pContainer {
+        presence true;
+    }
+
+}