File tree Expand file tree Collapse file tree 2 files changed +5
-6
lines changed Expand file tree Collapse file tree 2 files changed +5
-6
lines changed Original file line number Diff line number Diff line change 7
7
Here is an example of using RdfFusion:
8
8
``` rust
9
9
use std :: error :: Error ;
10
- use graphfusion :: store :: Store ;
11
- use graphfusion :: model :: * ;
12
- use graphfusion :: sparql :: QueryResults ;
10
+ use rdf_fusion :: store :: Store ;
11
+ use rdf_fusion :: model :: * ;
12
+ use rdf_fusion :: sparql :: QueryResults ;
13
13
use futures :: StreamExt ;
14
14
15
15
#[tokio:: main]
Original file line number Diff line number Diff line change @@ -16,14 +16,13 @@ async fn sparql10_w3c_query_syntax_testsuite() -> Result<()> {
16
16
#[ tokio:: test]
17
17
async fn sparql10_w3c_query_evaluation_testsuite ( ) -> Result < ( ) > {
18
18
check_testsuite ( "https://w3c.github.io/rdf-tests/sparql/sparql10/manifest-evaluation.ttl" , & [
19
+ // Testing equality of illegal literals ("xyz"^^<http://www.w3.org/2001/XMLSchema#integer>)
20
+ "http://www.w3.org/2001/sw/DataAccess/tests/data-r2/open-world/manifest#open-eq-07" ,
19
21
//Simple literal vs xsd:string. We apply RDF 1.1
20
- "http://www.w3.org/2001/sw/DataAccess/tests/data-r2/distinct/manifest#distinct-2" ,
21
22
"http://www.w3.org/2001/sw/DataAccess/tests/data-r2/open-world/manifest#open-eq-08" ,
22
23
"http://www.w3.org/2001/sw/DataAccess/tests/data-r2/open-world/manifest#open-eq-10" ,
23
24
"http://www.w3.org/2001/sw/DataAccess/tests/data-r2/open-world/manifest#open-eq-11" ,
24
25
"http://www.w3.org/2001/sw/DataAccess/tests/data-r2/open-world/manifest#open-eq-12" ,
25
- //DATATYPE("foo"@en) returns rdf:langString in RDF 1.1
26
- "http://www.w3.org/2001/sw/DataAccess/tests/data-r2/expr-builtin/manifest#dawg-datatype-2" ,
27
26
// We use XSD 1.1 equality on dates
28
27
"http://www.w3.org/2001/sw/DataAccess/tests/data-r2/open-world/manifest#date-2" ,
29
28
// We choose to simplify first the nested group patterns in OPTIONAL
You can’t perform that action at this time.
0 commit comments