Fork of https://github.com/oxigraph/oxigraph.git for the purpose of NextGraph project
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
48 lines
1.7 KiB
48 lines
1.7 KiB
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
|
|
@prefix : <https://github.com/oxigraph/oxigraph/tests/sparql/manifest#> .
|
|
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
|
|
@prefix mf: <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#> .
|
|
@prefix qt: <http://www.w3.org/2001/sw/DataAccess/tests/test-query#> .
|
|
@prefix ox: <https://github.com/oxigraph/oxigraph/tests#> .
|
|
|
|
<> rdf:type mf:Manifest ;
|
|
rdfs:label "Oxigraph SPARQL reasoning tests" ;
|
|
mf:entries
|
|
(
|
|
:simple_type_inheritance
|
|
:simple_fact
|
|
:with_graph_name
|
|
:simple_recursion
|
|
) .
|
|
|
|
:simple_type_inheritance rdf:type ox:SparqlRuleEvaluationTest ;
|
|
mf:name "Simple type inheritance" ;
|
|
mf:action
|
|
[ qt:query <simple_type_inheritance.rq> ;
|
|
qt:data <simple_type_inheritance.ttl> ] ;
|
|
ox:rulesData <simple_type_inheritance.rr> ;
|
|
mf:result <simple_type_inheritance.srj> .
|
|
|
|
:simple_fact rdf:type ox:SparqlRuleEvaluationTest ;
|
|
mf:name "Simple fact" ;
|
|
mf:action
|
|
[ qt:query <simple_fact.rq> ;
|
|
qt:data <simple_fact.ttl> ] ;
|
|
ox:rulesData <simple_fact.rr> ;
|
|
mf:result <simple_fact.srj> .
|
|
|
|
:with_graph_name rdf:type ox:SparqlRuleEvaluationTest ;
|
|
mf:name "Simple type inheritance" ;
|
|
mf:action
|
|
[ qt:query <with_graph_name.rq> ;
|
|
qt:graphData <with_graph_name.ttl> ] ;
|
|
ox:rulesData <with_graph_name.rr> ;
|
|
mf:result <with_graph_name.srj> .
|
|
|
|
:simple_recursion rdf:type ox:SparqlRuleEvaluationTest ;
|
|
mf:name "Simple recursion" ;
|
|
mf:action
|
|
[ qt:query <simple_recursion.rq> ;
|
|
qt:data <simple_recursion.ttl> ] ;
|
|
ox:rulesData <simple_recursion.rr> ;
|
|
mf:result <simple_recursion.srj> . |