about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2015-02-01 00:19:24 -0800
committerKartik K. Agaram <vc@akkartik.com>2015-02-01 00:19:24 -0800
commit4c65194d13e4a57b519c7966b235e52537121acb (patch)
tree9b9c554fcf6205c1bcd1688920ec125a4948e87d
parent372839bd0ea849ac09bec924875934591fdc7c43 (diff)
downloadmu-4c65194d13e4a57b519c7966b235e52537121acb.tar.gz
692
-rw-r--r--horizon29
1 files changed, 0 insertions, 29 deletions
diff --git a/horizon b/horizon
deleted file mode 100644
index f46e56ec..00000000
--- a/horizon
+++ /dev/null
@@ -1,29 +0,0 @@
-run routine f with a keyboard channel containing #\a and a fake screen
-
-check that fake screen contains 'a' at (5, 5)
-
----
-
-; At its core, an editor is a 2D array of characters and a cursor.
-
-given [
-  editor 5 5
-]
-
-Cursor should be at (0 0)
-
-now [
-  type "abc"
-]
-
-Cursor should be at (0 3)
-"abc" should be at (0 0)
-Trace should contain [
-  typed "a"
-  typed "b"
-  typed "c"
-]
-
----
-
-Extract unit tests for helper out of all existing tests.