about summary refs log tree commit diff stats
path: root/086scenario_console_test.mu
blob: 4522c3a0567c43cbf5c4efd767b8085463805db4 (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
# To check our support for consoles in scenarios, rewrite tests from
# scenario_console.mu
# Tests for console interface.

scenario read-key-in-mu [
  assume-console [
    type [abc]
  ]
  run [
    1:char, console:&:console, 2:bool <- read-key console:&:console
    3:char, console:&:console, 4:bool <- read-key console:&:console
    5:char, console:&:console, 6:bool <- read-key console:&:console
    7:char, console:&:console, 8:bool <- read-key console:&:console
  ]
  memory-should-contain [
    1 <- 97  # 'a'
    2 <- 1
    3 <- 98  # 'b'
    4 <- 1
    5 <- 99  # 'c'
    6 <- 1
    7 <- 0  # eof
    8 <- 1
  ]
]