summaryrefslogtreecommitdiffstats
path: root/test/w3c/lua/test500.scxml
blob: 527d36d3077553d7eafbc8d5a6a9869dc1699ba6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
<?xml version="1.0" standalone="no"?>
<!-- test that location field is found inside entry for SCXML Event I/O processor -->
<scxml xmlns="http://www.w3.org/2005/07/scxml" initial="s0" version="1.0" datamodel="lua">
  <datamodel>
    <data expr="FIXME" id="testvar1"/>
  </datamodel>
  <state id="s0">
    <transition cond="testvar1 ~= nil" target="pass"/>
    <transition target="fail"/>
  </state>
  <final id="pass"/>
  <final id="fail"/>
</scxml>