Update test-suite for RDF tests, now re-named and updated to current spec.
--- a/test-suite/tests/0001.json Sat Aug 06 19:09:13 2011 -0400
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,4 +0,0 @@
-{
- "@": "http://greggkellogg.net/foaf#me",
- "http://xmlns.com/foaf/0.1/name": "Gregg Kellogg"
-}
\ No newline at end of file
--- a/test-suite/tests/0001.sparql Sat Aug 06 19:09:13 2011 -0400
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,5 +0,0 @@
-PREFIX foaf: <http://xmlns.com/foaf/0.1/>
-
-ASK WHERE {
- <http://greggkellogg.net/foaf#me> foaf:name "Gregg Kellogg" .
-}
--- a/test-suite/tests/0002.json Sat Aug 06 19:09:13 2011 -0400
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,4 +0,0 @@
-{
- "@": "http://greggkellogg.net/foaf#me",
- "foaf:name": "Gregg Kellogg"
-}
\ No newline at end of file
--- a/test-suite/tests/0002.sparql Sat Aug 06 19:09:13 2011 -0400
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,5 +0,0 @@
-PREFIX foaf: <http://xmlns.com/foaf/0.1/>
-
-ASK WHERE {
- <http://greggkellogg.net/foaf#me> foaf:name "Gregg Kellogg" .
-}
--- a/test-suite/tests/0003.json Sat Aug 06 19:09:13 2011 -0400
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,1 +0,0 @@
-{ "a": "foaf:Person" }
\ No newline at end of file
--- a/test-suite/tests/0003.sparql Sat Aug 06 19:09:13 2011 -0400
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,5 +0,0 @@
-PREFIX foaf: <http://xmlns.com/foaf/0.1/>
-
-ASK WHERE {
- ?s a foaf:Person .
-}
--- a/test-suite/tests/0004.json Sat Aug 06 19:09:13 2011 -0400
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,3 +0,0 @@
-{
- "rdfs:label": {"@literal": "A plain literal with a lang tag.", "@language": "en-us"}
-}
\ No newline at end of file
--- a/test-suite/tests/0004.sparql Sat Aug 06 19:09:13 2011 -0400
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,5 +0,0 @@
-PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
-
-ASK WHERE {
- _:s rdfs:label "A plain literal with a lang tag."@en-us .
-}
--- a/test-suite/tests/0005.json Sat Aug 06 19:09:13 2011 -0400
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,9 +0,0 @@
-[
- {
- "@": "http://greggkellogg.net/foaf#me",
- "foaf:knows": {"@iri": "http://www.ivan-herman.net/foaf#me"}
- },{
- "@": "http://www.ivan-herman.net/foaf#me",
- "foaf:name": {"@literal": "Herman Iván", "@language": "hu"}
- }
-]
\ No newline at end of file
--- a/test-suite/tests/0005.sparql Sat Aug 06 19:09:13 2011 -0400
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,6 +0,0 @@
-PREFIX foaf: <http://xmlns.com/foaf/0.1/>
-
-ASK WHERE {
- <http://greggkellogg.net/foaf#me> foaf:knows <http://www.ivan-herman.net/foaf#me> .
- <http://www.ivan-herman.net/foaf#me> foaf:name "Herman Iv\u00E1n"@hu .
-}
\ No newline at end of file
--- a/test-suite/tests/0006.json Sat Aug 06 19:09:13 2011 -0400
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,4 +0,0 @@
-{
- "@": "http://greggkellogg.net/foaf#me",
- "dcterms:created": {"@literal": "1957-02-27", "@datatype": "xsd:date"}
-}
--- a/test-suite/tests/0006.sparql Sat Aug 06 19:09:13 2011 -0400
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,6 +0,0 @@
-PREFIX dcterms: <http://purl.org/dc/terms/>
-PREFIX xsd: <http://www.w3.org/2001/XMLSchema#>
-
-ASK WHERE {
- <http://greggkellogg.net/foaf#me> dcterms:created "1957-02-27"^^xsd:date
-}
--- a/test-suite/tests/0007.json Sat Aug 06 19:09:13 2011 -0400
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,4 +0,0 @@
-{
- "@": "http://greggkellogg.net/foaf#me",
- "a": "foaf:Person"
-}
\ No newline at end of file
--- a/test-suite/tests/0007.sparql Sat Aug 06 19:09:13 2011 -0400
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,6 +0,0 @@
-PREFIX foaf: <http://xmlns.com/foaf/0.1/>
-PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
-
-ASK WHERE {
- <http://greggkellogg.net/foaf#me> rdf:type foaf:Person
-}
\ No newline at end of file
--- a/test-suite/tests/0008.json Sat Aug 06 19:09:13 2011 -0400
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,6 +0,0 @@
-{
- "@context": {
- "d": "http://example.com/default#"
- },
- "d:foo": "bar"
-}
--- a/test-suite/tests/0008.sparql Sat Aug 06 19:09:13 2011 -0400
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,3 +0,0 @@
-ASK WHERE {
- _:a <http://example.com/default#foo> "bar" .
-}
\ No newline at end of file
--- a/test-suite/tests/0009.json Sat Aug 06 19:09:13 2011 -0400
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,6 +0,0 @@
-{
- "@context": {
- "": "http://example.com/default#"
- },
- ":foo": "bar"
-}
--- a/test-suite/tests/0009.sparql Sat Aug 06 19:09:13 2011 -0400
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,3 +0,0 @@
-ASK WHERE {
- _:a <http://example.com/default#foo> "bar" .
-}
\ No newline at end of file
--- a/test-suite/tests/0010.json Sat Aug 06 19:09:13 2011 -0400
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,7 +0,0 @@
-{
- "@": "http://greggkellogg.net/foaf#me",
- "foaf:knows": {
- "@": "http://www.ivan-herman.net/foaf#me",
- "foaf:name": "Ivan Herman"
- }
-}
--- a/test-suite/tests/0010.sparql Sat Aug 06 19:09:13 2011 -0400
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,6 +0,0 @@
-PREFIX foaf: <http://xmlns.com/foaf/0.1/>
-
-ASK WHERE {
- <http://greggkellogg.net/foaf#me> foaf:knows <http://www.ivan-herman.net/foaf#me> .
- <http://www.ivan-herman.net/foaf#me> foaf:name "Ivan Herman" .
-}
--- a/test-suite/tests/0011.json Sat Aug 06 19:09:13 2011 -0400
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,6 +0,0 @@
-{
- "@": "http://greggkellogg.net/foaf#me",
- "foaf:knows": {
- "foaf:name": "Manu Sporny"
- }
-}
--- a/test-suite/tests/0011.sparql Sat Aug 06 19:09:13 2011 -0400
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,6 +0,0 @@
-PREFIX foaf: <http://xmlns.com/foaf/0.1/>
-
-ASK WHERE {
- <http://greggkellogg.net/foaf#me> foaf:knows ?o .
- ?o foaf:name "Manu Sporny" .
-}
--- a/test-suite/tests/0012.json Sat Aug 06 19:09:13 2011 -0400
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,4 +0,0 @@
-{
- "@": "http://greggkellogg.net/foaf#me",
- "foaf:knows": ["Manu Sporny", "Ivan Herman"]
-}
\ No newline at end of file
--- a/test-suite/tests/0012.sparql Sat Aug 06 19:09:13 2011 -0400
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,5 +0,0 @@
-PREFIX foaf: <http://xmlns.com/foaf/0.1/>
-
-ASK WHERE {
- <http://greggkellogg.net/foaf#me> foaf:knows "Manu Sporny", "Ivan Herman" .
-}
--- a/test-suite/tests/0013.json Sat Aug 06 19:09:13 2011 -0400
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,4 +0,0 @@
-{
- "@": "http://greggkellogg.net/foaf#me",
- "foaf:knows": [[]]
-}
--- a/test-suite/tests/0013.sparql Sat Aug 06 19:09:13 2011 -0400
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,5 +0,0 @@
-PREFIX foaf: <http://xmlns.com/foaf/0.1/>
-
-ASK WHERE {
- <http://greggkellogg.net/foaf#me> foaf:knows [] .
-}
--- a/test-suite/tests/0014.json Sat Aug 06 19:09:13 2011 -0400
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,4 +0,0 @@
-{
- "@": "http://greggkellogg.net/foaf#me",
- "foaf:knows": [["Manu Sporny"]]
-}
--- a/test-suite/tests/0014.sparql Sat Aug 06 19:09:13 2011 -0400
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,5 +0,0 @@
-PREFIX foaf: <http://xmlns.com/foaf/0.1/>
-
-ASK WHERE {
- <http://greggkellogg.net/foaf#me> foaf:knows ("Manu Sporny") .
-}
--- a/test-suite/tests/0015.json Sat Aug 06 19:09:13 2011 -0400
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,4 +0,0 @@
-{
- "@": "http://greggkellogg.net/foaf#me",
- "foaf:knows": [["Manu Sporny", "Ivan Herman"]]
-}
--- a/test-suite/tests/0015.sparql Sat Aug 06 19:09:13 2011 -0400
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,5 +0,0 @@
-PREFIX foaf: <http://xmlns.com/foaf/0.1/>
-
-ASK WHERE {
- <http://greggkellogg.net/foaf#me> foaf:knows ("Manu Sporny" "Ivan Herman") .
-}
--- a/test-suite/tests/0016.json Sat Aug 06 19:09:13 2011 -0400
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,7 +0,0 @@
-{
- "@context": {
- "@base": "http://greggkellogg.net/foaf"
- },
- "@": "#me",
- "doap:homepage": {"@iri": "http://github.com/gkellogg/"}
-}
\ No newline at end of file
--- a/test-suite/tests/0016.sparql Sat Aug 06 19:09:13 2011 -0400
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,6 +0,0 @@
-PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
-PREFIX doap: <http://usefulinc.com/ns/doap#>
-
-ASK WHERE {
- <http://greggkellogg.net/foaf#me> doap:homepage <http://github.com/gkellogg/>
-}
\ No newline at end of file
--- a/test-suite/tests/0017.json Sat Aug 06 19:09:13 2011 -0400
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,7 +0,0 @@
-{
- "@context": {
- "@vocab": "http://usefulinc.com/ns/doap#"
- },
- "@": "http://greggkellogg.net/foaf#me",
- "homepage": {"@iri": "http://github.com/gkellogg/"}
-}
--- a/test-suite/tests/0017.sparql Sat Aug 06 19:09:13 2011 -0400
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,6 +0,0 @@
-PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
-PREFIX doap: <http://usefulinc.com/ns/doap#>
-
-ASK WHERE {
- <http://greggkellogg.net/foaf#me> doap:homepage <http://github.com/gkellogg/>
-}
\ No newline at end of file
--- a/test-suite/tests/0018.json Sat Aug 06 19:09:13 2011 -0400
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,8 +0,0 @@
-{
- "@context": {
- "@base": "http://greggkellogg.net/foaf",
- "@vocab": "http://usefulinc.com/ns/doap#"
- },
- "@": "#me",
- "homepage": {"@iri": "http://github.com/gkellogg/"}
-}
--- a/test-suite/tests/0018.sparql Sat Aug 06 19:09:13 2011 -0400
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,6 +0,0 @@
-PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
-PREFIX doap: <http://usefulinc.com/ns/doap#>
-
-ASK WHERE {
- <http://greggkellogg.net/foaf#me> doap:homepage <http://github.com/gkellogg/>
-}
\ No newline at end of file
--- a/test-suite/tests/0019.json Sat Aug 06 19:09:13 2011 -0400
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,7 +0,0 @@
-{
- "@context": {
- "@coerce": { "xsd:anyURI": "foaf:knows"}
- },
- "@": "http://greggkellogg.net/foaf#me",
- "foaf:knows": "http://www.ivan-herman.net/foaf#me"
-}
--- a/test-suite/tests/0019.sparql Sat Aug 06 19:09:13 2011 -0400
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,5 +0,0 @@
-PREFIX foaf: <http://xmlns.com/foaf/0.1/>
-
-ASK WHERE {
- <http://greggkellogg.net/foaf#me> foaf:knows <http://www.ivan-herman.net/foaf#me> .
-}
\ No newline at end of file
--- a/test-suite/tests/0020.json Sat Aug 06 19:09:13 2011 -0400
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,7 +0,0 @@
-{
- "@context": {
- "@coerce": { "xsd:date": "dcterms:created"}
- },
- "@": "http://greggkellogg.net/foaf#me",
- "dcterms:created": "1957-02-27"
-}
--- a/test-suite/tests/0020.sparql Sat Aug 06 19:09:13 2011 -0400
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,6 +0,0 @@
-PREFIX dcterms: <http://purl.org/dc/terms/>
-PREFIX xsd: <http://www.w3.org/2001/XMLSchema#>
-
-ASK WHERE {
- <http://greggkellogg.net/foaf#me> dcterms:created "1957-02-27"^^xsd:date
-}
--- a/test-suite/tests/0021.json Sat Aug 06 19:09:13 2011 -0400
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,4 +0,0 @@
-{
- "@context": { "measure": "http://example/measure#"},
- "measure:cups": 5.3
-}
\ No newline at end of file
--- a/test-suite/tests/0021.sparql Sat Aug 06 19:09:13 2011 -0400
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,5 +0,0 @@
-PREFIX xsd: <http://www.w3.org/2001/XMLSchema#>
-
-ASK WHERE {
- _:a <http://example/measure#cups> "5.3"^^xsd:decimal
-}
\ No newline at end of file
--- a/test-suite/tests/0022.json Sat Aug 06 19:09:13 2011 -0400
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,4 +0,0 @@
-{
- "@context": { "measure": "http://example/measure#"},
- "measure:cups": 5.3e0
-}
\ No newline at end of file
--- a/test-suite/tests/0022.sparql Sat Aug 06 19:09:13 2011 -0400
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,5 +0,0 @@
-PREFIX xsd: <http://www.w3.org/2001/XMLSchema#>
-
-ASK WHERE {
- _:a <http://example/measure#cups> "5.3"^^xsd:double
-}
\ No newline at end of file
--- a/test-suite/tests/0023.json Sat Aug 06 19:09:13 2011 -0400
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,4 +0,0 @@
-{
- "@context": { "chem": "http://example/chem#"},
- "chem:protons": 12
-}
\ No newline at end of file
--- a/test-suite/tests/0023.sparql Sat Aug 06 19:09:13 2011 -0400
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,5 +0,0 @@
-PREFIX xsd: <http://www.w3.org/2001/XMLSchema#>
-
-ASK WHERE {
- _:a <http://example/chem#protons> "12"^^xsd:integer
-}
\ No newline at end of file
--- a/test-suite/tests/0024.json Sat Aug 06 19:09:13 2011 -0400
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,4 +0,0 @@
-{
- "@context": { "sensor": "http://example/sensor#"},
- "sensor:active": true
-}
\ No newline at end of file
--- a/test-suite/tests/0024.sparql Sat Aug 06 19:09:13 2011 -0400
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,5 +0,0 @@
-PREFIX xsd: <http://www.w3.org/2001/XMLSchema#>
-
-ASK WHERE {
- _:a <http://example/sensor#active> "true"^^xsd:boolean
-}
\ No newline at end of file
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/test-suite/tests/rdf-0001.jsonld Sat Aug 06 16:12:31 2011 -0700
@@ -0,0 +1,4 @@
+{
+ "@": "http://greggkellogg.net/foaf#me",
+ "http://xmlns.com/foaf/0.1/name": "Gregg Kellogg"
+}
\ No newline at end of file
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/test-suite/tests/rdf-0001.sparql Sat Aug 06 16:12:31 2011 -0700
@@ -0,0 +1,5 @@
+PREFIX foaf: <http://xmlns.com/foaf/0.1/>
+
+ASK WHERE {
+ <http://greggkellogg.net/foaf#me> foaf:name "Gregg Kellogg" .
+}
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/test-suite/tests/rdf-0002.jsonld Sat Aug 06 16:12:31 2011 -0700
@@ -0,0 +1,4 @@
+{
+ "@": "http://greggkellogg.net/foaf#me",
+ "foaf:name": "Gregg Kellogg"
+}
\ No newline at end of file
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/test-suite/tests/rdf-0002.sparql Sat Aug 06 16:12:31 2011 -0700
@@ -0,0 +1,5 @@
+PREFIX foaf: <http://xmlns.com/foaf/0.1/>
+
+ASK WHERE {
+ <http://greggkellogg.net/foaf#me> foaf:name "Gregg Kellogg" .
+}
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/test-suite/tests/rdf-0003.jsonld Sat Aug 06 16:12:31 2011 -0700
@@ -0,0 +1,1 @@
+{ "a": "foaf:Person" }
\ No newline at end of file
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/test-suite/tests/rdf-0003.sparql Sat Aug 06 16:12:31 2011 -0700
@@ -0,0 +1,5 @@
+PREFIX foaf: <http://xmlns.com/foaf/0.1/>
+
+ASK WHERE {
+ ?s a foaf:Person .
+}
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/test-suite/tests/rdf-0004.jsonld Sat Aug 06 16:12:31 2011 -0700
@@ -0,0 +1,3 @@
+{
+ "rdfs:label": {"@literal": "A plain literal with a lang tag.", "@language": "en-us"}
+}
\ No newline at end of file
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/test-suite/tests/rdf-0004.sparql Sat Aug 06 16:12:31 2011 -0700
@@ -0,0 +1,5 @@
+PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
+
+ASK WHERE {
+ _:s rdfs:label "A plain literal with a lang tag."@en-us .
+}
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/test-suite/tests/rdf-0005.jsonld Sat Aug 06 16:12:31 2011 -0700
@@ -0,0 +1,9 @@
+[
+ {
+ "@": "http://greggkellogg.net/foaf#me",
+ "foaf:knows": {"@iri": "http://www.ivan-herman.net/foaf#me"}
+ },{
+ "@": "http://www.ivan-herman.net/foaf#me",
+ "foaf:name": {"@literal": "Herman Iván", "@language": "hu"}
+ }
+]
\ No newline at end of file
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/test-suite/tests/rdf-0005.sparql Sat Aug 06 16:12:31 2011 -0700
@@ -0,0 +1,6 @@
+PREFIX foaf: <http://xmlns.com/foaf/0.1/>
+
+ASK WHERE {
+ <http://greggkellogg.net/foaf#me> foaf:knows <http://www.ivan-herman.net/foaf#me> .
+ <http://www.ivan-herman.net/foaf#me> foaf:name "Herman Iv\u00E1n"@hu .
+}
\ No newline at end of file
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/test-suite/tests/rdf-0006.jsonld Sat Aug 06 16:12:31 2011 -0700
@@ -0,0 +1,4 @@
+{
+ "@": "http://greggkellogg.net/foaf#me",
+ "dcterms:created": {"@literal": "1957-02-27", "@datatype": "xsd:date"}
+}
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/test-suite/tests/rdf-0006.sparql Sat Aug 06 16:12:31 2011 -0700
@@ -0,0 +1,6 @@
+PREFIX dcterms: <http://purl.org/dc/terms/>
+PREFIX xsd: <http://www.w3.org/2001/XMLSchema#>
+
+ASK WHERE {
+ <http://greggkellogg.net/foaf#me> dcterms:created "1957-02-27"^^xsd:date
+}
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/test-suite/tests/rdf-0007.jsonld Sat Aug 06 16:12:31 2011 -0700
@@ -0,0 +1,4 @@
+{
+ "@": "http://greggkellogg.net/foaf#me",
+ "a": "foaf:Person"
+}
\ No newline at end of file
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/test-suite/tests/rdf-0007.sparql Sat Aug 06 16:12:31 2011 -0700
@@ -0,0 +1,6 @@
+PREFIX foaf: <http://xmlns.com/foaf/0.1/>
+PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
+
+ASK WHERE {
+ <http://greggkellogg.net/foaf#me> rdf:type foaf:Person
+}
\ No newline at end of file
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/test-suite/tests/rdf-0008.jsonld Sat Aug 06 16:12:31 2011 -0700
@@ -0,0 +1,6 @@
+{
+ "@context": {
+ "d": "http://example.com/default#"
+ },
+ "d:foo": "bar"
+}
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/test-suite/tests/rdf-0008.sparql Sat Aug 06 16:12:31 2011 -0700
@@ -0,0 +1,3 @@
+ASK WHERE {
+ _:a <http://example.com/default#foo> "bar" .
+}
\ No newline at end of file
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/test-suite/tests/rdf-0009.jsonld Sat Aug 06 16:12:31 2011 -0700
@@ -0,0 +1,6 @@
+{
+ "@context": {
+ "": "http://example.com/default#"
+ },
+ ":foo": "bar"
+}
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/test-suite/tests/rdf-0009.sparql Sat Aug 06 16:12:31 2011 -0700
@@ -0,0 +1,3 @@
+ASK WHERE {
+ _:a <http://example.com/default#foo> "bar" .
+}
\ No newline at end of file
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/test-suite/tests/rdf-0010.jsonld Sat Aug 06 16:12:31 2011 -0700
@@ -0,0 +1,7 @@
+{
+ "@": "http://greggkellogg.net/foaf#me",
+ "foaf:knows": {
+ "@": "http://www.ivan-herman.net/foaf#me",
+ "foaf:name": "Ivan Herman"
+ }
+}
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/test-suite/tests/rdf-0010.sparql Sat Aug 06 16:12:31 2011 -0700
@@ -0,0 +1,6 @@
+PREFIX foaf: <http://xmlns.com/foaf/0.1/>
+
+ASK WHERE {
+ <http://greggkellogg.net/foaf#me> foaf:knows <http://www.ivan-herman.net/foaf#me> .
+ <http://www.ivan-herman.net/foaf#me> foaf:name "Ivan Herman" .
+}
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/test-suite/tests/rdf-0011.jsonld Sat Aug 06 16:12:31 2011 -0700
@@ -0,0 +1,6 @@
+{
+ "@": "http://greggkellogg.net/foaf#me",
+ "foaf:knows": {
+ "foaf:name": "Manu Sporny"
+ }
+}
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/test-suite/tests/rdf-0011.sparql Sat Aug 06 16:12:31 2011 -0700
@@ -0,0 +1,6 @@
+PREFIX foaf: <http://xmlns.com/foaf/0.1/>
+
+ASK WHERE {
+ <http://greggkellogg.net/foaf#me> foaf:knows ?o .
+ ?o foaf:name "Manu Sporny" .
+}
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/test-suite/tests/rdf-0012.jsonld Sat Aug 06 16:12:31 2011 -0700
@@ -0,0 +1,4 @@
+{
+ "@": "http://greggkellogg.net/foaf#me",
+ "foaf:knows": ["Manu Sporny", "Ivan Herman"]
+}
\ No newline at end of file
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/test-suite/tests/rdf-0012.sparql Sat Aug 06 16:12:31 2011 -0700
@@ -0,0 +1,5 @@
+PREFIX foaf: <http://xmlns.com/foaf/0.1/>
+
+ASK WHERE {
+ <http://greggkellogg.net/foaf#me> foaf:knows "Manu Sporny", "Ivan Herman" .
+}
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/test-suite/tests/rdf-0013.jsonld Sat Aug 06 16:12:31 2011 -0700
@@ -0,0 +1,4 @@
+{
+ "@": "http://greggkellogg.net/foaf#me",
+ "foaf:knows": [[]]
+}
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/test-suite/tests/rdf-0013.sparql Sat Aug 06 16:12:31 2011 -0700
@@ -0,0 +1,5 @@
+PREFIX foaf: <http://xmlns.com/foaf/0.1/>
+
+ASK WHERE {
+ <http://greggkellogg.net/foaf#me> foaf:knows [] .
+}
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/test-suite/tests/rdf-0014.jsonld Sat Aug 06 16:12:31 2011 -0700
@@ -0,0 +1,4 @@
+{
+ "@": "http://greggkellogg.net/foaf#me",
+ "foaf:knows": [["Manu Sporny"]]
+}
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/test-suite/tests/rdf-0014.sparql Sat Aug 06 16:12:31 2011 -0700
@@ -0,0 +1,5 @@
+PREFIX foaf: <http://xmlns.com/foaf/0.1/>
+
+ASK WHERE {
+ <http://greggkellogg.net/foaf#me> foaf:knows ("Manu Sporny") .
+}
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/test-suite/tests/rdf-0015.jsonld Sat Aug 06 16:12:31 2011 -0700
@@ -0,0 +1,4 @@
+{
+ "@": "http://greggkellogg.net/foaf#me",
+ "foaf:knows": [["Manu Sporny", "Ivan Herman"]]
+}
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/test-suite/tests/rdf-0015.sparql Sat Aug 06 16:12:31 2011 -0700
@@ -0,0 +1,5 @@
+PREFIX foaf: <http://xmlns.com/foaf/0.1/>
+
+ASK WHERE {
+ <http://greggkellogg.net/foaf#me> foaf:knows ("Manu Sporny" "Ivan Herman") .
+}
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/test-suite/tests/rdf-0016.jsonld Sat Aug 06 16:12:31 2011 -0700
@@ -0,0 +1,7 @@
+{
+ "@context": {
+ "@base": "http://greggkellogg.net/foaf"
+ },
+ "@": "#me",
+ "doap:homepage": {"@iri": "http://github.com/gkellogg/"}
+}
\ No newline at end of file
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/test-suite/tests/rdf-0016.sparql Sat Aug 06 16:12:31 2011 -0700
@@ -0,0 +1,6 @@
+PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
+PREFIX doap: <http://usefulinc.com/ns/doap#>
+
+ASK WHERE {
+ <http://greggkellogg.net/foaf#me> doap:homepage <http://github.com/gkellogg/>
+}
\ No newline at end of file
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/test-suite/tests/rdf-0017.jsonld Sat Aug 06 16:12:31 2011 -0700
@@ -0,0 +1,7 @@
+{
+ "@context": {
+ "@vocab": "http://usefulinc.com/ns/doap#"
+ },
+ "@": "http://greggkellogg.net/foaf#me",
+ "homepage": {"@iri": "http://github.com/gkellogg/"}
+}
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/test-suite/tests/rdf-0017.sparql Sat Aug 06 16:12:31 2011 -0700
@@ -0,0 +1,6 @@
+PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
+PREFIX doap: <http://usefulinc.com/ns/doap#>
+
+ASK WHERE {
+ <http://greggkellogg.net/foaf#me> doap:homepage <http://github.com/gkellogg/>
+}
\ No newline at end of file
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/test-suite/tests/rdf-0018.jsonld Sat Aug 06 16:12:31 2011 -0700
@@ -0,0 +1,8 @@
+{
+ "@context": {
+ "@base": "http://greggkellogg.net/foaf",
+ "@vocab": "http://usefulinc.com/ns/doap#"
+ },
+ "@": "#me",
+ "homepage": {"@iri": "http://github.com/gkellogg/"}
+}
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/test-suite/tests/rdf-0018.sparql Sat Aug 06 16:12:31 2011 -0700
@@ -0,0 +1,6 @@
+PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
+PREFIX doap: <http://usefulinc.com/ns/doap#>
+
+ASK WHERE {
+ <http://greggkellogg.net/foaf#me> doap:homepage <http://github.com/gkellogg/>
+}
\ No newline at end of file
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/test-suite/tests/rdf-0019.jsonld Sat Aug 06 16:12:31 2011 -0700
@@ -0,0 +1,7 @@
+{
+ "@context": {
+ "@coerce": { "xsd:anyURI": "foaf:knows"}
+ },
+ "@": "http://greggkellogg.net/foaf#me",
+ "foaf:knows": "http://www.ivan-herman.net/foaf#me"
+}
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/test-suite/tests/rdf-0019.sparql Sat Aug 06 16:12:31 2011 -0700
@@ -0,0 +1,5 @@
+PREFIX foaf: <http://xmlns.com/foaf/0.1/>
+
+ASK WHERE {
+ <http://greggkellogg.net/foaf#me> foaf:knows <http://www.ivan-herman.net/foaf#me> .
+}
\ No newline at end of file
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/test-suite/tests/rdf-0020.jsonld Sat Aug 06 16:12:31 2011 -0700
@@ -0,0 +1,7 @@
+{
+ "@context": {
+ "@coerce": { "xsd:date": "dcterms:created"}
+ },
+ "@": "http://greggkellogg.net/foaf#me",
+ "dcterms:created": "1957-02-27"
+}
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/test-suite/tests/rdf-0020.sparql Sat Aug 06 16:12:31 2011 -0700
@@ -0,0 +1,6 @@
+PREFIX dcterms: <http://purl.org/dc/terms/>
+PREFIX xsd: <http://www.w3.org/2001/XMLSchema#>
+
+ASK WHERE {
+ <http://greggkellogg.net/foaf#me> dcterms:created "1957-02-27"^^xsd:date
+}
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/test-suite/tests/rdf-0021.jsonld Sat Aug 06 16:12:31 2011 -0700
@@ -0,0 +1,4 @@
+{
+ "@context": { "measure": "http://example/measure#"},
+ "measure:cups": 5.3
+}
\ No newline at end of file
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/test-suite/tests/rdf-0021.sparql Sat Aug 06 16:12:31 2011 -0700
@@ -0,0 +1,5 @@
+PREFIX xsd: <http://www.w3.org/2001/XMLSchema#>
+
+ASK WHERE {
+ _:a <http://example/measure#cups> "5.3"^^xsd:decimal
+}
\ No newline at end of file
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/test-suite/tests/rdf-0022.jsonld Sat Aug 06 16:12:31 2011 -0700
@@ -0,0 +1,4 @@
+{
+ "@context": { "measure": "http://example/measure#"},
+ "measure:cups": 5.3e0
+}
\ No newline at end of file
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/test-suite/tests/rdf-0022.sparql Sat Aug 06 16:12:31 2011 -0700
@@ -0,0 +1,5 @@
+PREFIX xsd: <http://www.w3.org/2001/XMLSchema#>
+
+ASK WHERE {
+ _:a <http://example/measure#cups> "5.3"^^xsd:double
+}
\ No newline at end of file
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/test-suite/tests/rdf-0023.jsonld Sat Aug 06 16:12:31 2011 -0700
@@ -0,0 +1,4 @@
+{
+ "@context": { "chem": "http://example/chem#"},
+ "chem:protons": 12
+}
\ No newline at end of file
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/test-suite/tests/rdf-0023.sparql Sat Aug 06 16:12:31 2011 -0700
@@ -0,0 +1,5 @@
+PREFIX xsd: <http://www.w3.org/2001/XMLSchema#>
+
+ASK WHERE {
+ _:a <http://example/chem#protons> "12"^^xsd:integer
+}
\ No newline at end of file
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/test-suite/tests/rdf-0024.jsonld Sat Aug 06 16:12:31 2011 -0700
@@ -0,0 +1,4 @@
+{
+ "@context": { "sensor": "http://example/sensor#"},
+ "sensor:active": true
+}
\ No newline at end of file
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/test-suite/tests/rdf-0024.sparql Sat Aug 06 16:12:31 2011 -0700
@@ -0,0 +1,5 @@
+PREFIX xsd: <http://www.w3.org/2001/XMLSchema#>
+
+ASK WHERE {
+ _:a <http://example/sensor#active> "true"^^xsd:boolean
+}
\ No newline at end of file