Skip to content

Commit 52edcd6

Browse files
committed
Wellformedness, stratification, eval tests
1 parent 4493629 commit 52edcd6

32 files changed

+301
-34
lines changed
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
PREFIX : <http://example/>
2+
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
3+
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
4+
5+
:A rdf:type :S .
6+
7+
:S rdfs:subClassOf :T1 .
8+
9+
:T1 rdfs:subClassOf :T2 .
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
PREFIX : <http://example/>
2+
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
3+
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
4+
5+
:s :p :o .
6+
7+
:p rdfs:subPropertyOf :p1 .
8+
:p1 rdfs:subPropertyOf :p2 .

shacl12-test-suite/tests/rules/eval/eval-results-basic-01.ttl renamed to shacl12-test-suite/tests/rules/eval/eval-basic-01-results.ttl

File renamed without changes.

shacl12-test-suite/tests/rules/eval/eval-results-basic-02.ttl renamed to shacl12-test-suite/tests/rules/eval/eval-basic-02-results.ttl

File renamed without changes.
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
PREFIX : <http://example/>
2+
3+
:a :b :c .
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
PREFIX : <http://example/>
2+
3+
DATA { :a :b :c }
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
PREFIX : <http://example/>
2+
3+
:a :b :c1 .
4+
:a :b :c2 .
5+
:a :b1 :c1 .
6+
:a :b2 :c2 .
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
PREFIX : <http://example/>
2+
3+
DATA { :a :b :c1 , :c2 }
4+
5+
RULE {} WHERE {}
6+
7+
DATA { :a :b1 :c1 ;
8+
:b2 :c2
9+
}
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
PREFIX : <http://example/>
2+
3+
:x :p ':q absent' .
4+
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
PREFIX : <http://example/>
2+
3+
RULE { :x :p ':q absent' } WHERE { NOT { ?s :q ?o } }

0 commit comments

Comments
 (0)