summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
-rw-r--r--tests/io/resource_stream.py17
-rw-r--r--tests/io/resource_stream.py.exp1
2 files changed, 18 insertions, 0 deletions
diff --git a/tests/io/resource_stream.py b/tests/io/resource_stream.py
new file mode 100644
index 0000000000..940ffaf2f3
--- /dev/null
+++ b/tests/io/resource_stream.py
@@ -0,0 +1,17 @@
+import uio
+import sys
+
+try:
+ uio.resource_stream
+except AttributeError:
+ print('SKIP')
+ sys.exit()
+
+try:
+ buf = uio.resource_stream("data", "file2")
+except NotImplementedError:
+ pass
+
+# resource_stream(None, ...) look ups from current dir, hence sys.path[0] hack
+buf = uio.resource_stream(None, sys.path[0] + "/data/file2")
+print(buf.read())
diff --git a/tests/io/resource_stream.py.exp b/tests/io/resource_stream.py.exp
new file mode 100644
index 0000000000..81c545efeb
--- /dev/null
+++ b/tests/io/resource_stream.py.exp
@@ -0,0 +1 @@
+1234