about summary refs log tree commit diff stats
path: root/070text.mu
diff options
context:
space:
mode:
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