summaryrefslogtreecommitdiffstats
path: root/tests/move_root_port.ttl
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2013-12-26 00:31:27 +0000
committerDavid Robillard <d@drobilla.net>2013-12-26 00:31:27 +0000
commitb63a173b3624bff8a38eacd088aa3dfce3fc4e33 (patch)
tree9027482481df0f90a3d7f3babd67747768034fae /tests/move_root_port.ttl
parent848893c6a25e70a6f898ceaa8a647558060ac06e (diff)
downloadingen-b63a173b3624bff8a38eacd088aa3dfce3fc4e33.tar.gz
ingen-b63a173b3624bff8a38eacd088aa3dfce3fc4e33.tar.bz2
ingen-b63a173b3624bff8a38eacd088aa3dfce3fc4e33.zip
Add test cases.
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@5211 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'tests/move_root_port.ttl')
-rw-r--r--tests/move_root_port.ttl20
1 files changed, 20 insertions, 0 deletions
diff --git a/tests/move_root_port.ttl b/tests/move_root_port.ttl
new file mode 100644
index 00000000..b9e6bd86
--- /dev/null
+++ b/tests/move_root_port.ttl
@@ -0,0 +1,20 @@
+@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:/root/in> ;
+ patch:body [
+ a lv2:InputPort ,
+ lv2:AudioPort
+ ] .
+
+<msg1>
+ a patch:Move ;
+ patch:subject <ingen:/root/in> ;
+ patch:destination <ingen:/root/input> .
+
+<msg2>
+ a patch:Delete ;
+ patch:subject <ingen:/root/input> .