diff options
author | Stefan Radomski <github@mintwerk.de> | 2017-06-06 13:28:53 (GMT) |
---|---|---|
committer | Stefan Radomski <github@mintwerk.de> | 2017-06-06 13:28:53 (GMT) |
commit | 88d2ee4fab0c2924da0b9c9bcc238262a05c0602 (patch) | |
tree | 36ddc26afab6780aa44aaa98e19b16512f7a07bd /test/w3c/lua/test-enc-WINDOWS-1252.scxml | |
parent | ee41921b7dfdd91e2a416040e9a7aa0087ff554a (diff) | |
download | uscxml-88d2ee4fab0c2924da0b9c9bcc238262a05c0602.zip uscxml-88d2ee4fab0c2924da0b9c9bcc238262a05c0602.tar.gz uscxml-88d2ee4fab0c2924da0b9c9bcc238262a05c0602.tar.bz2 |
Proper XML encoding names
Diffstat (limited to 'test/w3c/lua/test-enc-WINDOWS-1252.scxml')
-rw-r--r-- | test/w3c/lua/test-enc-WINDOWS-1252.scxml | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/test/w3c/lua/test-enc-WINDOWS-1252.scxml b/test/w3c/lua/test-enc-WINDOWS-1252.scxml new file mode 100644 index 0000000..9f93f72 --- /dev/null +++ b/test/w3c/lua/test-enc-WINDOWS-1252.scxml @@ -0,0 +1,26 @@ +<?xml version="1.0" encoding="WINDOWS-1252"?> +<!-- test that neither if clause executes, so that bat is the only event raised. --> +<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"> + <datamodel> + <data id="Var1" expr="'ü'"/> + <data id="Var2" expr="'ü'"/> + </datamodel> + <state id="s0"> + <transition cond="Var1==Var2" target="s1"/> + <transition target="fail"/> + </state> + <state id="s1"> + <transition cond="Var1=='ü'" target="pass"/> + <transition target="fail"/> + </state> + <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> |