aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rw-r--r--test/apps/test_init.py5
-rw-r--r--test/apps/test_main.py5
-rw-r--r--test/apps/test_migrate.py5
-rw-r--r--test/front/test_bsfs.py5
-rw-r--r--test/front/test_builder.py5
-rw-r--r--test/graph/ac/test_base.py5
-rw-r--r--test/graph/ac/test_null.py5
-rw-r--r--test/graph/test_graph.py5
-rw-r--r--test/graph/test_nodes.py5
-rw-r--r--test/graph/test_resolve.py5
-rw-r--r--test/graph/test_result.py5
-rw-r--r--test/graph/test_walk.py5
-rw-r--r--test/namespace/test_namespace.py5
-rw-r--r--test/query/ast_test/test_fetch.py5
-rw-r--r--test/query/ast_test/test_filter_.py5
-rw-r--r--test/query/test_matcher.py5
-rw-r--r--test/query/test_validator.py5
-rw-r--r--test/schema/test_schema.py5
-rw-r--r--test/schema/test_serialize.py5
-rw-r--r--test/schema/test_types.py5
-rw-r--r--test/triple_store/sparql/test_distance.py5
-rw-r--r--test/triple_store/sparql/test_parse_fetch.py5
-rw-r--r--test/triple_store/sparql/test_parse_filter.py5
-rw-r--r--test/triple_store/sparql/test_sparql.py5
-rw-r--r--test/triple_store/sparql/test_utils.py5
-rw-r--r--test/triple_store/test_base.py5
-rw-r--r--test/utils/test_commons.py5
-rw-r--r--test/utils/test_uri.py5
-rw-r--r--test/utils/test_uuid.py5
29 files changed, 0 insertions, 145 deletions
diff --git a/test/apps/test_init.py b/test/apps/test_init.py
index bae6a68..59e10eb 100644
--- a/test/apps/test_init.py
+++ b/test/apps/test_init.py
@@ -1,9 +1,4 @@
-"""
-Part of the bsfs test suite.
-A copy of the license is provided with the project.
-Author: Matthias Baumgartner, 2022
-"""
# imports
import contextlib
import io
diff --git a/test/apps/test_main.py b/test/apps/test_main.py
index ae19b5e..d61372f 100644
--- a/test/apps/test_main.py
+++ b/test/apps/test_main.py
@@ -1,9 +1,4 @@
-"""
-Part of the bsfs test suite.
-A copy of the license is provided with the project.
-Author: Matthias Baumgartner, 2022
-"""
# imports
import contextlib
import io
diff --git a/test/apps/test_migrate.py b/test/apps/test_migrate.py
index 230c032..618cb37 100644
--- a/test/apps/test_migrate.py
+++ b/test/apps/test_migrate.py
@@ -1,9 +1,4 @@
-"""
-Part of the bsfs test suite.
-A copy of the license is provided with the project.
-Author: Matthias Baumgartner, 2022
-"""
# imports
import contextlib
import io
diff --git a/test/front/test_bsfs.py b/test/front/test_bsfs.py
index 4eb36c3..8905bf8 100644
--- a/test/front/test_bsfs.py
+++ b/test/front/test_bsfs.py
@@ -1,9 +1,4 @@
-"""
-Part of the bsfs test suite.
-A copy of the license is provided with the project.
-Author: Matthias Baumgartner, 2022
-"""
# imports
import unittest
diff --git a/test/front/test_builder.py b/test/front/test_builder.py
index 0328a0a..875fa8a 100644
--- a/test/front/test_builder.py
+++ b/test/front/test_builder.py
@@ -1,9 +1,4 @@
-"""
-Part of the bsfs test suite.
-A copy of the license is provided with the project.
-Author: Matthias Baumgartner, 2022
-"""
# imports
import unittest
diff --git a/test/graph/ac/test_base.py b/test/graph/ac/test_base.py
index ad24e3d..addecd4 100644
--- a/test/graph/ac/test_base.py
+++ b/test/graph/ac/test_base.py
@@ -1,9 +1,4 @@
-"""
-Part of the bsfs test suite.
-A copy of the license is provided with the project.
-Author: Matthias Baumgartner, 2022
-"""
# imports
import unittest
diff --git a/test/graph/ac/test_null.py b/test/graph/ac/test_null.py
index 6053f81..b695e7e 100644
--- a/test/graph/ac/test_null.py
+++ b/test/graph/ac/test_null.py
@@ -1,9 +1,4 @@
-"""
-Part of the bsfs test suite.
-A copy of the license is provided with the project.
-Author: Matthias Baumgartner, 2022
-"""
# imports
import unittest
diff --git a/test/graph/test_graph.py b/test/graph/test_graph.py
index 93f8db7..e6d5ae4 100644
--- a/test/graph/test_graph.py
+++ b/test/graph/test_graph.py
@@ -1,9 +1,4 @@
-"""
-Part of the bsfs test suite.
-A copy of the license is provided with the project.
-Author: Matthias Baumgartner, 2022
-"""
# imports
from functools import reduce
import operator
diff --git a/test/graph/test_nodes.py b/test/graph/test_nodes.py
index bf73e6e..083b2d8 100644
--- a/test/graph/test_nodes.py
+++ b/test/graph/test_nodes.py
@@ -1,9 +1,4 @@
-"""
-Part of the bsfs test suite.
-A copy of the license is provided with the project.
-Author: Matthias Baumgartner, 2022
-"""
# standard imports
from functools import partial
import operator
diff --git a/test/graph/test_resolve.py b/test/graph/test_resolve.py
index b4d76c7..0223c49 100644
--- a/test/graph/test_resolve.py
+++ b/test/graph/test_resolve.py
@@ -1,9 +1,4 @@
-"""
-Part of the bsfs test suite.
-A copy of the license is provided with the project.
-Author: Matthias Baumgartner, 2022
-"""
# imports
import unittest
diff --git a/test/graph/test_result.py b/test/graph/test_result.py
index 749b8ad..099234a 100644
--- a/test/graph/test_result.py
+++ b/test/graph/test_result.py
@@ -1,9 +1,4 @@
-"""
-Part of the bsfs test suite.
-A copy of the license is provided with the project.
-Author: Matthias Baumgartner, 2022
-"""
# imports
import unittest
diff --git a/test/graph/test_walk.py b/test/graph/test_walk.py
index e5c8981..346896b 100644
--- a/test/graph/test_walk.py
+++ b/test/graph/test_walk.py
@@ -1,9 +1,4 @@
-"""
-Part of the bsfs test suite.
-A copy of the license is provided with the project.
-Author: Matthias Baumgartner, 2022
-"""
# imports
import unittest
diff --git a/test/namespace/test_namespace.py b/test/namespace/test_namespace.py
index 2536203..ec2f393 100644
--- a/test/namespace/test_namespace.py
+++ b/test/namespace/test_namespace.py
@@ -1,9 +1,4 @@
-"""
-Part of the tagit test suite.
-A copy of the license is provided with the project.
-Author: Matthias Baumgartner, 2022
-"""
# imports
import operator
import unittest
diff --git a/test/query/ast_test/test_fetch.py b/test/query/ast_test/test_fetch.py
index 0c48a1f..ccb680e 100644
--- a/test/query/ast_test/test_fetch.py
+++ b/test/query/ast_test/test_fetch.py
@@ -1,9 +1,4 @@
-"""
-Part of the tagit test suite.
-A copy of the license is provided with the project.
-Author: Matthias Baumgartner, 2022
-"""
# imports
import unittest
diff --git a/test/query/ast_test/test_filter_.py b/test/query/ast_test/test_filter_.py
index 39b98f8..cdc530c 100644
--- a/test/query/ast_test/test_filter_.py
+++ b/test/query/ast_test/test_filter_.py
@@ -1,9 +1,4 @@
-"""
-Part of the tagit test suite.
-A copy of the license is provided with the project.
-Author: Matthias Baumgartner, 2022
-"""
# imports
import unittest
diff --git a/test/query/test_matcher.py b/test/query/test_matcher.py
index e830cf8..6b975b2 100644
--- a/test/query/test_matcher.py
+++ b/test/query/test_matcher.py
@@ -1,9 +1,4 @@
-"""
-Part of the tagit test suite.
-A copy of the license is provided with the project.
-Author: Matthias Baumgartner, 2022
-"""
# imports
import operator
import unittest
diff --git a/test/query/test_validator.py b/test/query/test_validator.py
index fec3d23..ca93118 100644
--- a/test/query/test_validator.py
+++ b/test/query/test_validator.py
@@ -1,9 +1,4 @@
-"""
-Part of the tagit test suite.
-A copy of the license is provided with the project.
-Author: Matthias Baumgartner, 2022
-"""
# imports
import unittest
diff --git a/test/schema/test_schema.py b/test/schema/test_schema.py
index 414e542..f9ddb68 100644
--- a/test/schema/test_schema.py
+++ b/test/schema/test_schema.py
@@ -1,9 +1,4 @@
-"""
-Part of the tagit test suite.
-A copy of the license is provided with the project.
-Author: Matthias Baumgartner, 2022
-"""
# imports
import operator
import unittest
diff --git a/test/schema/test_serialize.py b/test/schema/test_serialize.py
index fc6b20a..84512e9 100644
--- a/test/schema/test_serialize.py
+++ b/test/schema/test_serialize.py
@@ -1,9 +1,4 @@
-"""
-Part of the tagit test suite.
-A copy of the license is provided with the project.
-Author: Matthias Baumgartner, 2022
-"""
# imports
import re
import unittest
diff --git a/test/schema/test_types.py b/test/schema/test_types.py
index c5895d2..f87d857 100644
--- a/test/schema/test_types.py
+++ b/test/schema/test_types.py
@@ -1,9 +1,4 @@
-"""
-Part of the tagit test suite.
-A copy of the license is provided with the project.
-Author: Matthias Baumgartner, 2022
-"""
# imports
import operator
import unittest
diff --git a/test/triple_store/sparql/test_distance.py b/test/triple_store/sparql/test_distance.py
index 0659459..e95be5a 100644
--- a/test/triple_store/sparql/test_distance.py
+++ b/test/triple_store/sparql/test_distance.py
@@ -1,9 +1,4 @@
-"""
-Part of the bsfs test suite.
-A copy of the license is provided with the project.
-Author: Matthias Baumgartner, 2022
-"""
# imports
import numpy as np
import unittest
diff --git a/test/triple_store/sparql/test_parse_fetch.py b/test/triple_store/sparql/test_parse_fetch.py
index 0961789..9284608 100644
--- a/test/triple_store/sparql/test_parse_fetch.py
+++ b/test/triple_store/sparql/test_parse_fetch.py
@@ -1,9 +1,4 @@
-"""
-Part of the bsfs test suite.
-A copy of the license is provided with the project.
-Author: Matthias Baumgartner, 2022
-"""
# imports
import rdflib
import unittest
diff --git a/test/triple_store/sparql/test_parse_filter.py b/test/triple_store/sparql/test_parse_filter.py
index 6fa0cd3..8a9940e 100644
--- a/test/triple_store/sparql/test_parse_filter.py
+++ b/test/triple_store/sparql/test_parse_filter.py
@@ -1,9 +1,4 @@
-"""
-Part of the bsfs test suite.
-A copy of the license is provided with the project.
-Author: Matthias Baumgartner, 2022
-"""
# imports
import rdflib
import unittest
diff --git a/test/triple_store/sparql/test_sparql.py b/test/triple_store/sparql/test_sparql.py
index 30876f2..b1d99ac 100644
--- a/test/triple_store/sparql/test_sparql.py
+++ b/test/triple_store/sparql/test_sparql.py
@@ -1,9 +1,4 @@
-"""
-Part of the bsfs test suite.
-A copy of the license is provided with the project.
-Author: Matthias Baumgartner, 2022
-"""
# imports
import rdflib
import unittest
diff --git a/test/triple_store/sparql/test_utils.py b/test/triple_store/sparql/test_utils.py
index edcf6d7..8f894bb 100644
--- a/test/triple_store/sparql/test_utils.py
+++ b/test/triple_store/sparql/test_utils.py
@@ -1,9 +1,4 @@
-"""
-Part of the bsfs test suite.
-A copy of the license is provided with the project.
-Author: Matthias Baumgartner, 2022
-"""
# standard imports
import operator
import re
diff --git a/test/triple_store/test_base.py b/test/triple_store/test_base.py
index 56a2539..4c4a9b6 100644
--- a/test/triple_store/test_base.py
+++ b/test/triple_store/test_base.py
@@ -1,9 +1,4 @@
-"""
-Part of the bsfs test suite.
-A copy of the license is provided with the project.
-Author: Matthias Baumgartner, 2022
-"""
# imports
import unittest
diff --git a/test/utils/test_commons.py b/test/utils/test_commons.py
index 3ad6dea..29e3046 100644
--- a/test/utils/test_commons.py
+++ b/test/utils/test_commons.py
@@ -1,9 +1,4 @@
-"""
-Part of the tagit test suite.
-A copy of the license is provided with the project.
-Author: Matthias Baumgartner, 2022
-"""
# imports
import unittest
diff --git a/test/utils/test_uri.py b/test/utils/test_uri.py
index 770e65a..6ee2ef7 100644
--- a/test/utils/test_uri.py
+++ b/test/utils/test_uri.py
@@ -1,9 +1,4 @@
-"""
-Part of the tagit test suite.
-A copy of the license is provided with the project.
-Author: Matthias Baumgartner, 2022
-"""
# imports
import operator
import unittest
diff --git a/test/utils/test_uuid.py b/test/utils/test_uuid.py
index 804b063..8f519d9 100644
--- a/test/utils/test_uuid.py
+++ b/test/utils/test_uuid.py
@@ -1,9 +1,4 @@
-"""
-Part of the tagit test suite.
-A copy of the license is provided with the project.
-Author: Matthias Baumgartner, 2022
-"""
# imports
import os
import re