Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions tests/test_parsers.py
Original file line number Diff line number Diff line change
Expand Up @@ -543,6 +543,10 @@ def test_split_df(self) -> None:
("p4:1", "skos:exactMatch", "p1:1", "semapv:ManualMappingCuration"),
("p5:1", "skos:broadMatch", "p6:1", "semapv:ManualMappingCuration"),
("p1:7", "skos:broadMatch", "p2:7", "semapv:ManualMappingCuration"),
# the following rows have CURIEs whose prefixes aren't in the converter
("x:1", "skos:broadMatch", "p2:7", "semapv:ManualMappingCuration"),
("p1:1", "x:2", "p2:7", "semapv:ManualMappingCuration"),
("p1:1", "skos:broadMatch", "x:3", "semapv:ManualMappingCuration"),
]
columns = ["subject_id", "predicate_id", "object_id", "mapping_justification"]
df = pd.DataFrame(rows, columns=columns)
Expand Down
Loading