summaryrefslogtreecommitdiffstats
path: root/test/w3c/c89/test-enc-ISO-8859-15.scxml
diff options
context:
space:
mode:
authorStefan Radomski <github@mintwerk.de>2017-06-05 13:02:25 (GMT)
committerStefan Radomski <github@mintwerk.de>2017-06-05 13:02:25 (GMT)
commitc2624fcf87cac6b56c10771cdd88c3aaecbf2488 (patch)
tree7c2e203c7997bc93a4e46a59d025b766f98b58bb /test/w3c/c89/test-enc-ISO-8859-15.scxml
parentd1404b669a00a6cff2ac35f09d0222c1d9ab4bff (diff)
downloaduscxml-c2624fcf87cac6b56c10771cdd88c3aaecbf2488.zip
uscxml-c2624fcf87cac6b56c10771cdd88c3aaecbf2488.tar.gz
uscxml-c2624fcf87cac6b56c10771cdd88c3aaecbf2488.tar.bz2
Added more encoding tests
Diffstat (limited to 'test/w3c/c89/test-enc-ISO-8859-15.scxml')
-rw-r--r--test/w3c/c89/test-enc-ISO-8859-15.scxml26
1 files changed, 26 insertions, 0 deletions
diff --git a/test/w3c/c89/test-enc-ISO-8859-15.scxml b/test/w3c/c89/test-enc-ISO-8859-15.scxml
new file mode 100644
index 0000000..5fdf91c
--- /dev/null
+++ b/test/w3c/c89/test-enc-ISO-8859-15.scxml
@@ -0,0 +1,26 @@
+<?xml version="1.0" encoding="ISO-8859-15"?>
+<!-- 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="c89">
+ <datamodel>
+ <data id="Var1" expr="&amp;ü&amp;"/>
+ <data id="Var2" expr="&amp;ü&amp;"/>
+ </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="&amp;pass&amp;"/>
+ </onentry>
+ </final>
+ <final id="fail">
+ <onentry>
+ <log label="Outcome" expr="&amp;pass&amp;"/>
+ </onentry>
+ </final>
+</scxml>