diff options
Diffstat (limited to 'test/w3c/lua/test179.scxml')
-rw-r--r-- | test/w3c/lua/test179.scxml | 16 |
1 files changed, 12 insertions, 4 deletions
diff --git a/test/w3c/lua/test179.scxml b/test/w3c/lua/test179.scxml index c8647c7..942f826 100644 --- a/test/w3c/lua/test179.scxml +++ b/test/w3c/lua/test179.scxml @@ -1,6 +1,6 @@ -<?xml version="1.0" standalone="no"?> +<?xml version="1.0" encoding="UTF-8"?> <!-- we test that <content> can be used to populate body of a message --> -<scxml xmlns="http://www.w3.org/2005/07/scxml" initial="s0" version="1.0" datamodel="lua"> +<scxml xmlns="http://www.w3.org/2005/07/scxml" xmlns:conf="http://www.w3.org/2005/scxml-conformance" initial="s0" version="1.0" datamodel="lua"> <state id="s0"> <onentry> <send event="event1"> @@ -10,6 +10,14 @@ <transition event="event1" cond="_event.data == 123" target="pass"/> <transition event="*" target="fail"/> </state> - <final id="pass"/> - <final id="fail"/> + <final xmlns:scxml="http://www.w3.org/2005/07/scxml" id="pass"> + <onentry> + <log label="Outcome" expr="'pass'"/> + </onentry> + </final> + <final xmlns:scxml="http://www.w3.org/2005/07/scxml" id="fail"> + <onentry> + <log label="Outcome" expr="'fail'"/> + </onentry> + </final> </scxml> |