diff options
Diffstat (limited to 'tests/poly.ttl')
-rw-r--r-- | tests/poly.ttl | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/tests/poly.ttl b/tests/poly.ttl new file mode 100644 index 00000000..e5b43c43 --- /dev/null +++ b/tests/poly.ttl @@ -0,0 +1,25 @@ +@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 <path:/node> ; + patch:body [ + a ingen:Node ; + ingen:prototype <http://drobilla.net/plugins/mda/Shepard> + ] . + +<msg1> + a patch:Set ; + patch:subject <path:/> ; + patch:body [ + ingen:polyphony 4 + ] . + +<msg2> + a patch:Set ; + patch:subject <path:/node> ; + patch:body [ + ingen:polyphonic true + ] . |