about summary refs log tree commit diff stats
path: root/070text.mu
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2016-05-24 19:23:51 -0700
committerKartik K. Agaram <vc@akkartik.com>2016-05-24 19:23:51 -0700
commitba7b4f643defaba112bdd6e098f4ff4ed5129315 (patch)
tree6598e7ed35b3d4700ba46121604751e50ecfe6fc /070text.mu
parent765c729ebd6b3b5df0d9825b77fff785509b326a (diff)
downloadmu-ba7b4f643defaba112bdd6e098f4ff4ed5129315.tar.gz
3005
Drop those tests now that we've confirmed over the last few commits that
they work. The new test introduced in the bugfix of commit 3003 takes
over their duties.
Diffstat (limited to '070text.mu')
-rw-r--r--070text.mu32
1 files changed, 0 insertions, 32 deletions
diff --git a/070text.mu b/070text.mu
index 03b44bf4..204bedd1 100644
--- a/070text.mu
+++ b/070text.mu
@@ -285,38 +285,6 @@ def buffer-to-array in:address:buffer -> result:address:array:character [
   }
 ]
 
-scenario integer-to-decimal-digit-zero [
-  run [
-    1:address:array:character/raw <- to-text 0
-    2:array:character/raw <- copy *1:address:array:character/raw
-  ]
-  memory-should-contain [
-    2:array:character <- [0]
-  ]
-]
-
-scenario integer-to-decimal-digit-positive [
-  run [
-    1:address:array:character/raw <- to-text 234
-    2:array:character/raw <- copy *1:address:array:character/raw
-  ]
-  memory-should-contain [
-    2:array:character <- [234]
-  ]
-]
-
-scenario integer-to-decimal-digit-negative [
-  run [
-    1:address:array:character/raw <- to-text -1
-    2:array:character/raw <- copy *1:address:array:character/raw
-  ]
-  memory-should-contain [
-    2 <- 2
-    3 <- 45  # '-'
-    4 <- 49  # '1'
-  ]
-]
-
 def append a:address:array:character, b:address:array:character -> result:address:array:character [
   local-scope
   load-ingredients