blob: 000816242359d57b3a495bd50fa02da9854e3790 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
|
<!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>~/Desktop/s/mu/076scenario_keyboard_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: #d0d0d0; background-color: #000000; }
body { font-family: monospace; color: #d0d0d0; background-color: #000000; }
* { font-size: 1em; }
.Comment { color: #8080ff; }
.Constant { color: #008080; }
.Special { color: #ff6060; }
-->
</style>
<script type='text/javascript'>
<!--
-->
</script>
</head>
<body>
<pre id='vimCodeElement'>
<span class="Comment"># To check our support for keyboards in scenarios, rewrite tests from</span>
<span class="Comment"># scenario_keyboard.mu</span>
<span class="Comment"># Tests for keyboard interface.</span>
scenario read-key-in-mu [
assume-keyboard <span class="Constant">[abc]</span>
run [
1:character, 2:boolean, keyboard:address<span class="Special"> <- </span>read-key keyboard:address
3:character, 4:boolean, keyboard:address<span class="Special"> <- </span>read-key keyboard:address
5:character, 6:boolean, keyboard:address<span class="Special"> <- </span>read-key keyboard:address
7:character, 8:boolean, keyboard:address<span class="Special"> <- </span>read-key keyboard: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 : -->
|