-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added test for finding literal triples (#183)
# Description: Added test for finding literal triples. That works, but it turned out that we need to support untyped literals. See issue #182 ## Type of change: - [ ] Bug fix and code cleanup. - [ ] New feature. - [ ] Documentation update. - [x] Testing.
- Loading branch information
1 parent
c18a9f1
commit 4314f40
Showing
3 changed files
with
63 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# testutils | ||
|
||
::: tripper.testutils |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
"""Motule primarly intended to be imported by tests. | ||
It defines some directories and some utility functions that can be used | ||
with or without conftest. | ||
""" | ||
|
||
from pathlib import Path | ||
|
||
rootdir = Path(__file__).resolve().parent.parent | ||
testdir = rootdir / "tests" | ||
ontodir = testdir / "ontologies" | ||
outdir = testdir / "output" |