summaryrefslogtreecommitdiffstats
path: root/test/src/issues/test-issue64.scxml
diff options
context:
space:
mode:
authorStefan Radomski <sradomski@mintwerk.de>2016-04-28 11:00:10 (GMT)
committerStefan Radomski <sradomski@mintwerk.de>2016-04-28 11:00:10 (GMT)
commit4750623a631e72c7a8be8d4172b33c83f20113a6 (patch)
tree64d626708595d3fe5438d75af1616870db724800 /test/src/issues/test-issue64.scxml
parent454fa66e503e41465cba75a6bea00463a93a20ef (diff)
downloaduscxml-4750623a631e72c7a8be8d4172b33c83f20113a6.zip
uscxml-4750623a631e72c7a8be8d4172b33c83f20113a6.tar.gz
uscxml-4750623a631e72c7a8be8d4172b33c83f20113a6.tar.bz2
Fixed issue 64 and beautified code again
Diffstat (limited to 'test/src/issues/test-issue64.scxml')
-rw-r--r--test/src/issues/test-issue64.scxml16
1 files changed, 16 insertions, 0 deletions
diff --git a/test/src/issues/test-issue64.scxml b/test/src/issues/test-issue64.scxml
new file mode 100644
index 0000000..0969b5f
--- /dev/null
+++ b/test/src/issues/test-issue64.scxml
@@ -0,0 +1,16 @@
+<scxml datamodel="lua" initial="start" name="root" version="1.0" xmlns="http://www.w3.org/2005/07/scxml">
+ <final id="end"/>
+ <state id="start">
+ <invoke id="test_invoke" type="scxml">
+ <content>
+ <scxml datamodel="lua" name="scxml_invoke" version="1.0" xmlns="http://www.w3.org/2005/07/scxml">
+ <state id="start">
+ <transition target="end"/>
+ </state>
+ <final id="end"/>
+ </scxml>
+ </content>
+ </invoke>
+ <transition event="done.invoke.test_invoke" target="end"/>
+ </state>
+</scxml>