summaryrefslogtreecommitdiffstats
path: root/test/scxml-test-framework/test/scxml-prefix-event-name-matching/test1.scxml
diff options
context:
space:
mode:
Diffstat (limited to 'test/scxml-test-framework/test/scxml-prefix-event-name-matching/test1.scxml')
-rw-r--r--test/scxml-test-framework/test/scxml-prefix-event-name-matching/test1.scxml52
1 files changed, 26 insertions, 26 deletions
diff --git a/test/scxml-test-framework/test/scxml-prefix-event-name-matching/test1.scxml b/test/scxml-test-framework/test/scxml-prefix-event-name-matching/test1.scxml
index 9e7c4e3..4515b3a 100644
--- a/test/scxml-test-framework/test/scxml-prefix-event-name-matching/test1.scxml
+++ b/test/scxml-test-framework/test/scxml-prefix-event-name-matching/test1.scxml
@@ -15,39 +15,39 @@
limitations under the License.
-->
<scxml
- xmlns="http://www.w3.org/2005/07/scxml"
- version="1.0"
- profile="ecmascript" >
+ datamodel="ecmascript"
+ xmlns="http://www.w3.org/2005/07/scxml"
+ version="1.0">
- <state id="a">
- <transition target="b" event="foo"/>
- </state>
+ <state id="a">
+ <transition target="b" event="foo"/>
+ </state>
- <state id="b">
- <transition target="c" event="foo.bar"/>
- </state>
+ <state id="b">
+ <transition target="c" event="foo.bar"/>
+ </state>
- <state id="c">
- <transition target="d" event="foo.bar.bat"/>
- </state>
+ <state id="c">
+ <transition target="d" event="foo.bar.bat"/>
+ </state>
- <state id="d">
- <transition target="e" event="foo.*"/>
- <transition target="fail" event="foo"/>
- </state>
+ <state id="d">
+ <transition target="e" event="foo.*"/>
+ <transition target="fail" event="foo"/>
+ </state>
- <state id="e">
- <transition target="f" event="foo.bar.*"/>
- <transition target="fail" event="foo.bar"/>
- </state>
+ <state id="e">
+ <transition target="f" event="foo.bar.*"/>
+ <transition target="fail" event="foo.bar"/>
+ </state>
- <state id="f">
- <transition target="g" event="foo.bar.bat.*"/>
- <transition target="fail" event="foo.bar.bat"/>
- </state>
+ <state id="f">
+ <transition target="g" event="foo.bar.bat.*"/>
+ <transition target="fail" event="foo.bar.bat"/>
+ </state>
- <state id="g"/>
+ <state id="g"/>
- <state id="fail"/>
+ <state id="fail"/>
</scxml>