summaryrefslogtreecommitdiffstats
path: root/tests/get_patch.ttl
diff options
context:
space:
mode:
Diffstat (limited to 'tests/get_patch.ttl')
-rw-r--r--tests/get_patch.ttl39
1 files changed, 39 insertions, 0 deletions
diff --git a/tests/get_patch.ttl b/tests/get_patch.ttl
new file mode 100644
index 00000000..9ea9e036
--- /dev/null
+++ b/tests/get_patch.ttl
@@ -0,0 +1,39 @@
+@prefix lv2: <http://lv2plug.in/ns/lv2core#> .
+@prefix patch: <http://lv2plug.in/ns/ext/patch#> .
+@prefix ingen: <http://drobilla.net/ns/ingen#> .
+
+<msg0>
+ a patch:Put ;
+ patch:subject <ingen:/main/sub> ;
+ patch:body [
+ a ingen:Graph
+ ] .
+
+<msg1>
+ a patch:Put ;
+ patch:subject <ingen:/main/sub/node1> ;
+ patch:body [
+ a ingen:Block ;
+ lv2:prototype <http://drobilla.net/plugins/mda/Shepard>
+ ] .
+
+<msg2>
+ a patch:Put ;
+ patch:subject <ingen:/main/sub/node2> ;
+ patch:body [
+ a ingen:Block ;
+ lv2:prototype <http://drobilla.net/plugins/mda/Combo>
+ ] .
+
+<msg3>
+ a patch:Put ;
+ patch:subject <ingen:/main/> ;
+ patch:body [
+ a ingen:Arc ;
+ ingen:tail <ingen:/main/sub/node1/left_out> ;
+ ingen:head <ingen:/main/sub/node2/left_in>
+ ] .
+
+<msg4>
+ a patch:Get ;
+ patch:subject <ingen:/main/> .