From 204dae921abff0c70e017215bb3c91fa6ca11aff Mon Sep 17 00:00:00 2001 From: "Kartik K. Agaram" Date: Mon, 26 Dec 2016 11:44:14 -0800 Subject: 3710 Turns out we don't need to explicitly add anchors for each line. Vim's TOhtml has magic for that out of the box. --- html/086scenario_console_test.mu.html | 50 +++++++++++++++++------------------ 1 file changed, 25 insertions(+), 25 deletions(-) (limited to 'html/086scenario_console_test.mu.html') diff --git a/html/086scenario_console_test.mu.html b/html/086scenario_console_test.mu.html index 94b30e3d..41d4bb1d 100644 --- a/html/086scenario_console_test.mu.html +++ b/html/086scenario_console_test.mu.html @@ -52,31 +52,31 @@ if ('onhashchange' in window) {
- 1 # To check our support for consoles in scenarios, rewrite tests from
- 2 # scenario_console.mu
- 3 # Tests for console interface.
- 4 
- 5 scenario read-key-in-mu [
- 6   assume-console [
- 7     type [abc]
- 8   ]
- 9   run [
-10     1:char, 2:bool <- read-key console
-11     3:char, 4:bool <- read-key console
-12     5:char, 6:bool <- read-key console
-13     7:char, 8:bool <- read-key console
-14   ]
-15   memory-should-contain [
-16     1 <- 97  # 'a'
-17     2 <- 1
-18     3 <- 98  # 'b'
-19     4 <- 1
-20     5 <- 99  # 'c'
-21     6 <- 1
-22     7 <- 0  # eof
-23     8 <- 1
-24   ]
-25 ]
+ 1 # To check our support for consoles in scenarios, rewrite tests from
+ 2 # scenario_console.mu
+ 3 # Tests for console interface.
+ 4 
+ 5 scenario read-key-in-mu [
+ 6   assume-console [
+ 7     type [abc]
+ 8   ]
+ 9   run [
+10     1:char, 2:bool <- read-key console
+11     3:char, 4:bool <- read-key console
+12     5:char, 6:bool <- read-key console
+13     7:char, 8:bool <- read-key console
+14   ]
+15   memory-should-contain [
+16     1 <- 97  # 'a'
+17     2 <- 1
+18     3 <- 98  # 'b'
+19     4 <- 1
+20     5 <- 99  # 'c'
+21     6 <- 1
+22     7 <- 0  # eof
+23     8 <- 1
+24   ]
+25 ]
 
-- cgit 1.4.1-2-gfad0 ' href='#n7'>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