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.
27 lines
1.1 KiB
27 lines
1.1 KiB
3 years ago
|
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
|
||
|
@prefix : <https://github.com/oxigraph/oxigraph/tests/sparql-results/manifest#> .
|
||
|
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
|
||
|
@prefix mf: <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#> .
|
||
|
@prefix ox: <https://github.com/oxigraph/oxigraph/tests#> .
|
||
|
|
||
|
<> rdf:type mf:Manifest ;
|
||
|
rdfs:label "Oxigraph SPARQL resutls tests" ;
|
||
|
mf:entries
|
||
|
(
|
||
|
:results_json_duplicated_variables
|
||
|
:results_xml_duplicated_variables
|
||
|
:results_tsv_duplicated_variables
|
||
|
) .
|
||
|
|
||
|
:results_json_duplicated_variables rdf:type ox:NegativeJsonResultsSyntaxTest ;
|
||
|
mf:name "Duplicated variables are not allowed" ;
|
||
|
mf:action <duplicated_variables.srj> .
|
||
|
|
||
|
:results_xml_duplicated_variables rdf:type ox:NegativeXmlResultsSyntaxTest ;
|
||
|
mf:name "Duplicated variables are not allowed" ;
|
||
|
mf:action <duplicated_variables.srx> .
|
||
|
|
||
|
:results_xml_duplicated_variables rdf:type ox:NegativeTsvResultsSyntaxTest ;
|
||
|
mf:name "Duplicated variables are not allowed" ;
|
||
|
mf:action <duplicated_variables.tsv> .
|