diff options
Diffstat (limited to 'tests/enable_graph.ttl')
-rw-r--r-- | tests/enable_graph.ttl | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/tests/enable_graph.ttl b/tests/enable_graph.ttl new file mode 100644 index 00000000..7d34db68 --- /dev/null +++ b/tests/enable_graph.ttl @@ -0,0 +1,17 @@ +@prefix ingen: <http://drobilla.net/ns/ingen#> . +@prefix lv2: <http://lv2plug.in/ns/lv2core#> . +@prefix patch: <http://lv2plug.in/ns/ext/patch#> . + +<msg0> + a patch:Put ; + patch:subject <ingen:/root> ; + patch:body [ + ingen:enabled true + ] . + +<msg1> + a patch:Put ; + patch:subject <ingen:/root> ; + patch:body [ + ingen:enabled false + ] . |