summaryrefslogtreecommitdiffstats
path: root/test/w3c/lua/test348.scxml
blob: af7c220fe4ff21a521f36fa0f9f278a434221e23 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
<?xml version="1.0" standalone="no"?>
<scxml xmlns="http://www.w3.org/2005/07/scxml" initial="s0" version="1.0" datamodel="lua">
  <!-- test that event param of send sets the name of the event -->
  <state id="s0">
    <onentry>
      <send type="http://www.w3.org/TR/scxml/#SCXMLEventProcessor" event="s0Event"/>
    </onentry>
    <transition event="s0Event" target="pass"/>
    <transition event="*" target="fail"/>
  </state>
  <final id="pass"/>
  <final id="fail"/>
</scxml>