summaryrefslogtreecommitdiffstats
path: root/tests/feeds/test05-result.ttl
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-15 05:40:05 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-15 05:40:05 +0000
commit4038ab95a094b363f1748f3dcb51511a1217475d (patch)
tree7f393d66a783f91ddd263c78d681e485cf4f45ca /tests/feeds/test05-result.ttl
parentInitial commit. (diff)
downloadraptor2-4038ab95a094b363f1748f3dcb51511a1217475d.tar.xz
raptor2-4038ab95a094b363f1748f3dcb51511a1217475d.zip
Adding upstream version 2.0.16.upstream/2.0.16upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'tests/feeds/test05-result.ttl')
-rw-r--r--tests/feeds/test05-result.ttl24
1 files changed, 24 insertions, 0 deletions
diff --git a/tests/feeds/test05-result.ttl b/tests/feeds/test05-result.ttl
new file mode 100644
index 0000000..e40cf91
--- /dev/null
+++ b/tests/feeds/test05-result.ttl
@@ -0,0 +1,24 @@
+@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
+@prefix rss091: <http://purl.org/rss/1.0/modules/rss091#> .
+@prefix rss: <http://purl.org/rss/1.0/> .
+@prefix dc: <http://purl.org/dc/elements/1.1/> .
+@prefix atom: <http://www.w3.org/2005/Atom> .
+
+<index.atom>
+ dc:date "2009-01-01T00:00:00-00:00" ;
+ rss:link "http://www.example.org/blog/index.atom" ;
+ rss:title "Kim Doe" ;
+ a rss:channel ;
+ atom:author [
+ a atom:Author ;
+ atom:name "Kim Doe"
+ ] ;
+ atom:id <index.atom> ;
+ atom:link [
+ a atom:Link ;
+ atom:href <index.atom> ;
+ atom:rel "self"
+ ] ;
+ atom:title "Kim Doe" ;
+ atom:updated "2009-01-01T00:00:00-00:00" .
+