summaryrefslogtreecommitdiffstats
path: root/tests/create_delete_port.ttl
diff options
context:
space:
mode:
Diffstat (limited to 'tests/create_delete_port.ttl')
-rw-r--r--tests/create_delete_port.ttl53
1 files changed, 53 insertions, 0 deletions
diff --git a/tests/create_delete_port.ttl b/tests/create_delete_port.ttl
new file mode 100644
index 00000000..ba26560d
--- /dev/null
+++ b/tests/create_delete_port.ttl
@@ -0,0 +1,53 @@
+@prefix atom: <http://lv2plug.in/ns/ext/atom#> .
+@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/audio_in> ;
+ patch:body [
+ a lv2:InputPort ,
+ lv2:AudioPort
+ ] .
+
+<msg1>
+ a patch:Put ;
+ patch:subject <ingen:/main/float_in> ;
+ patch:body [
+ a lv2:InputPort ,
+ lv2:ControlPort
+ ] .
+
+<msg2>
+ a patch:Put ;
+ patch:subject <ingen:/main/cv_in> ;
+ patch:body [
+ a lv2:InputPort ,
+ lv2:CVPort
+ ] .
+
+<msg3>
+ a patch:Put ;
+ patch:subject <ingen:/main/atom_in> ;
+ patch:body [
+ a lv2:InputPort ,
+ atom:AtomPort ;
+ atom:bufferType atom:Sequence
+ ] .
+
+<msg4>
+ a patch:Delete ;
+ patch:subject <ingen:/main/audio_in> .
+
+<msg5>
+ a patch:Delete ;
+ patch:subject <ingen:/main/float_in> .
+
+<msg6>
+ a patch:Delete ;
+ patch:subject <ingen:/main/cv_in> .
+
+<msg7>
+ a patch:Delete ;
+ patch:subject <ingen:/main/atom_in> .