aboutsummaryrefslogtreecommitdiff
path: root/test/test_sparql.py
diff options
context:
space:
mode:
authorPjotr Prins2020-11-07 10:21:48 +0000
committerPjotr Prins2020-11-07 10:21:48 +0000
commit8a02280c4bd05a7f8df598a75a1ea2d3caaddd7d (patch)
treef145ff22304589c4c7161da3cad01d90aeeba749 /test/test_sparql.py
parent9709eca5c76aabe823ba34d976c5d11a9d150b76 (diff)
downloadbh20-seq-resource-8a02280c4bd05a7f8df598a75a1ea2d3caaddd7d.tar.gz
bh20-seq-resource-8a02280c4bd05a7f8df598a75a1ea2d3caaddd7d.tar.lz
bh20-seq-resource-8a02280c4bd05a7f8df598a75a1ea2d3caaddd7d.zip
Tests: add runner and frame for SPARQL
Diffstat (limited to 'test/test_sparql.py')
-rw-r--r--test/test_sparql.py11
1 files changed, 11 insertions, 0 deletions
diff --git a/test/test_sparql.py b/test/test_sparql.py
new file mode 100644
index 0000000..00bb3ed
--- /dev/null
+++ b/test/test_sparql.py
@@ -0,0 +1,11 @@
+# Run with python3 test/test_sparql.py
+
+import unittest
+
+class TestSPARQL(unittest.TestCase):
+
+ def test_sparql(self):
+ pass
+
+if __name__ == '__main__':
+ unittest.main()