parent
9dc8d348c4
commit
579641909c
@ -0,0 +1,15 @@ |
||||
{ |
||||
"head": { |
||||
"vars": ["s", "p", "s"] |
||||
}, |
||||
"results": { |
||||
"bindings": [ |
||||
{ |
||||
"s": { |
||||
"type": "uri", |
||||
"value": "http://example.org/s1" |
||||
} |
||||
} |
||||
] |
||||
} |
||||
} |
@ -0,0 +1,15 @@ |
||||
<?xml version="1.0"?> |
||||
<sparql xmlns="http://www.w3.org/2005/sparql-results#"> |
||||
<head> |
||||
<variable name="s"/> |
||||
<variable name="p"/> |
||||
<variable name="s"/> |
||||
</head> |
||||
<results> |
||||
<result> |
||||
<binding name="s"> |
||||
<uri>http://example.com/a</uri> |
||||
</binding> |
||||
</result> |
||||
</results> |
||||
</sparql> |
Can't render this file because it contains an unexpected character in line 2 and column 3.
|
@ -0,0 +1,26 @@ |
||||
@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> . |
Loading…
Reference in new issue