diff options
Diffstat (limited to 'html/076scenario_console_test.mu.html')
-rw-r--r-- | html/076scenario_console_test.mu.html | 59 |
1 files changed, 59 insertions, 0 deletions
diff --git a/html/076scenario_console_test.mu.html b/html/076scenario_console_test.mu.html new file mode 100644 index 00000000..a3fa6101 --- /dev/null +++ b/html/076scenario_console_test.mu.html @@ -0,0 +1,59 @@ +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> +<html> +<head> +<meta http-equiv="content-type" content="text/html; charset=UTF-8"> +<title>Mu - 076scenario_console_test.mu</title> +<meta name="Generator" content="Vim/7.4"> +<meta name="plugin-version" content="vim7.4_v1"> +<meta name="syntax" content="none"> +<meta name="settings" content="use_css,pre_wrap,no_foldcolumn,expand_tabs,prevent_copy="> +<meta name="colorscheme" content="minimal"> +<style type="text/css"> +<!-- +pre { white-space: pre-wrap; font-family: monospace; color: #eeeeee; background-color: #080808; } +body { font-family: monospace; color: #eeeeee; background-color: #080808; } +* { font-size: 1.05em; } +.muScenario { color: #00af00; } +.Comment { color: #9090ff; } +.Constant { color: #00a0a0; } +.Special { color: #ff6060; } +--> +</style> + +<script type='text/javascript'> +<!-- + +--> +</script> +</head> +<body> +<pre id='vimCodeElement'> +<span class="Comment"># To check our support for consoles in scenarios, rewrite tests from</span> +<span class="Comment"># scenario_console.mu</span> +<span class="Comment"># Tests for console interface.</span> + +<span class="muScenario">scenario</span> read-key-in-mu [ + assume-console [ + type <span class="Constant">[abc]</span> + ] + run [ + 1:character, console:address, 2:boolean<span class="Special"> <- </span>read-key console:address + 3:character, console:address, 4:boolean<span class="Special"> <- </span>read-key console:address + 5:character, console:address, 6:boolean<span class="Special"> <- </span>read-key console:address + 7:character, console:address, 8:boolean<span class="Special"> <- </span>read-key console:address + ] + memory-should-contain [ + 1<span class="Special"> <- </span>97 <span class="Comment"># 'a'</span> + 2<span class="Special"> <- </span>1 + 3<span class="Special"> <- </span>98 <span class="Comment"># 'b'</span> + 4<span class="Special"> <- </span>1 + 5<span class="Special"> <- </span>99 <span class="Comment"># 'c'</span> + 6<span class="Special"> <- </span>1 + 7<span class="Special"> <- </span>0 <span class="Comment"># eof</span> + 8<span class="Special"> <- </span>1 + ] +] +</pre> +</body> +</html> +<!-- vim: set foldmethod=manual : --> |