summaryrefslogtreecommitdiffstats
path: root/test/samples/w3c/ecma/test449.scxml
blob: d06cc9a87561cbfe70cb79b03b3f7abe12dd257e (plain)
1
2
3
4
5
6
7
8
9
10
11
<?xml version="1.0" encoding="UTF-8"?><!--  test that ecmascript objects are converted to booleans inside cond --><scxml xmlns="http://www.w3.org/2005/07/scxml" xmlns:conf="http://www.w3.org/2005/scxml-conformance" datamodel="ecmascript" version="1.0">
 
     
<state id="s0">
  <transition cond="'foo'" target="pass"/>
  <transition target="fail"/>
    </state>

<final id="pass"><onentry><log label="Outcome" expr="'pass'"/></onentry></final>
<final id="fail"><onentry><log label="Outcome" expr="'fail'"/></onentry></final>
</scxml>