diff options
author | Stefan Radomski <github@mintwerk.de> | 2017-06-06 13:24:08 (GMT) |
---|---|---|
committer | Stefan Radomski <github@mintwerk.de> | 2017-06-06 13:24:08 (GMT) |
commit | ee41921b7dfdd91e2a416040e9a7aa0087ff554a (patch) | |
tree | 5801581e0eecc01d3df4baf4e2b03470440e61c8 /test/w3c/jexl | |
parent | c2624fcf87cac6b56c10771cdd88c3aaecbf2488 (diff) | |
download | uscxml-ee41921b7dfdd91e2a416040e9a7aa0087ff554a.zip uscxml-ee41921b7dfdd91e2a416040e9a7aa0087ff554a.tar.gz uscxml-ee41921b7dfdd91e2a416040e9a7aa0087ff554a.tar.bz2 |
Added CP1252 tests
Diffstat (limited to 'test/w3c/jexl')
-rw-r--r-- | test/w3c/jexl/test-enc-CP1252.scxml | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/test/w3c/jexl/test-enc-CP1252.scxml b/test/w3c/jexl/test-enc-CP1252.scxml new file mode 100644 index 0000000..1725fa5 --- /dev/null +++ b/test/w3c/jexl/test-enc-CP1252.scxml @@ -0,0 +1,26 @@ +<?xml version="1.0" encoding="CP1252"?> +<!-- 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="jexl"> + <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 id="pass"> + <onentry> + <log label="Outcome" expr="'pass'"/> + </onentry> + </final> + <final id="fail"> + <onentry> + <log label="Outcome" expr="'fail'"/> + </onentry> + </final> +</scxml> |