about summary refs log tree commit diff stats
path: root/073scenario_screen_test.mu
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2015-11-13 10:08:57 -0800
committerKartik K. Agaram <vc@akkartik.com>2015-11-13 10:08:57 -0800
commitc603cd6cef43100aa83a62e15f96fd54c9fb987e (patch)
treed8631b1964a0200d170a996314f6e023686ff8de /073scenario_screen_test.mu
parent05d3592047a76db4cc8d77102508c21ca1b86e7b (diff)
downloadmu-c603cd6cef43100aa83a62e15f96fd54c9fb987e.tar.gz
2430 - make room for more transforms
Diffstat (limited to '073scenario_screen_test.mu')
-rw-r--r--073scenario_screen_test.mu29
1 files changed, 0 insertions, 29 deletions
diff --git a/073scenario_screen_test.mu b/073scenario_screen_test.mu
deleted file mode 100644
index 1eb2c351..00000000
--- a/073scenario_screen_test.mu
+++ /dev/null
@@ -1,29 +0,0 @@
-# To check our support for screens in scenarios, rewrite tests from print.mu
-
-scenario print-character-at-top-left-2 [
-  assume-screen 3/width, 2/height
-  run [
-    screen:address:screen <- print-character screen:address:screen, 97/a
-  ]
-  screen-should-contain [
-    .a  .
-    .   .
-  ]
-]
-
-scenario clear-line-erases-printed-characters-2 [
-  assume-screen 5/width, 3/height
-  run [
-    # print a character
-    screen:address:screen <- print-character screen:address:screen, 97/a
-    # move cursor to start of line
-    screen:address:screen <- move-cursor screen:address:screen, 0/row, 0/column
-    # clear line
-    screen:address:screen <- clear-line screen:address:screen
-  ]
-  screen-should-contain [
-    .     .
-    .     .
-    .     .
-  ]
-]