about summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--082scenario_screen.cc14
-rw-r--r--085scenario_console.cc4
-rw-r--r--089scenario_filesystem.cc4
3 files changed, 11 insertions, 11 deletions
diff --git a/082scenario_screen.cc b/082scenario_screen.cc
index 84072d86..56e3ab6b 100644
--- a/082scenario_screen.cc
+++ b/082scenario_screen.cc
@@ -11,7 +11,7 @@ recipes_taking_literal_strings.insert("screen-should-contain-in-color");
 
 :(scenarios run_mu_scenario)
 :(scenario screen_in_scenario)
-scenario foo [
+scenario screen-in-scenario [
   local-scope
   assume-screen 5/width, 3/height
   run [
@@ -29,7 +29,7 @@ scenario foo [
 
 :(scenario screen_in_scenario_unicode)
 # screen-should-contain can check unicode characters in the fake screen
-scenario foo [
+scenario screen-in-scenario-unicode [
   local-scope
   assume-screen 5/width, 3/height
   run [
@@ -48,7 +48,7 @@ scenario foo [
 # checks are inside scenario
 
 :(scenario screen_in_scenario_color)
-scenario foo [
+scenario screen-in-scenario-color [
   local-scope
   assume-screen 5/width, 3/height
   run [
@@ -85,7 +85,7 @@ scenario foo [
 :(scenario screen_in_scenario_error)
 % Scenario_testing_scenario = true;
 % Hide_errors = true;
-scenario foo [
+scenario screen-in-scenario-error [
   local-scope
   assume-screen 5/width, 3/height
   run [
@@ -105,7 +105,7 @@ scenario foo [
 % Scenario_testing_scenario = true;
 % Hide_errors = true;
 # screen-should-contain can check unicode characters in the fake screen
-scenario foo [
+scenario screen-in-scenario-color-error [
   local-scope
   assume-screen 5/width, 3/height
   run [
@@ -175,10 +175,10 @@ if (curr.name == "assume-screen") {
 
 :(scenario assume_screen_shows_up_in_errors)
 % Hide_errors = true;
-scenario foo [
+scenario assume-screen-shows-up-in-errors [
   assume-screen width, 5
 ]
-+error: scenario_foo: missing type for 'width' in 'assume-screen width, 5'
++error: scenario_assume-screen-shows-up-in-errors: missing type for 'width' in 'assume-screen width, 5'
 
 //: screen-should-contain is a regular instruction
 :(before "End Primitive Recipe Declarations")
diff --git a/085scenario_console.cc b/085scenario_console.cc
index 24ffebed..dde46134 100644
--- a/085scenario_console.cc
+++ b/085scenario_console.cc
@@ -10,7 +10,7 @@ recipes_taking_literal_strings.insert("assume-console");
 
 :(scenarios run_mu_scenario)
 :(scenario keyboard_in_scenario)
-scenario foo [
+scenario keyboard-in-scenario [
   assume-console [
     type [abc]
   ]
@@ -202,7 +202,7 @@ void initialize_special_name(reagent& r) {
 }
 
 :(scenario events_in_scenario)
-scenario foo [
+scenario events-in-scenario [
   assume-console [
     type [abc]
     left-click 0, 1
diff --git a/089scenario_filesystem.cc b/089scenario_filesystem.cc
index 078757a5..95880cce 100644
--- a/089scenario_filesystem.cc
+++ b/089scenario_filesystem.cc
@@ -6,7 +6,7 @@
 
 :(scenarios run_mu_scenario)
 :(scenario simple_filesystem)
-scenario foo [
+scenario simple-filesystem [
   local-scope
   assume-filesystem [
     # file 'a' containing two lines of data
@@ -50,7 +50,7 @@ de f
 ]
 
 :(scenario escaping_file_contents)
-scenario foo [
+scenario escaping-file-contents [
   local-scope
   assume-filesystem [
     # file 'a' containing a '|'
53 - now 'list' type can be fully generic!' href='/akkartik/mu/commit/063list.mu?h=hlt&id=4c3e1f0780da52c72be467c6bfd3b2073ce57190'>4c3e1f07 ^
87ef6a67 ^

1ead3562 ^
77d5b5d6 ^
4c3e1f07 ^



87ef6a67 ^

455fbac6 ^








87ef6a67 ^







fca48e92 ^
1ead3562 ^
fca48e92 ^
fca48e92 ^
455fbac6 ^
fca48e92 ^



afb467ea ^
1ead3562 ^
afb467ea ^
afb467ea ^
455fbac6 ^
afb467ea ^



1ead3562 ^
fca48e92 ^
fca48e92 ^


fca48e92 ^
1ead3562 ^
fca48e92 ^




455fbac6 ^
fca48e92 ^
1ead3562 ^
fca48e92 ^

455fbac6 ^
fca48e92 ^


afb467ea ^




1ead3562 ^
afb467ea ^





1ead3562 ^
afb467ea ^

455fbac6 ^
afb467ea ^
fca48e92 ^

67bc24e7 ^

455fbac6 ^
67bc24e7 ^
c9b98c21 ^
67bc24e7 ^


c9b98c21 ^
67bc24e7 ^

afb467ea ^


455fbac6 ^

afb467ea ^






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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133