diff options
Diffstat (limited to 'test/extra/big/manifest.ttl')
-rw-r--r-- | test/extra/big/manifest.ttl | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/test/extra/big/manifest.ttl b/test/extra/big/manifest.ttl new file mode 100644 index 00000000..94f51670 --- /dev/null +++ b/test/extra/big/manifest.ttl @@ -0,0 +1,30 @@ +@prefix mf: <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#> . +@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> . +@prefix rdft: <http://www.w3.org/ns/rdftest#> . + +<> + a mf:Manifest ; + rdfs:comment "Serd big test suite" ; + mf:entries ( + <#test-10000-objects> + <#test-10000-predicates> + <#test-10000-subjects> + ) . + +<#test-10000-objects> + a rdft:TestTurtleEval ; + mf:action <test-10000-objects.ttl> ; + mf:name "test-10000-objects" ; + mf:result <test-10000-objects.nt> . + +<#test-10000-predicates> + a rdft:TestTurtleEval ; + mf:action <test-10000-predicates.ttl> ; + mf:name "test-10000-predicates" ; + mf:result <test-10000-predicates.nt> . + +<#test-10000-subjects> + a rdft:TestTurtleEval ; + mf:action <test-10000-subjects.ttl> ; + mf:name "test-10000-subjects" ; + mf:result <test-10000-subjects.nt> . |