summaryrefslogtreecommitdiffstats
path: root/test/src/test-http-debugger.scxml
diff options
context:
space:
mode:
Diffstat (limited to 'test/src/test-http-debugger.scxml')
-rw-r--r--test/src/test-http-debugger.scxml16
1 files changed, 16 insertions, 0 deletions
diff --git a/test/src/test-http-debugger.scxml b/test/src/test-http-debugger.scxml
new file mode 100644
index 0000000..842390d
--- /dev/null
+++ b/test/src/test-http-debugger.scxml
@@ -0,0 +1,16 @@
+<scxml datamodel="ecmascript" version="1.0" >
+ <state id="s0">
+ <onentry>
+ <send event="foo" delay="1s" />
+ <log expr="'tick'" />
+ </onentry>
+ <transition event="foo" target="s1" />
+ </state>
+ <state id="s1">
+ <onentry>
+ <send event="foo" delay="1s" />
+ <log expr="'tock'" />
+ </onentry>
+ <transition event="foo" target="s0" />
+ </state>
+</scxml> \ No newline at end of file