about summary refs log tree commit diff stats
path: root/edit/005-sandbox.mu
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2017-06-25 09:31:03 -0700
committerKartik K. Agaram <vc@akkartik.com>2017-06-25 09:31:03 -0700
commit77304fcbebcb2d83c44a3760ab1fd5fbbc91ac3a (patch)
tree12ee39643150b0bfae82e1e24fbaf965d59d711f /edit/005-sandbox.mu
parent5405a972e44259d65c374a3c9e583e026ad7cd8e (diff)
downloadmu-77304fcbebcb2d83c44a3760ab1fd5fbbc91ac3a.tar.gz
3955
Move a scenario which is after commit 3954 applicable to both editors,
not just the recipe side.
Diffstat (limited to 'edit/005-sandbox.mu')
-rw-r--r--edit/005-sandbox.mu36
1 files changed, 0 insertions, 36 deletions
diff --git a/edit/005-sandbox.mu b/edit/005-sandbox.mu
index d8058d18..fc618b3b 100644
--- a/edit/005-sandbox.mu
+++ b/edit/005-sandbox.mu
@@ -945,42 +945,6 @@ def previous-sandbox env:&:environment, in:&:sandbox -> out:&:sandbox [
   return curr
 ]
 
-scenario scrolling-down-past-bottom-on-recipe-side [
-  local-scope
-  trace-until 100/app  # trace too long
-  assume-screen 100/width, 10/height
-  # initialize sandbox side and create a sandbox
-  assume-resources [
-    [lesson/recipes.mu] <- [
-      ||  # file containing just a newline
-    ]
-  ]
-  # create a sandbox
-  env:&:environment <- new-programming-environment resources, screen, [add 2, 2]
-  render-all screen, env, render
-  assume-console [
-    press F4
-  ]
-  event-loop screen, console, env, resources
-  # hit 'down' in recipe editor
-  assume-console [
-    press page-down
-  ]
-  run [
-    event-loop screen, console, env, resources
-    cursor:char <- copy 9251/␣
-    print screen, cursor
-  ]
-  # cursor doesn't move when the end is already on-screen
-  screen-should-contain [
-    .                                                                                 run (F4)           .
-    .␣                                                 ┊                                                 .
-    .                                                  ┊─────────────────────────────────────────────────.
-    .┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┊0   edit       copy       to recipe    delete    .
-    .                                                  ┊add 2, 2                                         .
-  ]
-]
-
 scenario scrolling-through-multiple-sandboxes [
   local-scope
   trace-until 100/app  # trace too long