pytest example

An example of using pytest, driven with config options defined in a yaml

Signed-off-by: Adam Israel <adam.israel@canonical.com>
diff --git a/test/example/test_strings.py b/test/example/test_strings.py
new file mode 100644
index 0000000..c156dc9
--- /dev/null
+++ b/test/example/test_strings.py
@@ -0,0 +1,9 @@
+
+
+def test_host(so_host):
+    assert so_host == '127.0.0.1'
+
+
+def test_port(so_host, so_port):
+    assert so_host == '127.0.0.1'
+    assert so_port == 80