summaryrefslogtreecommitdiffstats
path: root/test/w3c/lua/test531.scxml
blob: 36d8301c38e0ecb60dc7fe55596ca8a2d188661d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<?xml version="1.0" standalone="no"?>
<!-- test that that the value of the <param> _scxmleventname gets used as the name
of the raised event. -->
<scxml xmlns="http://www.w3.org/2005/07/scxml" initial="s0" version="1.0" datamodel="lua">
  <state id="s0">
    <onentry>
      <send event="timeout" delay="3s"/>
      <send type="http://www.w3.org/TR/scxml/#BasicHTTPEventProcessor" targetexpr="FIXME">
        <param name="_scxmleventname" expr="'test'"/>
      </send>
    </onentry>
    <!-- if we get an event named 'test' we succeed. Otherwise fail -->
    <transition event="test" target="pass"/>
    <transition event="*" target="fail"/>
  </state>
  <final id="pass"/>
  <final id="fail"/>
</scxml>