summaryrefslogtreecommitdiffstats
path: root/test/w3c/lua/test520.scxml
diff options
context:
space:
mode:
authorStefan Radomski <radomski@tk.informatik.tu-darmstadt.de>2014-07-30 20:41:50 (GMT)
committerStefan Radomski <radomski@tk.informatik.tu-darmstadt.de>2014-07-30 20:41:50 (GMT)
commitb7a2d38bdcee3bf85a32dea7ac74b144d5ef40fa (patch)
treebade629bcca6b6a1417cb45be4349a3c27ea0feb /test/w3c/lua/test520.scxml
parentafbd0c4463c6f28ec1cd6ea45a68fdbcfcfeae6c (diff)
downloaduscxml-b7a2d38bdcee3bf85a32dea7ac74b144d5ef40fa.zip
uscxml-b7a2d38bdcee3bf85a32dea7ac74b144d5ef40fa.tar.gz
uscxml-b7a2d38bdcee3bf85a32dea7ac74b144d5ef40fa.tar.bz2
See detailled log
- Forcing Data.Type for Data(String) constructor now, default used to be INTERPRETED. - setDataModel and addIOProcessor on interpreter now - fixed a bug with Data(bool) constructor - various smaller fixes
Diffstat (limited to 'test/w3c/lua/test520.scxml')
-rw-r--r--test/w3c/lua/test520.scxml6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/w3c/lua/test520.scxml b/test/w3c/lua/test520.scxml
index 2e2e356..6e8cf7c 100644
--- a/test/w3c/lua/test520.scxml
+++ b/test/w3c/lua/test520.scxml
@@ -4,14 +4,14 @@
<state id="s0">
<onentry>
<send event="timeout" delay="30s"/>
- <send type="http://www.w3.org/TR/scxml/#BasicHTTPEventProcessor" targetexpr="FIXME">
+ <send type="http://www.w3.org/TR/scxml/#BasicHTTPEventProcessor" targetexpr="_ioprocessors.basichttp.location">
<content>this is some content</content>
</send>
</onentry>
<!-- if other end sends us back this event, we succeed. Test for two common
ways of encoding -->
- <transition event="HTTP.POST" cond="_event.httpresponse=='this+is+some+content'" target="pass"/>
- <transition event="HTTP.POST" cond="_event.httpresponse=='this%20is%20some%20content'" target="pass"/>
+ <transition event="HTTP.POST" cond="_event.raw=='this+is+some+content'" target="pass"/>
+ <transition event="HTTP.POST" cond="_event.raw=='this%20is%20some%20content'" target="pass"/>
<transition event="*" target="fail"/>
</state>
<final id="pass"/>